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

SetPropertyStandbyChanged() public method

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