OpenHome.Net.ControlPoint.Proxies.CpProxyUpnpOrgContentDirectory1.SetPropertySystemUpdateIDChanged C# (CSharp) Метод

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

Set a delegate to be run when the SystemUpdateID state variable changes.
Callbacks may be run in different threads but callbacks for a CpProxyUpnpOrgContentDirectory1 instance will not overlap.
public SetPropertySystemUpdateIDChanged ( System aSystemUpdateIDChanged ) : void
aSystemUpdateIDChanged System The delegate to run when the state variable changes
Результат void
        public void SetPropertySystemUpdateIDChanged(System.Action aSystemUpdateIDChanged)
        {
            lock (iPropertyLock)
            {
                iSystemUpdateIDChanged = aSystemUpdateIDChanged;
            }
        }