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

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

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