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

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

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncMoveInQueue ( String aObjectID, uint aNewPosition, uint &aContainerUpdateID ) : void
aObjectID String
aNewPosition uint
aContainerUpdateID uint
Результат void
        public void SyncMoveInQueue(String aObjectID, uint aNewPosition, out uint aContainerUpdateID)
        {
            SyncMoveInQueueUpnpOrgContentDirectory1 sync = new SyncMoveInQueueUpnpOrgContentDirectory1(this);
            BeginMoveInQueue(aObjectID, aNewPosition, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aContainerUpdateID = sync.ContainerUpdateID();
        }