AxMSTSCLib.AxMsTscAxEventMulticaster.OnReceivedTSPublicKey C# (CSharp) Method

OnReceivedTSPublicKey() public method

public OnReceivedTSPublicKey ( string publicKey, bool &pfContinueLogon ) : void
publicKey string
pfContinueLogon bool
return void
        public virtual void OnReceivedTSPublicKey(string publicKey, out bool pfContinueLogon) {
            IMsTscAxEvents_OnReceivedTSPublicKeyEvent onreceivedtspublickeyEvent = new IMsTscAxEvents_OnReceivedTSPublicKeyEvent(publicKey);
            this.parent.RaiseOnOnReceivedTSPublicKey(this.parent, onreceivedtspublickeyEvent);
            pfContinueLogon = onreceivedtspublickeyEvent.pfContinueLogon;
        }