Class AimpErrorArgs
Class AimpErrorArgs. Implements the System.EventArgs
Inheritance
System.Object
System.EventArgs
AimpErrorArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: AIMP.SDK
Assembly: AIMP.SDK.dll
Syntax
public class AimpErrorArgs : EventArgs
Constructors
AimpErrorArgs(ActionResultType, String)
Initializes a new instance of the AimpErrorArgs class.
Declaration
public AimpErrorArgs(ActionResultType aimpActionResult, string message)
Parameters
Type | Name | Description |
---|---|---|
ActionResultType | aimpActionResult | The aimp action result. |
System.String | message | The message. |
AimpErrorArgs(ActionResultType, String, String)
Initializes a new instance of the AimpErrorArgs class.
Declaration
public AimpErrorArgs(ActionResultType aimpActionResult, string message, string stackTrace)
Parameters
Type | Name | Description |
---|---|---|
ActionResultType | aimpActionResult | The aimp action result. |
System.String | message | The message. |
System.String | stackTrace | The stack trace. |
Properties
ActionResultType
Gets the type of the action result.
Declaration
public ActionResultType ActionResultType { get; }
Message
Gets the message.
Declaration
public string Message { get; }
StackTrace
Gets or sets the stack trace.
Declaration
public string StackTrace { get; set; }
See Also
System.EventArgs