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

SetPropertyProductUrlChanged() public method

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