OpenHome.Net.ControlPoint.Proxies.CpProxyOpenhomeOrgTestBasic1.PropertyVarBin C# (CSharp) Method

PropertyVarBin() public method

Query the value of the VarBin 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 PropertyVarBin ( ) : byte[]
return byte[]
        public byte[] PropertyVarBin()
        {
            PropertyReadLock();
            byte[] val;
            try
            {
                val = iVarBin.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }