/// <remarks/> public void SetColaboratorAsync(ClientLite client) { this.SetColaboratorAsync(client, null); }
/// <remarks/> public void SetColaboratorAsync(ClientLite client, object userState) { if ((this.SetColaboratorOperationCompleted == null)) { this.SetColaboratorOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetColaboratorOperationCompleted); } this.InvokeAsync("SetColaborator", new object[] { client}, this.SetColaboratorOperationCompleted, userState); }
public string SetColaborator(ClientLite client) { object[] results = this.Invoke("SetColaborator", new object[] { client}); return ((string)(results[0])); }