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*/);
        }
 public IntegerFacetDescriptionElement(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)
 {
 }
 public SridFacetDescriptionElement(TypeElement type, string name)
     : base(type, name)
 {
 }
 public BooleanFacetDescriptionElement(TypeElement type, string name)
     : base(type, name)
 {
 }
Example #7
0
        /// <summary>
        /// Handler for the TypeInformation element
        /// </summary>
        /// <param name="reader">xml reader currently positioned at EntityType element</param>
        private void HandleTypeInformationElement(XmlReader reader)
        {
            Debug.Assert(reader != null);

            var type = new TypeElement(this);

            type.Parse(reader);

            TryAddType(type, true /*doNotAddErrorForEmptyName*/);
        }