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

SetPropertyManufacturerImageUriChanged() public method

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