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

SetPropertyRevisionChanged() public method

Set a delegate to be run when the Revision state variable changes.
Callbacks may be run in different threads but callbacks for a CpProxyRaumfeldComConfigService1 instance will not overlap.
public SetPropertyRevisionChanged ( System aRevisionChanged ) : void
aRevisionChanged System The delegate to run when the state variable changes
return void
        public void SetPropertyRevisionChanged(System.Action aRevisionChanged)
        {
            lock (iPropertyLock)
            {
                iRevisionChanged = aRevisionChanged;
            }
        }