OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgSender1.SetPropertyAttributesChanged C# (CSharp) Метод

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

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