iControl.ManagementApplicationService.Beginmodify C# (CSharp) Method

Beginmodify() public method

public Beginmodify ( string apps, string templates, ManagementApplicationServiceScalarVar scalar_vars, ManagementApplicationServiceListVar list_vars, ManagementApplicationServiceTableVar table_vars, System callback, object asyncState ) : System.IAsyncResult
apps string
templates string
scalar_vars ManagementApplicationServiceScalarVar
list_vars ManagementApplicationServiceListVar
table_vars ManagementApplicationServiceTableVar
callback System
asyncState object
return System.IAsyncResult
        public System.IAsyncResult Beginmodify(string [] apps,string [] templates,ManagementApplicationServiceScalarVar [] [] scalar_vars,ManagementApplicationServiceListVar [] [] list_vars,ManagementApplicationServiceTableVar [] [] table_vars, System.AsyncCallback callback, object asyncState)
        {
            return this.BeginInvoke("modify", new object[] {
            apps,
            templates,
            scalar_vars,
            list_vars,
            table_vars}, callback, asyncState);
        }
ManagementApplicationService