Esempio n. 1
0
        // <summary>
        // Handler for the TypeInformation element
        // </summary>
        // <param name="reader"> xml reader currently positioned at EntityType element </param>
        private void HandleTypeInformationElement(XmlReader reader)
        {
            DebugCheck.NotNull(reader);

            var type = new TypeElement(this);

            type.Parse(reader);

            TryAddType(type, true /*doNotAddErrorForEmptyName*/);
        }
Esempio n. 2
0
 public BooleanFacetDescriptionElement(TypeElement type, string name)
     : base(type, name)
 {
 }
Esempio n. 3
0
        // <summary>
        // Handler for the TypeInformation element
        // </summary>
        // <param name="reader"> xml reader currently positioned at EntityType element </param>
        private void HandleTypeInformationElement(XmlReader reader)
        {
            DebugCheck.NotNull(reader);

            var type = new TypeElement(this);

            type.Parse(reader);

            TryAddType(type, true /*doNotAddErrorForEmptyName*/);
        }
Esempio n. 4
0
 public IntegerFacetDescriptionElement(TypeElement type, string name)
     : base(type, name)
 {
 }
 public ByteFacetDescriptionElement(TypeElement type, string name)
     : base(type, name)
 {
 }
 public IntegerFacetDescriptionElement(TypeElement type, string name)
     : base(type, name)
 {
 }
 public SridFacetDescriptionElement(TypeElement type, string name)
     : base(type, name)
 {
 }
Esempio n. 8
0
 public FacetDescriptionElement(TypeElement type, string name)
     : base((SchemaElement)type, name, (IDbDependencyResolver)null)
 {
 }