OpenHome.Net.ControlPoint.Proxies.CpProxyOpenhomeOrgTestBasic1.SyncGetString C# (CSharp) Method

SyncGetString() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncGetString ( String &aValueStr ) : void
aValueStr String
return void
        public void SyncGetString(out String aValueStr)
        {
            SyncGetStringOpenhomeOrgTestBasic1 sync = new SyncGetStringOpenhomeOrgTestBasic1(this);
            BeginGetString(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aValueStr = sync.ValueStr();
        }