OpenHome.Net.ControlPoint.Proxies.CpProxyRaumfeldComConfigService1.SyncSetPreferences C# (CSharp) Method

SyncSetPreferences() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncSetPreferences ( String aPreferences, String aLeastCommonChangedNode, uint aExpectedRevision, String aOnConflict ) : void
aPreferences String
aLeastCommonChangedNode String
aExpectedRevision uint
aOnConflict String
return void
        public void SyncSetPreferences(String aPreferences, String aLeastCommonChangedNode, uint aExpectedRevision, String aOnConflict)
        {
            SyncSetPreferencesRaumfeldComConfigService1 sync = new SyncSetPreferencesRaumfeldComConfigService1(this);
            BeginSetPreferences(aPreferences, aLeastCommonChangedNode, aExpectedRevision, aOnConflict, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
        }