OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.SetPropertyModelInfoChanged C# (CSharp) Method

SetPropertyModelInfoChanged() public method

Set a delegate to be run when the ModelInfo state variable changes.
Callbacks may be run in different threads but callbacks for a CpProxyAvOpenhomeOrgProduct1 instance will not overlap.
public SetPropertyModelInfoChanged ( System aModelInfoChanged ) : void
aModelInfoChanged System The delegate to run when the state variable changes
return void
        public void SetPropertyModelInfoChanged(System.Action aModelInfoChanged)
        {
            lock (iPropertyLock)
            {
                iModelInfoChanged = aModelInfoChanged;
            }
        }
CpProxyAvOpenhomeOrgProduct1