コード例 #1
0
        /// <summary>
        /// Latitude, longitude, UTC time of position fix and status
        /// </summary>
        public virtual DsspResponsePort <DefaultUpdateResponseType> GpGllNotification()
        {
            GpGll             body = new GpGll();
            GpGllNotification op   = new GpGllNotification(body);

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