Пример #1
0
		public void Replace(CmdletSubroutine existingDelegate, CmdletSubroutine newDelegate)
		{
			base.Replace(existingDelegate, newDelegate);
		}
Пример #2
0
		public void InsertBefore(CmdletSubroutine referenceDelegate, CmdletSubroutine newDelegate)
		{
			base.InsertBefore(referenceDelegate, newDelegate);
		}
Пример #3
0
		public void Remove(CmdletSubroutine existingDelegate)
		{
			base.Remove(existingDelegate);
		}
Пример #4
0
		public void InsertAtEnd(CmdletSubroutine newDelegate)
		{
			base.InsertAtEnd(newDelegate);
		}
Пример #5
0
		public void InsertAtStart(CmdletSubroutine newDelegate)
		{
			base.InsertAtStart(newDelegate);
		}
 public void Replace(CmdletSubroutine existingDelegate, CmdletSubroutine newDelegate)
 {
     base.Replace(existingDelegate, newDelegate);
 }
Пример #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);
 }
Пример #10
0
 public void InsertAtStart(CmdletSubroutine newDelegate)
 {
     base.InsertAtStart(newDelegate);
 }
Пример #11
0
 public void InsertAtEnd(CmdletSubroutine newDelegate)
 {
     base.InsertAtEnd(newDelegate);
 }
Пример #12
0
 public void InsertAfter(CmdletSubroutine referenceDelegate, CmdletSubroutine newDelegate)
 {
     base.InsertAfter(referenceDelegate, newDelegate);
 }