C# 클래스 PRI.ProductivityExtensions.DecoderExtensions.Decoderable

Class that contains extension methods that extend Decoder
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
Convert ( this decoder, Byte bytes, Char chars, Int32 charIndex, Int32 charCount, System.Boolean flush, Int32 &bytesUsed, Int32 &charsUsed, System.Boolean &completed ) : void

Extends Convert so that buffer offset of 0 and call to Array.Length are not needed. decoder.Convert(bytes, chars, charIndex, charCount, flush, bytesUsed, charsUsed, completed);

GetCharCount ( this decoder, Byte bytes ) : Int32

Extends GetCharCount so that buffer offset of 0 and call to Array.Length are not needed. decoder.GetCharCount(bytes);

GetCharCount ( this decoder, Byte bytes, System.Boolean flush ) : Int32

Extends GetCharCount so that buffer offset of 0 and call to Array.Length are not needed. decoder.GetCharCount(bytes, flush);

GetChars ( this decoder, Byte bytes, Char chars, Int32 charIndex ) : Int32

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. decoder.GetChars(bytes, chars, charIndex);

GetChars ( this decoder, Byte bytes, Char chars, Int32 charIndex, System.Boolean flush ) : Int32

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. decoder.GetChars(bytes, chars, charIndex, flush);

메소드 상세

Convert() 공개 정적인 메소드

Extends Convert so that buffer offset of 0 and call to Array.Length are not needed. decoder.Convert(bytes, chars, charIndex, charCount, flush, bytesUsed, charsUsed, completed);
public static Convert ( this decoder, Byte bytes, Char chars, Int32 charIndex, Int32 charCount, System.Boolean flush, Int32 &bytesUsed, Int32 &charsUsed, System.Boolean &completed ) : void
decoder this
bytes Byte
chars Char
charIndex System.Int32
charCount System.Int32
flush System.Boolean
bytesUsed System.Int32
charsUsed System.Int32
completed System.Boolean
리턴 void

GetCharCount() 공개 정적인 메소드

Extends GetCharCount so that buffer offset of 0 and call to Array.Length are not needed. decoder.GetCharCount(bytes);
public static GetCharCount ( this decoder, Byte bytes ) : Int32
decoder this
bytes Byte
리턴 System.Int32

GetCharCount() 공개 정적인 메소드

Extends GetCharCount so that buffer offset of 0 and call to Array.Length are not needed. decoder.GetCharCount(bytes, flush);
public static GetCharCount ( this decoder, Byte bytes, System.Boolean flush ) : Int32
decoder this
bytes Byte
flush System.Boolean
리턴 System.Int32

GetChars() 공개 정적인 메소드

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. decoder.GetChars(bytes, chars, charIndex);
public static GetChars ( this decoder, Byte bytes, Char chars, Int32 charIndex ) : Int32
decoder this
bytes Byte
chars Char
charIndex System.Int32
리턴 System.Int32

GetChars() 공개 정적인 메소드

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. decoder.GetChars(bytes, chars, charIndex, flush);
public static GetChars ( this decoder, Byte bytes, Char chars, Int32 charIndex, System.Boolean flush ) : Int32
decoder this
bytes Byte
chars Char
charIndex System.Int32
flush System.Boolean
리턴 System.Int32