NSErrorEventArgs Class

Definition

public class NSErrorEventArgs : EventArgs
type NSErrorEventArgs = class
    inherit EventArgs
Inheritance
NSErrorEventArgs

Remarks

Use this class when you want to create event handlers that get an NSError.

public class Sample {
    public event EventHandler<NSErrorEventArgs> Failed;
}

Constructors

NSErrorEventArgs(NSError)

Initializes a new instance of the NSErrorEventArgs class.

Properties

Error

Retrieves the NSError value.

Applies to