OpenHome.Net.ControlPoint.Proxies.CpProxyUpnpOrgConnectionManager1.SetPropertySourceProtocolInfoChanged C# (CSharp) 메소드

SetPropertySourceProtocolInfoChanged() 공개 메소드

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
리턴 void
        public void SetPropertySourceProtocolInfoChanged(System.Action aSourceProtocolInfoChanged)
        {
            lock (iPropertyLock)
            {
                iSourceProtocolInfoChanged = aSourceProtocolInfoChanged;
            }
        }