2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="SoapAttributeOverrides.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2017-08-21 15:34:15 +00:00
|
|
|
// <owner current="true" primary="true">Microsoft</owner>
|
2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
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\SoapAttributeOverrides.uex' path='docs/doc[@for="SoapAttributeOverrides"]/*' />
|
|
|
|
/// <devdoc>
|
|
|
|
/// <para>[To be supplied.]</para>
|
|
|
|
/// </devdoc>
|
|
|
|
public class SoapAttributeOverrides {
|
|
|
|
Hashtable types = new Hashtable();
|
|
|
|
|
|
|
|
/// <include file='doc\SoapAttributeOverrides.uex' path='docs/doc[@for="SoapAttributeOverrides.Add"]/*' />
|
|
|
|
/// <devdoc>
|
|
|
|
/// <para>[To be supplied.]</para>
|
|
|
|
/// </devdoc>
|
|
|
|
public void Add(Type type, SoapAttributes attributes) {
|
|
|
|
Add(type, string.Empty, attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <include file='doc\SoapAttributeOverrides.uex' path='docs/doc[@for="SoapAttributeOverrides.Add1"]/*' />
|
|
|
|
/// <devdoc>
|
|
|
|
/// <para>[To be supplied.]</para>
|
|
|
|
/// </devdoc>
|
|
|
|
public void Add(Type type, string member, SoapAttributes 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.XmlMultipleAttributeOverrides, type.FullName, member));
|
|
|
|
}
|
|
|
|
members.Add(member, attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <include file='doc\SoapAttributeOverrides.uex' path='docs/doc[@for="SoapAttributeOverrides.this"]/*' />
|
|
|
|
/// <devdoc>
|
|
|
|
/// <para>[To be supplied.]</para>
|
|
|
|
/// </devdoc>
|
|
|
|
public SoapAttributes this[Type type] {
|
|
|
|
get {
|
|
|
|
return this[type, string.Empty];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <include file='doc\SoapAttributeOverrides.uex' path='docs/doc[@for="SoapAttributeOverrides.this1"]/*' />
|
|
|
|
/// <devdoc>
|
|
|
|
/// <para>[To be supplied.]</para>
|
|
|
|
/// </devdoc>
|
|
|
|
public SoapAttributes this[Type type, string member] {
|
|
|
|
get {
|
|
|
|
Hashtable members = (Hashtable)types[type];
|
|
|
|
if (members == null) return null;
|
|
|
|
return (SoapAttributes)members[member];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|