BACnet.Ashrae.AuthenticateRequest.AuthenticateRequest C# (CSharp) Method

AuthenticateRequest() public method

public AuthenticateRequest ( uint pseudoRandomNumber, Option expectedInvokeID, Option operatorName, Option operatorPassword, Option startEncipheredSession ) : System
pseudoRandomNumber uint
expectedInvokeID Option
operatorName Option
operatorPassword Option
startEncipheredSession Option
return System
        public AuthenticateRequest(uint pseudoRandomNumber, Option<byte> expectedInvokeID, Option<string> operatorName, Option<string> operatorPassword, Option<bool> startEncipheredSession)
        {
            this.PseudoRandomNumber = pseudoRandomNumber;
            this.ExpectedInvokeID = expectedInvokeID;
            this.OperatorName = operatorName;
            this.OperatorPassword = operatorPassword;
            this.StartEncipheredSession = startEncipheredSession;
        }