GetBodyForType() 개인적인 정적인 메소드

private static GetBodyForType ( int type, Asn1Encodable o ) : Asn1Encodable
type int
o Asn1Encodable
리턴 Asn1Encodable
예제 #1
0
 private PkiBody(Asn1TaggedObject tagged)
 {
     this.tagNo = tagged.TagNo;
     this.body  = PkiBody.GetBodyForType(this.tagNo, tagged.GetObject());
 }
예제 #2
0
 public PkiBody(int type, Asn1Encodable content)
 {
     this.tagNo = type;
     this.body  = PkiBody.GetBodyForType(type, content);
 }