Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EdiPartyNameAsn.cs
Go to the documentation of this file.
2
4
5internal struct EdiPartyNameAsn
6{
8
10
11 internal void Encode(AsnWriter writer, Asn1Tag tag)
12 {
13 writer.PushSequence(tag);
14 if (NameAssigner.HasValue)
15 {
16 writer.PushSequence(new Asn1Tag(TagClass.ContextSpecific, 0));
18 writer.PopSequence(new Asn1Tag(TagClass.ContextSpecific, 0));
19 }
20 writer.PushSequence(new Asn1Tag(TagClass.ContextSpecific, 1));
22 writer.PopSequence(new Asn1Tag(TagClass.ContextSpecific, 1));
23 writer.PopSequence(tag);
24 }
25}
void Encode(AsnWriter writer, Asn1Tag tag)