C# Class Microsoft.Research.DataOnboarding.Core.BaseException

Inheritance: System.Exception
显示文件 Open project: CDLUC3/dataup2

Public Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Adds exception properties to the serialization object.

Protected Methods

Method Description
BaseException ( ) : System

Initializes a new instance of the BaseException class.

BaseException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the BaseException class.

BaseException ( string message ) : System

Initializes a new instance of the BaseException class.

BaseException ( string message, Exception inner ) : System

Initializes a new instance of the BaseException class.

BaseException ( string message, ICollection errors ) : System

Initializes a new instance of the BaseException class.

Method Details

BaseException() protected method

Initializes a new instance of the BaseException class.
protected BaseException ( ) : System
return System

BaseException() protected method

Initializes a new instance of the BaseException class.
protected BaseException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo Serialized object data
context System.Runtime.Serialization.StreamingContext Source and destination of a given serialized stream
return System

BaseException() protected method

Initializes a new instance of the BaseException class.
protected BaseException ( string message ) : System
message string Error message
return System

BaseException() protected method

Initializes a new instance of the BaseException class.
protected BaseException ( string message, Exception inner ) : System
message string Error message
inner System.Exception Nested exception
return System

BaseException() protected method

Initializes a new instance of the BaseException class.
protected BaseException ( string message, ICollection errors ) : System
message string Error message
errors ICollection Collection of errors
return System

GetObjectData() public method

Adds exception properties to the serialization object.
public GetObjectData ( SerializationInfo info, StreamingContext context ) : void
info System.Runtime.Serialization.SerializationInfo Serialized object data
context System.Runtime.Serialization.StreamingContext Source and destination of a given serialized stream
return void