public ExplicitIdSerializer(XmlSerializationSettings settings) : base(settings)
 {
 }
 public ExplicitIdSerializer(XmlSerializationSettings settings, IEnumerable <Type> knownTypes) : base(settings, knownTypes)
 {
 }
示例#3
0
 /// <summary>
 /// Creates a new XmiSerializer with the specified settings
 /// </summary>
 /// <param name="settings">Serializer-settings for the serializer. Can be null or Nothing in Visual Basic. In this case, the default settings will be used.</param>
 public XmiSerializer(XmlSerializationSettings settings) : base(settings)
 {
 }
示例#4
0
 /// <summary>
 /// Creates a new XmiSerializer with the specified settings and the given preloaded types
 /// </summary>
 /// <param name="additionalTypes">Set of types to load into the serializer</param>
 /// <param name="settings">The settings to use for the serializer</param>
 /// <remarks>The types will be loaded with the specified settings</remarks>
 public XmiSerializer(XmlSerializationSettings settings, IEnumerable <Type> additionalTypes) : base(settings, additionalTypes)
 {
 }
示例#5
0
        public ModelSerializer(XmlSerializationSettings settings, IEnumerable<Type> knownTypes)
            : base(settings, knownTypes)
        {

        }
示例#6
0
 public ModelSerializer(XmlSerializationSettings settings) : this(settings, null) { }
示例#7
0
 public ModelSerializer(XmlSerializationSettings settings) : this(settings, null)
 {
 }
示例#8
0
 /// <summary>
 /// Creates a new XmiSerializer with the specified settings and the given preloaded types
 /// </summary>
 /// <param name="additionalTypes">Set of types to load into the serializer</param>
 /// <param name="settings">The settings to use for the serializer</param>
 /// <remarks>The types will be loaded with the specified settings</remarks>
 public XmiSerializer(XmlSerializationSettings settings, IEnumerable<Type> additionalTypes)
     : base(settings, additionalTypes)
 {
 }
示例#9
0
 /// <summary>
 /// Creates a new XmiSerializer with the specified settings
 /// </summary>
 /// <param name="settings">Serializer-settings for the serializer. Can be null or Nothing in Visual Basic. In this case, the default settings will be used.</param>
 public XmiSerializer(XmlSerializationSettings settings)
     : base(settings)
 {
 }