Novell.Directory.Ldap.LdapControl.getValue C# (CSharp) Method

getValue() private method

private getValue ( ) : sbyte[]
return sbyte[]
        public virtual sbyte[] getValue()
        {
            sbyte[] result = null;
            Asn1OctetString val = control.ControlValue;
            if (val != null)
            {
                result = val.byteValue();
            }
            return result;
        }