OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.SetPropertySourceIndexChanged C# (CSharp) Метод

SetPropertySourceIndexChanged() публичный Метод

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
Результат void
        public void SetPropertySourceIndexChanged(System.Action aSourceIndexChanged)
        {
            lock (iPropertyLock)
            {
                iSourceIndexChanged = aSourceIndexChanged;
            }
        }
CpProxyAvOpenhomeOrgProduct1