Skip to content
Auto
Products

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.Exception

Inheritance: Exception → NamedPipeServerRemoteException

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.

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)
  • type string
    The full name of the exception type raised on the server.
  • message string
    The message of the exception raised on the server.
  • stackTrace string
    The stack trace of the exception raised on the server.

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; }

string

Gets the full name of the exception type raised on the server.

public string RemoteType { get; }

string