コード例 #1
0
ファイル: Reference.cs プロジェクト: Natsuwind/DeepInSummer
        private System.IAsyncResult OnBeginGetAttachList(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            int    topicid    = ((int)(inValues[0]));
            int    forumid    = ((int)(inValues[1]));
            string onlyauthor = ((string)(inValues[2]));
            int    posterid   = ((int)(inValues[3]));

            PostAlbum.PostAlbumService.CredentialInfo creinfo = ((PostAlbum.PostAlbumService.CredentialInfo)(inValues[4]));
            return(((PostAlbum.PostAlbumService.AlbumSoap)(this)).BeginGetAttachList(topicid, forumid, onlyauthor, posterid, creinfo, callback, asyncState));
        }
コード例 #2
0
ファイル: Reference.cs プロジェクト: Natsuwind/DeepInSummer
 public System.IAsyncResult BeginGetAttachList(int topicid, int forumid, string onlyauthor, int posterid, PostAlbum.PostAlbumService.CredentialInfo creinfo, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[5];
     _args[0] = topicid;
     _args[1] = forumid;
     _args[2] = onlyauthor;
     _args[3] = posterid;
     _args[4] = creinfo;
     System.IAsyncResult _result = base.BeginInvoke("GetAttachList", _args, callback, asyncState);
     return(_result);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: Natsuwind/DeepInSummer
 public void GetAttachListAsync(int topicid, int forumid, string onlyauthor, int posterid, PostAlbum.PostAlbumService.CredentialInfo creinfo, object userState)
 {
     if ((this.onBeginGetAttachListDelegate == null))
     {
         this.onBeginGetAttachListDelegate = new BeginOperationDelegate(this.OnBeginGetAttachList);
     }
     if ((this.onEndGetAttachListDelegate == null))
     {
         this.onEndGetAttachListDelegate = new EndOperationDelegate(this.OnEndGetAttachList);
     }
     if ((this.onGetAttachListCompletedDelegate == null))
     {
         this.onGetAttachListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetAttachListCompleted);
     }
     base.InvokeAsync(this.onBeginGetAttachListDelegate, new object[] {
         topicid,
         forumid,
         onlyauthor,
         posterid,
         creinfo
     }, this.onEndGetAttachListDelegate, this.onGetAttachListCompletedDelegate, userState);
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: Natsuwind/DeepInSummer
 public void GetAttachListAsync(int topicid, int forumid, string onlyauthor, int posterid, PostAlbum.PostAlbumService.CredentialInfo creinfo)
 {
     this.GetAttachListAsync(topicid, forumid, onlyauthor, posterid, creinfo, null);
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: Natsuwind/DeepInSummer
 System.IAsyncResult PostAlbum.PostAlbumService.AlbumSoap.BeginGetAttachList(int topicid, int forumid, string onlyauthor, int posterid, PostAlbum.PostAlbumService.CredentialInfo creinfo, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetAttachList(topicid, forumid, onlyauthor, posterid, creinfo, callback, asyncState));
 }