示例#1
0
		/// <remarks/>
		public void ExpandDLAsync(ExpandDLType ExpandDL1)
		{
			ExpandDLAsync(ExpandDL1, null);
		}
示例#2
0
		/// <remarks/>
		public void ExpandDLAsync(ExpandDLType ExpandDL1, object userState)
		{
			if ((ExpandDLOperationCompleted == null))
			{
				ExpandDLOperationCompleted = new SendOrPostCallback(OnExpandDLOperationCompleted);
			}
			InvokeAsync("ExpandDL", new object[]
			                        	{
			                        		ExpandDL1
			                        	}, ExpandDLOperationCompleted, userState);
		}
示例#3
0
		/// <remarks/>
		public IAsyncResult BeginExpandDL(ExpandDLType ExpandDL1, AsyncCallback callback, object asyncState)
		{
			return BeginInvoke("ExpandDL", new object[]
			                               	{
			                               		ExpandDL1
			                               	}, callback, asyncState);
		}