Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LdapModification"/> class.
 /// </summary>
 /// <param name="op">The op.</param>
 /// <param name="attrName">Name of the attribute.</param>
 /// <param name="attrValue">The attribute value.</param>
 public LdapModification(LdapModificationOp op, string attrName, string attrValue)
     : this(op, new LdapAttribute(attrName, attrValue))
 {
     // placeholder
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LdapModification" /> class.
 /// Specifies a modification to be made to an attribute.
 /// </summary>
 /// <param name="op">The op.</param>
 /// <param name="attr">The attribute to modify.</param>
 public LdapModification(LdapModificationOp op, LdapAttribute attr)
 {
     Op        = op;
     Attribute = attr;
 }