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

SetPropertyProductInfoChanged() public method

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