Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TryReadUInt64()

bool System.Formats.Asn1.AsnReader.TryReadUInt64 ( out ulong value,
Asn1Tag? expectedTag = null )
inline

Definition at line 182 of file AsnReader.cs.

183 {
184 int bytesConsumed;
185 bool result = AsnDecoder.TryReadUInt64(_data.Span, RuleSet, out value, out bytesConsumed, expectedTag);
186 _data = _data.Slice(bytesConsumed);
187 return result;
188 }
ReadOnlyMemory< byte > _data
Definition AsnReader.cs:8
AsnEncodingRules RuleSet
Definition AsnReader.cs:12
unsafe ReadOnlySpan< T > Span
ReadOnlyMemory< T > Slice(int start)

References System.Formats.Asn1.AsnReader._data, System.Formats.Asn1.AsnReader.RuleSet, System.ReadOnlyMemory< T >.Slice(), System.ReadOnlyMemory< T >.Span, System.Formats.Asn1.AsnDecoder.TryReadUInt64(), and System.value.