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

SetPropertySourceCountChanged() public method

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