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

SetPropertyManufacturerNameChanged() public method

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