Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / Serialization / SoapAttributeOverrides.cs / 1 / SoapAttributeOverrides.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System.Reflection; using System.Collections; using System.IO; using System.Xml.Schema; using System; using System.ComponentModel; ////// /// public class SoapAttributeOverrides { Hashtable types = new Hashtable(); ///[To be supplied.] ////// /// public void Add(Type type, SoapAttributes attributes) { Add(type, string.Empty, attributes); } ///[To be supplied.] ////// /// 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); } ///[To be supplied.] ////// /// public SoapAttributes this[Type type] { get { return this[type, string.Empty]; } } ///[To be supplied.] ////// /// public SoapAttributes this[Type type, string member] { get { Hashtable members = (Hashtable)types[type]; if (members == null) return null; return (SoapAttributes)members[member]; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DrawListViewColumnHeaderEventArgs.cs
- BadImageFormatException.cs
- StateRuntime.cs
- EntityTypeEmitter.cs
- WizardStepBase.cs
- CodeCompiler.cs
- ListViewItem.cs
- ConsoleTraceListener.cs
- UIElementCollection.cs
- CodeVariableReferenceExpression.cs
- HostedBindingBehavior.cs
- StylusTouchDevice.cs
- OrderByLifter.cs
- GeometryCollection.cs
- RewritingSimplifier.cs
- ScrollChrome.cs
- DictionaryBase.cs
- ContextStaticAttribute.cs
- HTMLTextWriter.cs
- StrokeRenderer.cs
- DbModificationClause.cs
- DbCommandTree.cs
- RowUpdatingEventArgs.cs
- ConfigurationPropertyCollection.cs
- InternalConfigSettingsFactory.cs
- SqlExpander.cs
- BindingSource.cs
- DecoderBestFitFallback.cs
- ProviderConnectionPointCollection.cs
- _LoggingObject.cs
- ApplicationTrust.cs
- xdrvalidator.cs
- sapiproxy.cs
- WindowsStatusBar.cs
- PropertyDescriptors.cs
- TableRow.cs
- RequestStatusBarUpdateEventArgs.cs
- BooleanFunctions.cs
- FeatureAttribute.cs
- SoapHttpTransportImporter.cs
- Int32Animation.cs
- RayHitTestParameters.cs
- NotificationContext.cs
- ArglessEventHandlerProxy.cs
- MessageSecurityTokenVersion.cs
- AssemblyAttributesGoHere.cs
- TextTreeTextBlock.cs
- ViewManager.cs
- ListViewPagedDataSource.cs
- SetStoryboardSpeedRatio.cs
- ComponentRenameEvent.cs
- QuadraticBezierSegment.cs
- NativeMethods.cs
- ManagementPath.cs
- UTF32Encoding.cs
- SqlBulkCopyColumnMappingCollection.cs
- GetWinFXPath.cs
- CfgArc.cs
- KeyValuePair.cs
- XmlDataSourceNodeDescriptor.cs
- Parser.cs
- ScriptingAuthenticationServiceSection.cs
- ContentType.cs
- SHA384Cng.cs
- ResourcePermissionBase.cs
- FragmentQuery.cs
- SubpageParaClient.cs
- OracleRowUpdatingEventArgs.cs
- SoapAttributes.cs
- SpeakCompletedEventArgs.cs
- TableCell.cs
- ProcessHostServerConfig.cs
- ObjectDataSourceView.cs
- ListViewCancelEventArgs.cs
- EmbeddedMailObject.cs
- SoapReflectionImporter.cs
- XmlSerializableServices.cs
- AnnotationHelper.cs
- FrameworkElement.cs
- dataSvcMapFileLoader.cs
- Point3D.cs
- WorkflowOwnershipException.cs
- SystemWebSectionGroup.cs
- SqlGatherProducedAliases.cs
- PeerCollaborationPermission.cs
- AttachedPropertiesService.cs
- InternalEnumValidator.cs
- PrimitiveRenderer.cs
- XPathQilFactory.cs
- ConsumerConnectionPointCollection.cs
- TemplateBuilder.cs
- TheQuery.cs
- StorageScalarPropertyMapping.cs
- DisableDpiAwarenessAttribute.cs
- TextPointer.cs
- RijndaelManaged.cs
- MessageBox.cs
- DesignDataSource.cs
- StringStorage.cs
- HttpValueCollection.cs