/// <summary> /// GPS receiver operating mode, satellites used in the position solution, and DOP values /// </summary> public virtual DsspResponsePort <DefaultUpdateResponseType> GpGsaNotification() { GpGsa body = new GpGsa(); GpGsaNotification op = new GpGsaNotification(body); this.Post(op); return(op.ResponsePort); }
/// <summary> /// Default Constructor /// </summary> /// <param name="data"></param> public GpGsaNotification(GpGsa data) { this.Body = data; }