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