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

SetPropertyVarIntChanged() public method

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