OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.SyncAttributes C# (CSharp) 메소드

SyncAttributes() 공개 메소드

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncAttributes ( String &aValue ) : void
aValue String
리턴 void
        public void SyncAttributes(out String aValue)
        {
            SyncAttributesAvOpenhomeOrgProduct1 sync = new SyncAttributesAvOpenhomeOrgProduct1(this);
            BeginAttributes(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aValue = sync.Value();
        }
CpProxyAvOpenhomeOrgProduct1