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
- SafeMILHandle.cs
- TagPrefixAttribute.cs
- PtsCache.cs
- TreeNode.cs
- Point4DValueSerializer.cs
- ConfigPathUtility.cs
- ErrorFormatterPage.cs
- ColorTranslator.cs
- SocketAddress.cs
- PropagatorResult.cs
- InvalidCommandTreeException.cs
- ContainerUIElement3D.cs
- PenContext.cs
- BaseDataListComponentEditor.cs
- OverrideMode.cs
- ObjectViewQueryResultData.cs
- DoubleAnimationUsingPath.cs
- TypographyProperties.cs
- XmlResolver.cs
- UnionExpr.cs
- NamedPipeDuplicateContext.cs
- DbgCompiler.cs
- ContainerParagraph.cs
- UrlPropertyAttribute.cs
- ResXResourceReader.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- AsyncParams.cs
- ClientTarget.cs
- Evaluator.cs
- StringConverter.cs
- RepeatInfo.cs
- EventTrigger.cs
- LayoutTable.cs
- AtlasWeb.Designer.cs
- HijriCalendar.cs
- HtmlInputCheckBox.cs
- TemplateNodeContextMenu.cs
- RunClient.cs
- XamlPathDataSerializer.cs
- BulletedList.cs
- JoinCqlBlock.cs
- PrintDialog.cs
- IsolatedStorageFile.cs
- MessageSecurityOverHttpElement.cs
- XmlQualifiedName.cs
- RuleElement.cs
- StylusPoint.cs
- XhtmlBasicLiteralTextAdapter.cs
- PagePropertiesChangingEventArgs.cs
- WinEventQueueItem.cs
- OpenTypeCommon.cs
- FilteredReadOnlyMetadataCollection.cs
- WebBrowserSiteBase.cs
- AnnouncementClient.cs
- XsltArgumentList.cs
- X509SecurityTokenAuthenticator.cs
- Debug.cs
- TextEditorParagraphs.cs
- PageParserFilter.cs
- ControlBuilderAttribute.cs
- DataServiceRequest.cs
- Int32Rect.cs
- COM2IProvidePropertyBuilderHandler.cs
- Errors.cs
- MetadataItemEmitter.cs
- BuildProvidersCompiler.cs
- DefaultExpressionVisitor.cs
- X509KeyIdentifierClauseType.cs
- SymmetricAlgorithm.cs
- DetailsView.cs
- PrintControllerWithStatusDialog.cs
- HandlerMappingMemo.cs
- WindowsSlider.cs
- SystemIPv6InterfaceProperties.cs
- DragEventArgs.cs
- RectValueSerializer.cs
- GeneratedContractType.cs
- HuffCodec.cs
- ApplicationException.cs
- NativeMethods.cs
- UnauthorizedWebPart.cs
- WebException.cs
- WindowsListViewGroupHelper.cs
- UriScheme.cs
- WorkflowWebHostingModule.cs
- IIS7UserPrincipal.cs
- InitializationEventAttribute.cs
- MatcherBuilder.cs
- AssemblyUtil.cs
- DataFormats.cs
- _SslState.cs
- SystemIPv6InterfaceProperties.cs
- PageParserFilter.cs
- StreamWriter.cs
- SQLDateTime.cs
- WebRequestModuleElementCollection.cs
- DependencyPropertyKind.cs
- SmiSettersStream.cs
- BooleanExpr.cs
- StructuredTypeEmitter.cs