示例#1
0
 /// <remarks/>
 public IAsyncResult BeginGetUsersByProduct(enumObjectType Product, bool Active, AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("GetUsersByProduct", new object[] {
         Product,
         Active
     }, callback, asyncState));
 }
示例#2
0
        public stUser[] GetUsersByProduct(enumObjectType Product, bool Active)
        {
            object[] results = this.Invoke("GetUsersByProduct", new object[] {
                Product,
                Active
            });

            return((stUser[])(results[0]));
        }