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

SetPropertyVarStrChanged() public method

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