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

getProperty() public method

Gets a property of the constraints object which has been assigned with {@link #setProperty(String, Object)}.
public getProperty ( System name ) : Object
name System Name of the property to be returned. /// ///
return System.Object
        public virtual System.Object getProperty(System.String name)
        {
            if (properties == null)
            {
                return null; // Requested property not available.
            }
            return properties[name];
        }