예제 #1
0
        /// <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);
        }
예제 #2
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 /// <param name="data"></param>
 public GpGsaNotification(GpGsa data)
 {
     this.Body = data;
 }