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

SetPropertyManufacturerUrlChanged() public method

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