Represents an Ldap Referral.
 Referral ::= SEQUENCE OF LdapURL 
상속: Novell.Directory.Ldap.Asn1.Asn1SequenceOf
예제 #1
0
 /// <summary>
 ///     Constructs an RfcLdapResult from parameters
 /// </summary>
 /// <param name="resultCode">
 ///     the result code of the operation
 /// </param>
 /// <param name="matchedDN">
 ///     the matched DN returned from the server
 /// </param>
 /// <param name="errorMessage">
 ///     the diagnostic message returned from the server
 /// </param>
 /// <param name="referral">
 ///     the referral(s) returned by the server
 /// </param>
 public RfcLdapResult(Asn1Enumerated resultCode, RfcLdapDN matchedDN, RfcLdapString errorMessage,
                      RfcReferral referral) : base(4)
 {
     add(resultCode);
     add(matchedDN);
     add(errorMessage);
     if (referral != null)
     {
         add(referral);
     }
 }
예제 #2
0
 /// <summary> Constructs an RfcAddResponse from parameters.
 ///
 /// </summary>
 /// <param name="resultCode">the result code of the operation
 ///
 /// </param>
 /// <param name="matchedDN">the matched DN returned from the server
 ///
 /// </param>
 /// <param name="errorMessage">the diagnostic message returned from the server
 ///
 /// </param>
 /// <param name="referral">the referral(s) returned by the server
 /// </param>
 public RfcAddResponse(Asn1Enumerated resultCode, RfcLdapDN matchedDN, RfcLdapString errorMessage, RfcReferral referral) : base(resultCode, matchedDN, errorMessage, referral)
 {
     return;
 }
예제 #3
0
 /// <summary> Constructs an RfcCompareResponse from parameters.
 /// 
 /// </summary>
 /// <param name="resultCode">the result code of the operation
 /// 
 /// </param>
 /// <param name="matchedDN">the matched DN returned from the server
 /// 
 /// </param>
 /// <param name="errorMessage">the diagnostic message returned from the server
 /// 
 /// </param>
 /// <param name="referral">the referral(s) returned by the server
 /// </param>
 public RfcCompareResponse(Asn1Enumerated resultCode, RfcLdapDN matchedDN, RfcLdapString errorMessage, RfcReferral referral)
     : base(resultCode, matchedDN, errorMessage, referral)
 {
     return ;
 }
예제 #4
0
 /// <summary> Constructs an RfcSearchResultDone from parameters.
 ///
 /// </summary>
 /// <param name="resultCode">the result code of the operation
 ///
 /// </param>
 /// <param name="matchedDN">the matched DN returned from the server
 ///
 /// </param>
 /// <param name="errorMessage">the diagnostic message returned from the server
 ///
 /// </param>
 /// <param name="referral">the referral(s) returned by the server
 /// </param>
 public RfcSearchResultDone(Asn1Enumerated resultCode, RfcLdapDN matchedDN, RfcLdapString errorMessage, RfcReferral referral)
     : base(resultCode, matchedDN, errorMessage, referral)
 {
 }
예제 #5
0
 /// <summary> Constructs an RfcSearchResultDone from parameters.
 /// 
 /// </summary>
 /// <param name="resultCode">the result code of the operation
 /// 
 /// </param>
 /// <param name="matchedDN">the matched DN returned from the server
 /// 
 /// </param>
 /// <param name="errorMessage">the diagnostic message returned from the server
 /// 
 /// </param>
 /// <param name="referral">the referral(s) returned by the server
 /// </param>
 public RfcSearchResultDone(Asn1Enumerated resultCode, RfcLdapDN matchedDN, RfcLdapString errorMessage, RfcReferral referral)
     : base(resultCode, matchedDN, errorMessage, referral)
 {
     return ;
 }
 /// <summary>
 ///     Constructs an RfcModifyResponse from parameters.
 /// </summary>
 /// <param name="resultCode">
 ///     the result code of the operation.
 /// </param>
 /// <param name="matchedDn">
 ///     the matched DN returned from the server.
 /// </param>
 /// <param name="errorMessage">
 ///     the diagnostic message returned from the server.
 /// </param>
 /// <param name="referral">
 ///     the referral(s) returned by the server.
 /// </param>
 public RfcModifyResponse(Asn1Enumerated resultCode, RfcLdapDn matchedDn, RfcLdapString errorMessage,
                          RfcReferral referral)
     : base(resultCode, matchedDn, errorMessage, referral)
 {
 }
예제 #7
0
 /// <summary> Constructs an RfcLdapResult from parameters
 /// 
 /// </summary>
 /// <param name="resultCode">the result code of the operation
 /// 
 /// </param>
 /// <param name="matchedDN">the matched DN returned from the server
 /// 
 /// </param>
 /// <param name="errorMessage">the diagnostic message returned from the server
 /// 
 /// </param>
 /// <param name="referral">the referral(s) returned by the server
 /// </param>
 public RfcLdapResult(Asn1Enumerated resultCode, RfcLdapDN matchedDN, RfcLdapString errorMessage, RfcReferral referral)
     : base(4)
 {
     add(resultCode);
     add(matchedDN);
     add(errorMessage);
     if (referral != null)
         add(referral);
     return ;
 }