/// <remarks/> public void RepositoryItemPublishAsync(string Username, string Password, int CustomerID, RepositoryItem RepositoryItem, bool Overwrite, object userState) { if ((this.RepositoryItemPublishOperationCompleted == null)) { this.RepositoryItemPublishOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRepositoryItemPublishOperationCompleted); } this.InvokeAsync("RepositoryItemPublish", new object[] { Username, Password, CustomerID, RepositoryItem, Overwrite}, this.RepositoryItemPublishOperationCompleted, userState); }
public System.DateTime RepositoryItemPublish(string Username, string Password, int CustomerID, RepositoryItem RepositoryItem, bool Overwrite) { object[] results = this.Invoke("RepositoryItemPublish", new object[] { Username, Password, CustomerID, RepositoryItem, Overwrite}); return ((System.DateTime)(results[0])); }
/// <remarks/> public void RepositoryItemPublishAsync(string Username, string Password, int CustomerID, RepositoryItem RepositoryItem, bool Overwrite) { this.RepositoryItemPublishAsync(Username, Password, CustomerID, RepositoryItem, Overwrite, null); }
/// <remarks/> public System.IAsyncResult BeginRepositoryItemPublish(string Username, string Password, int CustomerID, RepositoryItem RepositoryItem, bool Overwrite, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("RepositoryItemPublish", new object[] { Username, Password, CustomerID, RepositoryItem, Overwrite}, callback, asyncState); }