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

SetPropertyManufacturerInfoChanged() public method

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