Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / XmlAttributeAttribute.cs / 1 / XmlAttributeAttribute.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)] public class XmlAttributeAttribute : System.Attribute { string attributeName; Type type; string ns; string dataType; XmlSchemaForm form = XmlSchemaForm.None; ///[To be supplied.] ////// /// public XmlAttributeAttribute() { } ///[To be supplied.] ////// /// public XmlAttributeAttribute(string attributeName) { this.attributeName = attributeName; } ///[To be supplied.] ////// /// public XmlAttributeAttribute(Type type) { this.type = type; } ///[To be supplied.] ////// /// public XmlAttributeAttribute(string attributeName, Type type) { this.attributeName = attributeName; this.type = type; } ///[To be supplied.] ////// /// public Type Type { get { return type; } set { type = value; } } ///[To be supplied.] ////// /// public string AttributeName { get { return attributeName == null ? string.Empty : attributeName; } set { attributeName = value; } } ///[To be supplied.] ////// /// public string Namespace { get { return ns; } set { ns = value; } } ///[To be supplied.] ////// /// public string DataType { get { return dataType == null ? string.Empty : dataType; } set { dataType = value; } } ///[To be supplied.] ////// /// public XmlSchemaForm Form { get { return form; } set { form = value; } } } } // 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
- IdnMapping.cs
- EditingCommands.cs
- XmlDataProvider.cs
- RequestCacheEntry.cs
- IOException.cs
- BamlTreeUpdater.cs
- StructuralCache.cs
- DictionaryCustomTypeDescriptor.cs
- SQLChars.cs
- _AutoWebProxyScriptEngine.cs
- JoinGraph.cs
- WebConfigurationHostFileChange.cs
- ExponentialEase.cs
- SrgsGrammar.cs
- AssociationSetEnd.cs
- AsnEncodedData.cs
- InstanceData.cs
- DataGridTablesFactory.cs
- UndoUnit.cs
- ToolStripContainerDesigner.cs
- RuntimeConfig.cs
- WindowsContainer.cs
- SafeRightsManagementSessionHandle.cs
- TextBoxBase.cs
- XmlArrayItemAttributes.cs
- TypeValidationEventArgs.cs
- RangeValueProviderWrapper.cs
- BufferBuilder.cs
- BufferedReadStream.cs
- OdbcEnvironmentHandle.cs
- QilInvoke.cs
- SignatureToken.cs
- HashCoreRequest.cs
- ConstructorExpr.cs
- InputGestureCollection.cs
- GetResponse.cs
- ServiceHttpHandlerFactory.cs
- UseManagedPresentationBindingElementImporter.cs
- DataGridColumnDropSeparator.cs
- Style.cs
- SafeNativeMethods.cs
- CodeTypeReference.cs
- SynchronizedPool.cs
- Atom10FormatterFactory.cs
- XmlHierarchicalDataSourceView.cs
- CollectionChangedEventManager.cs
- DataSourceBooleanViewSchemaConverter.cs
- SelectingProviderEventArgs.cs
- EventProvider.cs
- SpAudioStreamWrapper.cs
- DoubleIndependentAnimationStorage.cs
- SchemaEntity.cs
- DataServiceRequest.cs
- ConditionedDesigner.cs
- ipaddressinformationcollection.cs
- FrameworkTemplate.cs
- FlowDocumentReaderAutomationPeer.cs
- VerificationAttribute.cs
- QilList.cs
- ListViewGroupConverter.cs
- HttpStaticObjectsCollectionBase.cs
- BuilderElements.cs
- Variable.cs
- SessionStateSection.cs
- ObjectListCommandEventArgs.cs
- GradientBrush.cs
- QilXmlWriter.cs
- QuadraticBezierSegment.cs
- MultipleViewPatternIdentifiers.cs
- BufferAllocator.cs
- ScrollViewer.cs
- DesignerDataTable.cs
- ButtonPopupAdapter.cs
- TreeNodeBindingCollection.cs
- UInt16Converter.cs
- AttachedPropertyBrowsableAttribute.cs
- DataSpaceManager.cs
- SetUserPreferenceRequest.cs
- TextPenaltyModule.cs
- AdobeCFFWrapper.cs
- PerformanceCounterScope.cs
- ObjectView.cs
- Int16AnimationBase.cs
- UserControlBuildProvider.cs
- InternalBase.cs
- OneOfElement.cs
- ReferenceEqualityComparer.cs
- SqlStream.cs
- SmiEventSink_Default.cs
- CodeBlockBuilder.cs
- ImageSourceConverter.cs
- SoapDocumentServiceAttribute.cs
- TcpProcessProtocolHandler.cs
- rsa.cs
- OrderablePartitioner.cs
- SqlTriggerContext.cs
- IDataContractSurrogate.cs
- LateBoundBitmapDecoder.cs
- Clock.cs
- VirtualizingStackPanel.cs