OpenHome.Net.ControlPoint.Proxies.CpProxyUpnpOrgContentDirectory1.SyncCreateQueue C# (CSharp) Метод

SyncCreateQueue() публичный Метод

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncCreateQueue ( String aDesiredName, String aContainerID, String &aGivenName, String &aQueueID, String &aMetaData ) : void
aDesiredName String
aContainerID String
aGivenName String
aQueueID String
aMetaData String
Результат void
        public void SyncCreateQueue(String aDesiredName, String aContainerID, out String aGivenName, out String aQueueID, out String aMetaData)
        {
            SyncCreateQueueUpnpOrgContentDirectory1 sync = new SyncCreateQueueUpnpOrgContentDirectory1(this);
            BeginCreateQueue(aDesiredName, aContainerID, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aGivenName = sync.GivenName();
            aQueueID = sync.QueueID();
            aMetaData = sync.MetaData();
        }