C# Class ZeroInstall.Store.Implementations.DigestMismatchException

Inheritance: System.Exception
Mostra file Open project: 0install/0install-win

Private Properties

Property Type Description
BuildMessage string
DigestMismatchException System
GetObjectData void

Public Methods

Method Description
DigestMismatchException ( ) : System
DigestMismatchException ( string message ) : System
DigestMismatchException ( string message, Exception innerException ) : System
DigestMismatchException ( string expectedDigest = null, string actualDigest = null, Manifest expectedManifest = null, Manifest actualManifest = null ) : System

Creates a new digest mismatch exception.

Private Methods

Method Description
BuildMessage ( string expectedDigest, string actualDigest ) : string
DigestMismatchException ( SerializationInfo info, StreamingContext context ) : System

Deserializes an exception.

GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Method Details

DigestMismatchException() public method

public DigestMismatchException ( ) : System
return System

DigestMismatchException() public method

public DigestMismatchException ( string message ) : System
message string
return System

DigestMismatchException() public method

public DigestMismatchException ( string message, Exception innerException ) : System
message string
innerException System.Exception
return System

DigestMismatchException() public method

Creates a new digest mismatch exception.
public DigestMismatchException ( string expectedDigest = null, string actualDigest = null, Manifest expectedManifest = null, Manifest actualManifest = null ) : System
expectedDigest string The digest value the was supposed to have.
actualDigest string The digest value that was actually calculated.
expectedManifest Manifest The that resulted in the ; may be null.
actualManifest Manifest The that resulted in the .
return System