コード例 #1
0
 public ModifyDNResponse(
     LDAPResult_resultCode resultCode,
     LDAPDN matchedDN,
     LDAPString errorMessage)
     : base(resultCode, matchedDN, errorMessage)
 {
 }
コード例 #2
0
 public LDAPResult(
     LDAPResult_resultCode resultCode,
     LDAPDN matchedDN,
     LDAPString errorMessage)
 {
     this.resultCode = resultCode;
     this.matchedDN = matchedDN;
     this.errorMessage = errorMessage;
 }
コード例 #3
0
 public LDAPResult(
     LDAPResult_resultCode resultCode,
     LDAPDN matchedDN,
     LDAPString errorMessage)
 {
     this.resultCode   = resultCode;
     this.matchedDN    = matchedDN;
     this.errorMessage = errorMessage;
 }
コード例 #4
0
 public AddResponse(
     LDAPResult_resultCode resultCode,
     LDAPDN matchedDN,
     LDAPString errorMessage) : base(resultCode, matchedDN, errorMessage)
 {
 }