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

SetPropertyProductRoomChanged() public method

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