AsmResolver.Net.Signatures.OptionalModifierSignature.GetPhysicalLength C# (CSharp) Méthode

GetPhysicalLength() public méthode

public GetPhysicalLength ( ) : uint
Résultat uint
        public override uint GetPhysicalLength()
        {
            var encoder = ModifierType.Header.GetStream<TableStream>()
                .GetIndexEncoder(CodedIndex.TypeDefOrRef);
            return sizeof (byte) +
                   encoder.EncodeToken(ModifierType.MetadataToken).GetCompressedSize() +
                   BaseType.GetPhysicalLength();
        }