コード例 #1
0
 public SendNotificationRequest(string RequestId, string ElementId, PIS.Ground.Mission.Notification.NotificationIdEnum NotificationId, string Parameter)
 {
     this.RequestId      = RequestId;
     this.ElementId      = ElementId;
     this.NotificationId = NotificationId;
     this.Parameter      = Parameter;
 }
コード例 #2
0
 public void SendNotification(string RequestId, string ElementId, PIS.Ground.Mission.Notification.NotificationIdEnum NotificationId, string Parameter)
 {
     PIS.Ground.Mission.Notification.SendNotificationRequest inValue = new PIS.Ground.Mission.Notification.SendNotificationRequest();
     inValue.RequestId      = RequestId;
     inValue.ElementId      = ElementId;
     inValue.NotificationId = NotificationId;
     inValue.Parameter      = Parameter;
     PIS.Ground.Mission.Notification.SendNotificationResponse retVal = ((PIS.Ground.Mission.Notification.INotificationGroundService)(this)).SendNotification(inValue);
 }