Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- AdornerDecorator.cs
- Hash.cs
- WebZone.cs
- TemplateParser.cs
- AnnotationAdorner.cs
- ContainsRowNumberChecker.cs
- AppDomainShutdownMonitor.cs
- ColorAnimation.cs
- ScriptManagerProxy.cs
- VirtualPath.cs
- ToolBarPanel.cs
- RawUIStateInputReport.cs
- Line.cs
- ProfileGroupSettings.cs
- CommandID.cs
- XmlSchemaComplexContentExtension.cs
- SearchForVirtualItemEventArgs.cs
- DataGridViewCellStateChangedEventArgs.cs
- BoundsDrawingContextWalker.cs
- CoordinationService.cs
- TextPatternIdentifiers.cs
- GridViewRowPresenter.cs
- GZipStream.cs
- CommentEmitter.cs
- FileChangesMonitor.cs
- NativeMethods.cs
- LogicalExpr.cs
- cookiecontainer.cs
- UpdatableWrapper.cs
- FixedPageProcessor.cs
- CompilerParameters.cs
- ProviderConnectionPointCollection.cs
- BitmapImage.cs
- TypeUsage.cs
- NonBatchDirectoryCompiler.cs
- Char.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- MouseGestureValueSerializer.cs
- InputReportEventArgs.cs
- ObjectDataSourceSelectingEventArgs.cs
- EnumerableRowCollection.cs
- StateDesigner.cs
- XmlQueryType.cs
- ForeignKeyConstraint.cs
- NavigationExpr.cs
- RecordsAffectedEventArgs.cs
- WebContext.cs
- Debugger.cs
- FormatVersion.cs
- Barrier.cs
- ExecutionScope.cs
- SequentialOutput.cs
- ActivityXamlServices.cs
- DataTableMapping.cs
- Activator.cs
- X509CertificateClaimSet.cs
- DNS.cs
- TerminatorSinks.cs
- LinkArea.cs
- LiteralTextParser.cs
- itemelement.cs
- ThreadAbortException.cs
- DropSource.cs
- TdsParserHelperClasses.cs
- OperationValidationEventArgs.cs
- SmiEventSink_Default.cs
- CorruptingExceptionCommon.cs
- shaperfactory.cs
- FormViewRow.cs
- SoapIncludeAttribute.cs
- IProvider.cs
- DataGridViewRowPrePaintEventArgs.cs
- TraceListeners.cs
- XpsS0ValidatingLoader.cs
- IApplicationTrustManager.cs
- AttributeEmitter.cs
- securestring.cs
- ThousandthOfEmRealPoints.cs
- EventMappingSettings.cs
- Merger.cs
- SqlCachedBuffer.cs
- WebProxyScriptElement.cs
- DependencyPropertyKey.cs
- MenuItem.cs
- ToolboxCategoryItems.cs
- ReferencedCollectionType.cs
- VScrollBar.cs
- SqlFactory.cs
- BitmapPalettes.cs
- DataPagerField.cs
- _HeaderInfo.cs
- SspiWrapper.cs
- ThicknessAnimationBase.cs
- ProxyAttribute.cs
- FormViewPageEventArgs.cs
- AddInController.cs
- TaskResultSetter.cs
- RenderingBiasValidation.cs
- _LocalDataStoreMgr.cs
- AssemblySettingAttributes.cs