Opc.Ua.Schema.SchemaValidator.IsNull C# (CSharp) Method

IsNull() protected static method

Returns true if the QName is null,
protected static IsNull ( XmlQualifiedName name ) : bool
name System.Xml.XmlQualifiedName
return bool
        protected static bool IsNull(XmlQualifiedName name)
        {
            if (name != null && !String.IsNullOrEmpty(name.Name))
            {
                return false;
            }

            return true;
        }