OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.SetPropertySourceXmlChanged C# (CSharp) Method

SetPropertySourceXmlChanged() public method

Set a delegate to be run when the SourceXml state variable changes.
Callbacks may be run in different threads but callbacks for a CpProxyAvOpenhomeOrgProduct1 instance will not overlap.
public SetPropertySourceXmlChanged ( System aSourceXmlChanged ) : void
aSourceXmlChanged System The delegate to run when the state variable changes
return void
        public void SetPropertySourceXmlChanged(System.Action aSourceXmlChanged)
        {
            lock (iPropertyLock)
            {
                iSourceXmlChanged = aSourceXmlChanged;
            }
        }
CpProxyAvOpenhomeOrgProduct1