SyncGetUint() 공개 메소드

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncGetUint ( uint &aValueUint ) : void
aValueUint uint
리턴 void
예제 #1
0
 private static void ActionThread(object aArgs)
 {
     ThreadArgs args = (ThreadArgs)aArgs;
     using (CpProxyOpenhomeOrgTestBasic1 proxy = new CpProxyOpenhomeOrgTestBasic1(args.Device))
     {
         uint val;
         do
         {
             proxy.SyncGetUint(out val);
         } while (args.IncrementCount());
     }
 }