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

SetPropertySourceProtocolInfoChanged() public method

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