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

SyncEchoAllowedRangeUint() public method

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