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

SetPropertyVarUintChanged() public method

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