C# Class GitSharp.Core.Exceptions.InvalidObjectIdException

Inheritance: System.ArgumentException
Afficher le fichier Open project: stschake/GitSharp

Méthodes publiques

Méthode Description
InvalidObjectIdException ( byte bytes, int offset, int length ) : System

Create exception with bytes of the invalid object id.

InvalidObjectIdException ( byte bytes, int offset, int length, Exception inner ) : System

Create exception with bytes of the invalid object id.

Méthodes protégées

Méthode Description
InvalidObjectIdException ( SerializationInfo info, StreamingContext context ) : System

Private Methods

Méthode Description
AsAscii ( byte bytes, int offset, int length ) : string

Method Details

InvalidObjectIdException() protected méthode

protected InvalidObjectIdException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
Résultat System

InvalidObjectIdException() public méthode

Create exception with bytes of the invalid object id.
public InvalidObjectIdException ( byte bytes, int offset, int length ) : System
bytes byte containing the invalid id.
offset int offset in the byte array where the error occurred.
length int length of the sequence of invalid bytes.
Résultat System

InvalidObjectIdException() public méthode

Create exception with bytes of the invalid object id.
public InvalidObjectIdException ( byte bytes, int offset, int length, Exception inner ) : System
bytes byte containing the invalid id.
offset int offset in the byte array where the error occurred.
length int length of the sequence of invalid bytes.
inner System.Exception Inner Exception.
Résultat System