Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / Serialization / XmlRootAttribute.cs / 1 / XmlRootAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System; using System.Xml.Schema; ////// /// [AttributeUsage(AttributeTargets.ReturnValue | AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Struct)] public class XmlRootAttribute : System.Attribute { string elementName; string ns; string dataType; bool nullable = true; bool nullableSpecified; ///[To be supplied.] ////// /// public XmlRootAttribute() { } ///[To be supplied.] ////// /// public XmlRootAttribute(string elementName) { this.elementName = elementName; } ///[To be supplied.] ////// /// public string ElementName { get { return elementName == null ? string.Empty : elementName; } set { elementName = 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 bool IsNullable { get { return nullable; } set { nullable = value; nullableSpecified = true; } } internal bool IsNullableSpecified { get { return nullableSpecified; } } internal string Key { get { return (ns == null ? String.Empty : ns) + ":" + ElementName + ":" + nullable.ToString(); } } } } // 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
- OneToOneMappingSerializer.cs
- AnimationTimeline.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- CustomError.cs
- MemoryPressure.cs
- XmlIgnoreAttribute.cs
- PropertyDescriptorComparer.cs
- EntityClassGenerator.cs
- TableLayoutStyle.cs
- CustomBindingElementCollection.cs
- ConnectionPoint.cs
- WindowsToolbarItemAsMenuItem.cs
- ReadOnlyHierarchicalDataSourceView.cs
- X509Certificate.cs
- CapacityStreamGeometryContext.cs
- HttpRawResponse.cs
- PeerHopCountAttribute.cs
- TextTreeDeleteContentUndoUnit.cs
- HostingMessageProperty.cs
- SiteMapPath.cs
- AccessedThroughPropertyAttribute.cs
- HtmlAnchor.cs
- TableCellCollection.cs
- InkCollectionBehavior.cs
- FastEncoderWindow.cs
- BasicHttpBinding.cs
- PeerReferralPolicy.cs
- RequestSecurityTokenResponse.cs
- Stacktrace.cs
- FontNamesConverter.cs
- ConcurrentStack.cs
- WebPartMinimizeVerb.cs
- CodeLinePragma.cs
- XmlHierarchyData.cs
- SizeAnimationClockResource.cs
- ListItemCollection.cs
- UIAgentInitializationException.cs
- SessionIDManager.cs
- QilFactory.cs
- HtmlTableRowCollection.cs
- tooltip.cs
- ExpressionDumper.cs
- DataObjectEventArgs.cs
- FocusManager.cs
- TokenBasedSet.cs
- RoutedCommand.cs
- MimeTypeMapper.cs
- TcpHostedTransportConfiguration.cs
- TreeNodeStyleCollection.cs
- QueryExtender.cs
- TagPrefixAttribute.cs
- SecurityMessageProperty.cs
- EntityContainerEmitter.cs
- HostedController.cs
- ImageKeyConverter.cs
- PropertyDescriptorComparer.cs
- FontFamily.cs
- SettingsSavedEventArgs.cs
- IResourceProvider.cs
- WebControlParameterProxy.cs
- PhoneCallDesigner.cs
- ClientScriptManager.cs
- OpenTypeLayout.cs
- XmlBindingWorker.cs
- WebRequest.cs
- DataGridTablesFactory.cs
- SrgsSemanticInterpretationTag.cs
- TemplateEditingVerb.cs
- InternalSafeNativeMethods.cs
- ConsumerConnectionPointCollection.cs
- XPathSelfQuery.cs
- RunInstallerAttribute.cs
- SqlExpressionNullability.cs
- RegistryConfigurationProvider.cs
- HttpModuleCollection.cs
- DataGridViewButtonColumn.cs
- TemplateColumn.cs
- ContentPosition.cs
- MulticastDelegate.cs
- Timer.cs
- HttpApplicationFactory.cs
- OperandQuery.cs
- Menu.cs
- ProfileSection.cs
- AudioBase.cs
- AcceleratedTokenProviderState.cs
- DatatypeImplementation.cs
- ByteConverter.cs
- ColorContextHelper.cs
- WpfWebRequestHelper.cs
- ConfigurationValues.cs
- glyphs.cs
- COM2ICategorizePropertiesHandler.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- DBBindings.cs
- XmlReflectionMember.cs
- IndexedString.cs
- RawStylusInputReport.cs
- IndexerNameAttribute.cs
- httpserverutility.cs