AsyncPostBackErrorEventArgs Class

Definition

Provides data for the AsyncPostBackError event.

public ref class AsyncPostBackErrorEventArgs : EventArgs
public class AsyncPostBackErrorEventArgs : EventArgs
type AsyncPostBackErrorEventArgs = class
    inherit EventArgs
Public Class AsyncPostBackErrorEventArgs
Inherits EventArgs
Inheritance
AsyncPostBackErrorEventArgs

Remarks

The AsyncPostBackErrorEventArgs object is used to pass event data when the AsyncPostBackError is raised during partial-page rendering. The event data is information about server exceptions. Use the Exception property to access the event data.

Constructors

AsyncPostBackErrorEventArgs(Exception)

Initializes a new instance of the AsyncPostBackErrorEventArgs class.

Properties

Exception

Gets the Exception raised during partial-page rendering.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also