OpenHome.Net.ControlPoint.Proxies.CpProxyUpnpOrgConnectionManager1.SetPropertyCurrentConnectionIDsChanged C# (CSharp) Method

SetPropertyCurrentConnectionIDsChanged() public method

Set a delegate to be run when the CurrentConnectionIDs state variable changes.
Callbacks may be run in different threads but callbacks for a CpProxyUpnpOrgConnectionManager1 instance will not overlap.
public SetPropertyCurrentConnectionIDsChanged ( System aCurrentConnectionIDsChanged ) : void
aCurrentConnectionIDsChanged System The delegate to run when the state variable changes
return void
        public void SetPropertyCurrentConnectionIDsChanged(System.Action aCurrentConnectionIDsChanged)
        {
            lock (iPropertyLock)
            {
                iCurrentConnectionIDsChanged = aCurrentConnectionIDsChanged;
            }
        }