Esempio n. 1
0
        /// <summary>
        /// The number of GPS satellites in view satellite ID numbers, elevation, azimuth, and SNR values.
        /// </summary>
        public virtual DsspResponsePort <DefaultUpdateResponseType> GpGsvNotification()
        {
            GpGsv             body = new GpGsv();
            GpGsvNotification op   = new GpGsvNotification(body);

            this.Post(op);
            return(op.ResponsePort);
        }
Esempio n. 2
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 /// <param name="data"></param>
 public GpGsvNotification(GpGsv data)
 {
     this.Body = data;
 }