GSF.Security.SecureStreamClientIntegratedSecurity.InternalTryAuthenticate C# (CSharp) Method

InternalTryAuthenticate() protected method

Authenticates with the remote server.
protected InternalTryAuthenticate ( Stream stream, byte certSignatures ) : bool
stream System.IO.Stream the stream to authentication on
certSignatures byte
return bool
        protected override bool InternalTryAuthenticate(Stream stream, byte[] certSignatures)
        {
            stream.WriteByte((byte)AuthenticationMode.Integrated);
            if (m_client.TryAuthenticateAsClient(stream, certSignatures))
            {
                return true;
            }
            return false;
        }
    }