Example #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*/);
        }
Example #2
0
 public BooleanFacetDescriptionElement(TypeElement type, string name)
     : base(type, name)
 {
 }
Example #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*/);
        }
Example #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)
 {
 }
Example #8
0
 public FacetDescriptionElement(TypeElement type, string name)
     : base((SchemaElement)type, name, (IDbDependencyResolver)null)
 {
 }