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

SetPropertySourceIndexChanged() public method

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