Loupe - Log - Monitor - Resolve
Gibraltar.Serialization Namespace / GibraltarSerializationException Class / GibraltarSerializationException Constructor / GibraltarSerializationException Constructor(String,Exception,Boolean)
The error message string.
The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
Indicates if the entire stream is now considered corrupt and no further packets can be retrieved.

In This Topic
    GibraltarSerializationException Constructor(String,Exception,Boolean)
    In This Topic
    Initializes a new instance of the GibraltarSerializationException class with a specified error message and a reference to the inner exception that is the cause of this exception.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal message As String, _
       ByVal innerException As Exception, _
       ByVal streamFailed As Boolean _
    )
    public GibraltarSerializationException( 
       string message,
       Exception innerException,
       bool streamFailed
    )

    Parameters

    message
    The error message string.
    innerException
    The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
    streamFailed
    Indicates if the entire stream is now considered corrupt and no further packets can be retrieved.
    Remarks
    An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the innerException parameter. For more information, see the base constructor in Exception.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also