OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgSender1.SetPropertyPresentationUrlChanged C# (CSharp) Méthode

SetPropertyPresentationUrlChanged() public méthode

Set a delegate to be run when the PresentationUrl state variable changes.
Callbacks may be run in different threads but callbacks for a CpProxyAvOpenhomeOrgSender1 instance will not overlap.
public SetPropertyPresentationUrlChanged ( System aPresentationUrlChanged ) : void
aPresentationUrlChanged System The delegate to run when the state variable changes
Résultat void
        public void SetPropertyPresentationUrlChanged(System.Action aPresentationUrlChanged)
        {
            lock (iPropertyLock)
            {
                iPresentationUrlChanged = aPresentationUrlChanged;
            }
        }