NamedPipeServerRemoteException
Namespace: TagBites.Pipes
Assembly: TagBites.Pipes.dll
Product: TagBites.Pipes v. 1.2.0
The exception that is thrown when the request handler on the server side fails.
public class NamedPipeServerRemoteException : System.ExceptionInheritance: Exception → NamedPipeServerRemoteException
Remarks
Section titled “Remarks”The original exception cannot cross the pipe, so its type name, message and stack trace are carried as text. The server decides whether to send the stack trace, see NamedPipeServer.IncludeExceptionStackTrace.
Constructors
Section titled “Constructors”NamedPipeServerRemoteException(string, string, string)
Section titled “NamedPipeServerRemoteException(string, string, string)”Initializes a new instance of the NamedPipeServerRemoteException class.
public NamedPipeServerRemoteException(string type, string message, string stackTrace)Parameters
Section titled “Parameters”typestring
The full name of the exception type raised on the server.messagestring
The message of the exception raised on the server.stackTracestring
The stack trace of the exception raised on the server.
Properties
Section titled “Properties”RemoteStackTrace
Section titled “RemoteStackTrace”Gets the stack trace of the exception raised on the server, or an empty string when the server does not send it.
public string RemoteStackTrace { get; }Property Value
Section titled “Property Value”RemoteType
Section titled “RemoteType”Gets the full name of the exception type raised on the server.
public string RemoteType { get; }