OpenHome.Net.ControlPoint.Proxies.SyncGetPublicKeyRaumfeldComConfigService1.Key C# (CSharp) Méthode

Key() public méthode

public Key ( ) : String
Résultat String
        public String Key()
        {
            return iKey;
        }

Usage Example

Exemple #1
0
        /// <summary>
        /// Invoke the action synchronously
        /// </summary>
        /// <remarks>Blocks until the action has been processed
        /// on the device and sets any output arguments</remarks>
        /// <param name="aKey"></param>
        public void SyncGetPublicKey(out String aKey)
        {
            SyncGetPublicKeyRaumfeldComConfigService1 sync = new SyncGetPublicKeyRaumfeldComConfigService1(this);

            BeginGetPublicKey(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aKey = sync.Key();
        }
All Usage Examples Of OpenHome.Net.ControlPoint.Proxies.SyncGetPublicKeyRaumfeldComConfigService1::Key