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

SetPropertyModelImageUriChanged() public method

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