Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / Serialization / XmlAnyElementAttribute.cs / 1 / XmlAnyElementAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System; using System.Xml.Schema; ////// /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Parameter | AttributeTargets.ReturnValue, AllowMultiple=true)] public class XmlAnyElementAttribute : System.Attribute { string name; string ns; int order = -1; bool nsSpecified = false; ///[To be supplied.] ////// /// public XmlAnyElementAttribute() { } ///[To be supplied.] ////// /// public XmlAnyElementAttribute(string name) { this.name = name; } ///[To be supplied.] ////// /// public XmlAnyElementAttribute(string name, string ns) { this.name = name; this.ns = ns; nsSpecified = true; } ///[To be supplied.] ////// /// public string Name { get { return name == null ? string.Empty : name; } set { name = value; } } ///[To be supplied.] ////// /// public string Namespace { get { return ns; } set { ns = value; nsSpecified = true; } } ///[To be supplied.] ////// /// public int Order { get { return order; } set { if (value < 0) throw new ArgumentException(Res.GetString(Res.XmlDisallowNegativeValues), "Order"); order = value; } } internal bool NamespaceSpecified { get { return nsSpecified; } } } } // 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
- BindingWorker.cs
- FreezableDefaultValueFactory.cs
- DeviceContext2.cs
- MissingSatelliteAssemblyException.cs
- AttachmentService.cs
- OperationCanceledException.cs
- LineProperties.cs
- ActivationServices.cs
- SyndicationDeserializer.cs
- Point4D.cs
- GroupBoxAutomationPeer.cs
- MenuAutomationPeer.cs
- SiteMapNodeItemEventArgs.cs
- MessageRpc.cs
- Translator.cs
- TableCellCollection.cs
- NativeRightsManagementAPIsStructures.cs
- MergePropertyDescriptor.cs
- DecoderNLS.cs
- Clipboard.cs
- AssociationSetMetadata.cs
- NamespaceDecl.cs
- ExceptionHandlerDesigner.cs
- AsymmetricCryptoHandle.cs
- StrokeCollectionConverter.cs
- SystemIPv6InterfaceProperties.cs
- SimpleBitVector32.cs
- InputLanguage.cs
- ReflectTypeDescriptionProvider.cs
- ModifierKeysConverter.cs
- UrlMapping.cs
- Int32CAMarshaler.cs
- SerializationEventsCache.cs
- CompilerParameters.cs
- CompositeDesignerAccessibleObject.cs
- WebConfigurationHost.cs
- HttpRawResponse.cs
- DefaultEvaluationContext.cs
- CollectionViewGroupInternal.cs
- OrthographicCamera.cs
- DoubleAnimationClockResource.cs
- WebServiceClientProxyGenerator.cs
- ComPlusAuthorization.cs
- PasswordBoxAutomationPeer.cs
- FixedTextPointer.cs
- _NativeSSPI.cs
- FixedPosition.cs
- DataGridBoolColumn.cs
- StorageMappingItemLoader.cs
- SQLBoolean.cs
- DataGridViewDataConnection.cs
- TableLayoutPanelCellPosition.cs
- OptimizerPatterns.cs
- TrailingSpaceComparer.cs
- PointAnimationUsingKeyFrames.cs
- XmlExceptionHelper.cs
- ScrollItemPatternIdentifiers.cs
- RSAOAEPKeyExchangeFormatter.cs
- SspiWrapper.cs
- NotCondition.cs
- DataGridViewCellValidatingEventArgs.cs
- SpAudioStreamWrapper.cs
- HttpModuleCollection.cs
- Int32.cs
- ServiceModelReg.cs
- Directory.cs
- MessageBox.cs
- WebPartExportVerb.cs
- SystemIPv4InterfaceProperties.cs
- WCFServiceClientProxyGenerator.cs
- RowBinding.cs
- XPathBinder.cs
- CodeAttributeArgument.cs
- FileStream.cs
- ScriptIgnoreAttribute.cs
- CodeGeneratorOptions.cs
- ButtonRenderer.cs
- WindowsRichEdit.cs
- Types.cs
- IdentifierService.cs
- pingexception.cs
- XPathChildIterator.cs
- TableSectionStyle.cs
- HtmlInputImage.cs
- BamlVersionHeader.cs
- StrokeRenderer.cs
- StubHelpers.cs
- TileBrush.cs
- AnnotationObservableCollection.cs
- EndSelectCardRequest.cs
- CacheOutputQuery.cs
- ObjectAssociationEndMapping.cs
- DSGeneratorProblem.cs
- NumericUpDownAcceleration.cs
- EventListenerClientSide.cs
- ParallelTimeline.cs
- MultipartIdentifier.cs
- Choices.cs
- DataServiceHost.cs
- PropertyValueChangedEvent.cs