Exemplo n.º 1
0
		/// <remarks/>
		public void PostChangeAsync(PostRequest postRequest, object userState)
		{
			if ((this.PostChangeOperationCompleted == null))
			{
				this.PostChangeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnPostChangeOperationCompleted);
			}
			this.InvokeAsync("PostChange", new object[] {
						postRequest}, this.PostChangeOperationCompleted, userState);
		}
Exemplo n.º 2
0
		/// <remarks/>
		public System.IAsyncResult BeginPostChange(PostRequest postRequest, System.AsyncCallback callback, object asyncState)
		{
			return this.BeginInvoke("PostChange", new object[] {
						postRequest}, callback, asyncState);
		}
Exemplo n.º 3
0
		/// <remarks/>
		public void PostChangeAsync(PostRequest postRequest)
		{
			this.PostChangeAsync(postRequest, null);
		}
Exemplo n.º 4
0
		public void PostChange(PostRequest postRequest)
		{
			this.Invoke("PostChange", new object[] {
						postRequest});
		}