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

SetPropertyVarBinChanged() public method

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