Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / XmlAttributeAttribute.cs / 1305376 / 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. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ResXFileRef.cs
- TypeReference.cs
- MetadataCollection.cs
- LocalizableResourceBuilder.cs
- FieldNameLookup.cs
- Size3DValueSerializer.cs
- UndoUnit.cs
- CustomSignedXml.cs
- HttpWebRequestElement.cs
- HttpContextServiceHost.cs
- TextRangeEdit.cs
- DesignerAttributeInfo.cs
- PropertyEmitter.cs
- DLinqDataModelProvider.cs
- ChannelTerminatedException.cs
- XmlElementList.cs
- IndicFontClient.cs
- FamilyCollection.cs
- ImageMap.cs
- FamilyTypefaceCollection.cs
- ListBoxItem.cs
- CodeCompileUnit.cs
- DockPatternIdentifiers.cs
- CompareInfo.cs
- ASCIIEncoding.cs
- QueryAccessibilityHelpEvent.cs
- GeneralTransform.cs
- Events.cs
- UserControl.cs
- ReachDocumentReferenceSerializerAsync.cs
- RootDesignerSerializerAttribute.cs
- GenericIdentity.cs
- Clock.cs
- WebPartExportVerb.cs
- TrackingStringDictionary.cs
- RSAPKCS1SignatureDeformatter.cs
- ClientTargetCollection.cs
- CacheOutputQuery.cs
- DesignBindingValueUIHandler.cs
- NativeMethods.cs
- PropertyChangingEventArgs.cs
- MouseActionValueSerializer.cs
- ConstructorExpr.cs
- MemberHolder.cs
- WizardForm.cs
- WebFaultClientMessageInspector.cs
- CryptoApi.cs
- ConfigsHelper.cs
- CustomAttributeFormatException.cs
- Documentation.cs
- CodeDesigner.cs
- Aes.cs
- Quaternion.cs
- Table.cs
- BorderGapMaskConverter.cs
- HtmlTernaryTree.cs
- NotifyIcon.cs
- SafeThreadHandle.cs
- EventLogPermissionEntry.cs
- Int16KeyFrameCollection.cs
- EntityKey.cs
- CommandSet.cs
- SortQuery.cs
- MachineKeyConverter.cs
- ActivityWithResultConverter.cs
- IndentedWriter.cs
- WindowsTitleBar.cs
- PeerInputChannel.cs
- SymbolMethod.cs
- ControlIdConverter.cs
- TransformProviderWrapper.cs
- DetailsViewDeleteEventArgs.cs
- BuildProvidersCompiler.cs
- KnownTypes.cs
- Accessors.cs
- ServicePointManager.cs
- CachedPathData.cs
- StringFunctions.cs
- CssClassPropertyAttribute.cs
- TableParaClient.cs
- ReadOnlyMetadataCollection.cs
- LambdaCompiler.Generated.cs
- ParameterBinding.cs
- WindowsPrincipal.cs
- DataPointer.cs
- HttpCacheVaryByContentEncodings.cs
- SessionMode.cs
- WebPartHelpVerb.cs
- TypeDescriptionProviderAttribute.cs
- RuntimeCompatibilityAttribute.cs
- ControlBindingsCollection.cs
- Choices.cs
- WriteTimeStream.cs
- DataServiceKeyAttribute.cs
- ResXFileRef.cs
- DataGridViewImageCell.cs
- ToolBarTray.cs
- WmpBitmapDecoder.cs
- SafeRegistryKey.cs
- ResourceDictionaryCollection.cs