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

SyncSetString() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncSetString ( String aValueStr ) : void
aValueStr String
return void
        public void SyncSetString(String aValueStr)
        {
            SyncSetStringOpenhomeOrgTestBasic1 sync = new SyncSetStringOpenhomeOrgTestBasic1(this);
            BeginSetString(aValueStr, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
        }