AxMSTSCLib.AxMsRdpClient2EventMulticaster.OnReceivedTSPublicKey C# (CSharp) 메소드

OnReceivedTSPublicKey() 공개 메소드

public OnReceivedTSPublicKey ( string publicKey, bool &pfContinueLogon ) : void
publicKey string
pfContinueLogon bool
리턴 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;
        }