コード例 #1
0
        /// <summary>
        /// Time, date, position, course and speed data
        /// </summary>
        public virtual DsspResponsePort <DefaultUpdateResponseType> GpRmcNotification()
        {
            GpRmc             body = new GpRmc();
            GpRmcNotification op   = new GpRmcNotification(body);

            this.Post(op);
            return(op.ResponsePort);
        }
コード例 #2
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 /// <param name="data"></param>
 public GpRmcNotification(GpRmc data)
 {
     this.Body = data;
 }