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

PropertySourceXml() public method

Query the value of the SourceXml property.
This function is threadsafe and can only be called if Subscribe() has been called and a first eventing callback received more recently than any call to Unsubscribe().
public PropertySourceXml ( ) : String
return String
        public String PropertySourceXml()
        {
            PropertyReadLock();
            String val;
            try
            {
                val = iSourceXml.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }
CpProxyAvOpenhomeOrgProduct1