public Features GetFeatures() { SignatureSubpacket subpacket = GetSubpacket(SignatureSubpacketTag.Features); if (subpacket == null) { return(null); } return(new Features(subpacket.IsCritical(), subpacket.IsLongLength(), subpacket.GetData())); }
public Features GetFeatures() { SignatureSubpacket p = this.GetSubpacket(SignatureSubpacketTag.Features); if (p == null) { return(null); } return(new Features(p.IsCritical(), p.IsLongLength(), p.GetData())); }