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

SetPropertyProductNameChanged() public method

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