/// <summary> /// Post Gp Rmc Notification and return the response port. /// </summary> public virtual DsspResponsePort <DefaultUpdateResponseType> GpRmcNotification(GpRmc body) { GpRmcNotification op = new GpRmcNotification(); op.Body = body ?? new GpRmc(); this.Post(op); return(op.ResponsePort); }
/// <summary> /// Post(GpRmcNotification) /// </summary> /// <param name="item"></param> /// <returns></returns> public void Post(GpRmcNotification item) { base.PostUnknownType(item); }