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

SyncEchoString() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncEchoString ( String aValue, String &aResult ) : void
aValue String
aResult String
return void
        public void SyncEchoString(String aValue, out String aResult)
        {
            SyncEchoStringOpenhomeOrgTestBasic1 sync = new SyncEchoStringOpenhomeOrgTestBasic1(this);
            BeginEchoString(aValue, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aResult = sync.Result();
        }