OpenHome.Net.ControlPoint.Proxies.CpProxyOpenhomeOrgTestBasic1.SetPropertyVarBoolChanged C# (CSharp) Method

SetPropertyVarBoolChanged() public method

Set a delegate to be run when the VarBool state variable changes.
Callbacks may be run in different threads but callbacks for a CpProxyOpenhomeOrgTestBasic1 instance will not overlap.
public SetPropertyVarBoolChanged ( System aVarBoolChanged ) : void
aVarBoolChanged System The delegate to run when the state variable changes
return void
        public void SetPropertyVarBoolChanged(System.Action aVarBoolChanged)
        {
            lock (iPropertyLock)
            {
                iVarBoolChanged = aVarBoolChanged;
            }
        }