コード例 #1
0
        public virtual EloixClient.IndexServer.FindResult findFirstNotification(EloixClient.IndexServer.feed.FindNotificationInfo findInfo, int max)
        {
            BSyncResult <EloixClient.IndexServer.FindResult> asyncResult = new BSyncResult <EloixClient.IndexServer.FindResult>();

            findFirstNotification(findInfo, max, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.FindResult>(asyncResult));
            return(asyncResult.GetResult());
        }
コード例 #2
0
ファイル: MyELOInfo.cs プロジェクト: ThomasEcherer/elo
 public MyELOInfo(EloixClient.IndexServer.feed.FindNotificationInfo @notificationInfo, EloixClient.IndexServer.FindWorkflowInfo @workflowInfo, EloixClient.IndexServer.FindTasksInfo @taskInfo, String @date, int @max)
 {
     this.notificationInfoValue = @notificationInfo;
     this.workflowInfoValue     = @workflowInfo;
     this.taskInfoValue         = @taskInfo;
     this.dateValue             = @date;
     this.maxValue = @max;
 }
コード例 #3
0
        public virtual void findFirstNotification(EloixClient.IndexServer.feed.FindNotificationInfo findInfo, int max, BAsyncResult <EloixClient.IndexServer.FindResult> asyncResult)
        {
            BRequest_FeedService_findFirstNotification req = new BRequest_FeedService_findFirstNotification();

            req.findInfoValue = findInfo;
            req.maxValue      = max;
            transport.sendMethod(req, asyncResult);
        }