ATMLSchemaLibrary.managers.SchemaManager.IsPhysicalType C# (CSharp) Метод

IsPhysicalType() публичный статический Метод

public static IsPhysicalType ( string nameSpace, string localName, string propertyName ) : bool
nameSpace string
localName string
propertyName string
Результат bool
        public static bool IsPhysicalType( string nameSpace, string localName, string propertyName )
        {
            bool isPhysicalType = false;
            XmlSchemaAttribute schemaAttribute;
            FindAttribute( nameSpace, localName, propertyName, out schemaAttribute );
            string typeName = "";
            if (schemaAttribute != null)
            {
                XmlSchemaSimpleType simpleType = schemaAttribute.AttributeSchemaType;
                isPhysicalType = IsPhysicalType( simpleType );
            }
            return isPhysicalType;
        }

Same methods

SchemaManager::IsPhysicalType ( XmlQualifiedName qualifiedName ) : bool
SchemaManager::IsPhysicalType ( XmlSchemaType schemaType ) : bool