Method | Description | |
---|---|---|
WriteNamedBitList ( BitArray value, Asn1Tag? tag = null ) : void |
Write a bit array value as a NamedBitList with a specified tag. The index of the bit array corresponds to the bit number in the encoded format, which is different than the value produced by BitArray.CopyTo with a byte array. For example, the bit array |
|
WriteNamedBitList ( Enum value, Asn1Tag? tag = null ) : void |
Write a [FlagsAttribute] enum value as a NamedBitList with a specified tag.
|
|
WriteNamedBitList ( value, Asn1Tag? tag = null ) : void |
Write a [FlagsAttribute] enum value as a NamedBitList with a specified tag.
|
Method | Description | |
---|---|---|
WriteBitArray ( BitArray value, Asn1Tag? tag ) : void | ||
WriteNamedBitList ( Asn1Tag? tag, Type tEnum, Enum value ) : void | ||
WriteNamedBitList ( Asn1Tag? tag, ulong integralValue ) : void |
public WriteNamedBitList ( BitArray value, Asn1Tag? tag = null ) : void | ||
value | BitArray | The bits to write |
tag | Asn1Tag? | The tag to write, or |
return | void |
public WriteNamedBitList ( Enum value, Asn1Tag? tag = null ) : void | ||
value | Enum | The boxed enumeration value to write |
tag | Asn1Tag? | The tag to write, or |
return | void |
public WriteNamedBitList ( value, Asn1Tag? tag = null ) : void | ||
value | The enumeration value to write | |
tag | Asn1Tag? | The tag to write, or |
return | void |