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

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

Retrieve the output arguments from an asynchronously invoked action.
This may only be called from the callback set in the above Begin function.
public EndShuffle ( IntPtr aAsyncHandle, String &aPlaylistID, String &aPlaylistMetadata ) : void
aAsyncHandle System.IntPtr Argument passed to the delegate set in the above Begin function
aPlaylistID String
aPlaylistMetadata String
Результат void
        public void EndShuffle(IntPtr aAsyncHandle, out String aPlaylistID, out String aPlaylistMetadata)
        {
            uint code;
            string desc;
            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;
            aPlaylistID = Invocation.OutputString(aAsyncHandle, index++);
            aPlaylistMetadata = Invocation.OutputString(aAsyncHandle, index++);
        }