Skip to content

Commit 3e302f8

Browse files
authored
Merge pull request PowerShell#51 from JamesWTruher/UnsubscribedEventDelegate
Fix parameter type for event arguments
2 parents aea7530 + 58bc984 commit 3e302f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/5/System.Management.Automation-lib.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5524,7 +5524,7 @@ internal PSEventUnsubscribedEventArgs() { }
55245524
public System.Management.Automation.PSEventSubscriber EventSubscriber { get { return default(System.Management.Automation.PSEventSubscriber); } internal set { } }
55255525
}
55265526

5527-
public delegate void PSEventUnsubscribedEventHandler(object sender, System.Management.Automation.PSEventArgs e);
5527+
public delegate void PSEventUnsubscribedEventHandler(object sender, System.Management.Automation.PSEventUnsubscribedEventArgs e);
55285528

55295529
[System.SerializableAttribute]
55305530
public class PSInvalidCastException : System.InvalidCastException, System.Management.Automation.IContainsErrorRecord {

0 commit comments

Comments
 (0)