EncodeLength() public static method

public static EncodeLength ( IBerOutput output, int value ) : int
output IBerOutput
value int
return int
Example #1
0
 static void EncodeHeader(IBerOutput output, BerTag tag, int length)
 {
     BerEncoding.EncodeTag(output, tag);
     BerEncoding.EncodeLength(output, length);
 }