/// <remarks/> public System.IAsyncResult BeginGetItemParameters(string ItemPath, string HistoryID, bool ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetItemParameters", new object[] { ItemPath, HistoryID, ForRendering, Values, Credentials}, callback, asyncState); }
/// <remarks/> public void GetItemParametersAsync(string ItemPath, string HistoryID, bool ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials) { this.GetItemParametersAsync(ItemPath, HistoryID, ForRendering, Values, Credentials, null); }
/// <remarks/> public void GetItemParametersAsync(string ItemPath, string HistoryID, bool ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials, object userState) { if ((this.GetItemParametersOperationCompleted == null)) { this.GetItemParametersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetItemParametersOperationCompleted); } this.InvokeAsync("GetItemParameters", new object[] { ItemPath, HistoryID, ForRendering, Values, Credentials}, this.GetItemParametersOperationCompleted, userState); }
public ItemParameter[] GetItemParameters(string ItemPath, string HistoryID, bool ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials) { object[] results = this.Invoke("GetItemParameters", new object[] { ItemPath, HistoryID, ForRendering, Values, Credentials}); return ((ItemParameter[])(results[0])); }