Esempio n. 1
0
		public void Replace(CmdletSubroutine existingDelegate, CmdletSubroutine newDelegate)
		{
			base.Replace(existingDelegate, newDelegate);
		}
Esempio n. 2
0
		public void InsertBefore(CmdletSubroutine referenceDelegate, CmdletSubroutine newDelegate)
		{
			base.InsertBefore(referenceDelegate, newDelegate);
		}
Esempio n. 3
0
		public void Remove(CmdletSubroutine existingDelegate)
		{
			base.Remove(existingDelegate);
		}
Esempio n. 4
0
		public void InsertAtEnd(CmdletSubroutine newDelegate)
		{
			base.InsertAtEnd(newDelegate);
		}
Esempio n. 5
0
		public void InsertAtStart(CmdletSubroutine newDelegate)
		{
			base.InsertAtStart(newDelegate);
		}
 public void Replace(CmdletSubroutine existingDelegate, CmdletSubroutine newDelegate)
 {
     base.Replace(existingDelegate, newDelegate);
 }
Esempio n. 7
0
		public void InsertAfter(CmdletSubroutine referenceDelegate, CmdletSubroutine newDelegate)
		{
			base.InsertAfter(referenceDelegate, newDelegate);
		}
 public void Remove(CmdletSubroutine existingDelegate)
 {
     base.Remove(existingDelegate);
 }
 public void InsertBefore(CmdletSubroutine referenceDelegate, CmdletSubroutine newDelegate)
 {
     base.InsertBefore(referenceDelegate, newDelegate);
 }
 public void InsertAtStart(CmdletSubroutine newDelegate)
 {
     base.InsertAtStart(newDelegate);
 }
 public void InsertAtEnd(CmdletSubroutine newDelegate)
 {
     base.InsertAtEnd(newDelegate);
 }
 public void InsertAfter(CmdletSubroutine referenceDelegate, CmdletSubroutine newDelegate)
 {
     base.InsertAfter(referenceDelegate, newDelegate);
 }