Novell.Directory.Ldap.LdapConstraints.setProperty C# (CSharp) Method

setProperty() public method

Sets a property of the constraints object. No property names have been defined at this time, but the mechanism is in place in order to support revisional as well as dynamic and proprietary extensions to operation modifiers.
public setProperty ( System name, System value_Renamed ) : void
name System Name of the property to set. /// ///
value_Renamed System
return void
        public virtual void setProperty(System.String name, System.Object value_Renamed)
        {
            if (properties == null)
            {
                properties = new System.Collections.Hashtable();
            }
            SupportClass.PutElement(properties, name, value_Renamed);
            return ;
        }