e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
71 lines
2.7 KiB
C#
71 lines
2.7 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="XmlAttributeOverrides.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">[....]</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Xml.Serialization {
|
|
using System.Reflection;
|
|
using System.Collections;
|
|
using System.IO;
|
|
using System.Xml.Schema;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
/// <include file='doc\XmlAttributeOverrides.uex' path='docs/doc[@for="XmlAttributeOverrides"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public class XmlAttributeOverrides {
|
|
Hashtable types = new Hashtable();
|
|
|
|
/// <include file='doc\XmlAttributeOverrides.uex' path='docs/doc[@for="XmlAttributeOverrides.Add"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public void Add(Type type, XmlAttributes attributes) {
|
|
Add(type, string.Empty, attributes);
|
|
}
|
|
|
|
/// <include file='doc\XmlAttributeOverrides.uex' path='docs/doc[@for="XmlAttributeOverrides.Add1"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public void Add(Type type, string member, XmlAttributes attributes) {
|
|
Hashtable members = (Hashtable)types[type];
|
|
if (members == null) {
|
|
members = new Hashtable();
|
|
types.Add(type, members);
|
|
}
|
|
else if (members[member] != null) {
|
|
throw new InvalidOperationException(Res.GetString(Res.XmlAttributeSetAgain, type.FullName, member));
|
|
}
|
|
members.Add(member, attributes);
|
|
}
|
|
|
|
/// <include file='doc\XmlAttributeOverrides.uex' path='docs/doc[@for="XmlAttributeOverrides.this"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public XmlAttributes this[Type type] {
|
|
get {
|
|
return this[type, string.Empty];
|
|
}
|
|
}
|
|
|
|
/// <include file='doc\XmlAttributeOverrides.uex' path='docs/doc[@for="XmlAttributeOverrides.this1"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public XmlAttributes this[Type type, string member] {
|
|
get {
|
|
Hashtable members = (Hashtable)types[type];
|
|
if (members == null) return null;
|
|
return (XmlAttributes)members[member];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|