public KerberosAsRequest(long pvno, KDC_REQ_BODY kdcReqBody, Asn1SequenceOf <PA_DATA> paDatas, TransportType transportType)
 {
     this.Request       = new AS_REQ(new Asn1Integer(pvno), new Asn1Integer((long)MsgType.KRB_AS_REQ), paDatas, kdcReqBody);
     this.transportType = transportType;
 }
 /// <summary>
 /// Create an instance.
 /// </summary>
 /// <param name="clientContext">The context of the client.</param>
 public KerberosAsRequest()
 {
     this.Request = new AS_REQ();
 }