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

SetPropertyProductImageUriChanged() public method

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