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

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

Invoke the action asynchronously
Returns immediately and will run the client-specified callback when the action later completes. Any output arguments can then be retrieved by calling EndResetDatabase().
public BeginResetDatabase ( String aScope, CallbackAsyncComplete aCallback ) : void
aScope String
aCallback CallbackAsyncComplete Delegate to run when the action completes. /// This is guaranteed to be run but may indicate an error
Результат void
        public void BeginResetDatabase(String aScope, CallbackAsyncComplete aCallback)
        {
            Invocation invocation = iService.Invocation(iActionResetDatabase, aCallback);
            int inIndex = 0;
            invocation.AddInput(new ArgumentString((ParameterString)iActionResetDatabase.InputParameter(inIndex++), aScope));
            iService.InvokeAction(invocation);
        }