コード例 #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);
		}
コード例 #6
0
 public void Replace(CmdletSubroutine existingDelegate, CmdletSubroutine newDelegate)
 {
     base.Replace(existingDelegate, newDelegate);
 }
コード例 #7
0
		public void InsertAfter(CmdletSubroutine referenceDelegate, CmdletSubroutine newDelegate)
		{
			base.InsertAfter(referenceDelegate, newDelegate);
		}
コード例 #8
0
 public void Remove(CmdletSubroutine existingDelegate)
 {
     base.Remove(existingDelegate);
 }
コード例 #9
0
 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);
 }