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

getValue() private method

private getValue ( ) : sbyte[]
return sbyte[]
        public sbyte[] getValue()
        {
            Asn1OctetString tempString =
                ((RfcIntermediateResponse)message.Response).getResponse();
            if (tempString == null)
            return null;
            else
            return(tempString.byteValue());
        }