Revision() public method

public Revision ( ) : uint
return uint
Example #1
0
        /// <summary>
        /// Invoke the action synchronously
        /// </summary>
        /// <remarks>Blocks until the action has been processed
        /// on the device and sets any output arguments</remarks>
        /// <param name="aRevision"></param>
        public void SyncGetRevision(out uint aRevision)
        {
            SyncGetRevisionRaumfeldComConfigService1 sync = new SyncGetRevisionRaumfeldComConfigService1(this);

            BeginGetRevision(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aRevision = sync.Revision();
        }
 /// <summary>
 /// Invoke the action synchronously
 /// </summary>
 /// <remarks>Blocks until the action has been processed
 /// on the device and sets any output arguments</remarks>
 /// <param name="aRevision"></param>
 public void SyncGetRevision(out uint aRevision)
 {
     SyncGetRevisionRaumfeldComConfigService1 sync = new SyncGetRevisionRaumfeldComConfigService1(this);
     BeginGetRevision(sync.AsyncComplete());
     sync.Wait();
     sync.ReportError();
     aRevision = sync.Revision();
 }