Skip to the content.

PipeAndFilter API:PipeAndFilterException

Build License NuGet Downloads

Back to List Api

PipeAndFilterException

Namespace: PipeFilterCore

Represents a exception for PipeAndFilter.

public class PipeAndFilterException : System.Exception, System.Runtime.Serialization.ISerializable

Inheritance ObjectExceptionPipeAndFilterException
Implements ISerializable

Fields

StatusInit

The default status for initialize.

public static PipeStatus StatusInit;

Properties

Data

public IDictionary Data { get; }

Property Value

IDictionary

public string HelpLink { get; set; }

Property Value

String

HResult

public int HResult { get; set; }

Property Value

Int32

InnerException

public Exception InnerException { get; }

Property Value

Exception

Message

public string Message { get; }

Property Value

String

Source

public string Source { get; set; }

Property Value

String

StackTrace

public string StackTrace { get; }

Property Value

String

Status

The status of step (pipe, condition or task).

public Nullable<PipeStatus> Status { get; }

Property Value

Nullable<PipeStatus>

TargetSite

public MethodBase TargetSite { get; }

Property Value

MethodBase

Constructors

PipeAndFilterException(PipeStatus, String)

Create PipeAndFilter-Exception.

public PipeAndFilterException(PipeStatus status, string message)

Parameters

status PipeStatus
The status of step (pipe, condition or task).

message String
The message that describes the error.

PipeAndFilterException(PipeStatus, String, Exception)

Create PipeAndFilter-Exception with innerException.

public PipeAndFilterException(PipeStatus status, string message, Exception innerException)

Parameters

status PipeStatus
The status of step (pipe, condition or task).

message String
The message that describes the error.

innerException Exception
The exception that is the cause of the current exception, or a null reference.

Methods

GetObjectData(SerializationInfo, StreamingContext)

public void GetObjectData(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

context StreamingContext


Back to List Api