Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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.] ///// 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
- Registry.cs
- HttpCacheVary.cs
- DynamicResourceExtension.cs
- SQLDoubleStorage.cs
- XsdCachingReader.cs
- CategoryAttribute.cs
- DispatcherHookEventArgs.cs
- DebugViewWriter.cs
- sqlcontext.cs
- NavigationProgressEventArgs.cs
- NameHandler.cs
- TextSpanModifier.cs
- ViewPort3D.cs
- DeleteHelper.cs
- OdbcEnvironmentHandle.cs
- InvalidOperationException.cs
- ExpressionBuilderContext.cs
- FloatMinMaxAggregationOperator.cs
- ListParaClient.cs
- TouchEventArgs.cs
- SourceElementsCollection.cs
- AdCreatedEventArgs.cs
- BulletDecorator.cs
- CaseCqlBlock.cs
- WebPartVerbCollection.cs
- DetailsViewUpdateEventArgs.cs
- RawStylusInputCustomData.cs
- XPathEmptyIterator.cs
- XmlSchemaType.cs
- DataGridViewBand.cs
- CachedTypeface.cs
- CqlGenerator.cs
- AffineTransform3D.cs
- UserNameSecurityToken.cs
- DeclaredTypeElementCollection.cs
- GridViewDeletedEventArgs.cs
- SessionPageStatePersister.cs
- EmptyImpersonationContext.cs
- DeclarationUpdate.cs
- BamlTreeUpdater.cs
- ChtmlTextWriter.cs
- QilChoice.cs
- PrimitiveXmlSerializers.cs
- X509SecurityTokenAuthenticator.cs
- SurrogateEncoder.cs
- HitTestResult.cs
- HMAC.cs
- StringKeyFrameCollection.cs
- MaterializeFromAtom.cs
- Bitmap.cs
- StdValidatorsAndConverters.cs
- BasicViewGenerator.cs
- TabControl.cs
- RsaKeyGen.cs
- ChangePasswordDesigner.cs
- Exceptions.cs
- ObjectTag.cs
- Roles.cs
- ServiceErrorHandler.cs
- SoapMessage.cs
- TextSearch.cs
- AutomationElementCollection.cs
- Color.cs
- DesignerDataSourceView.cs
- PathNode.cs
- ObjectAssociationEndMapping.cs
- BaseComponentEditor.cs
- control.ime.cs
- ActivityInstanceMap.cs
- ScriptControlDescriptor.cs
- EventEntry.cs
- XPathNavigator.cs
- SafeHandles.cs
- VideoDrawing.cs
- ComponentResourceKeyConverter.cs
- FtpWebRequest.cs
- OrderingQueryOperator.cs
- PerfCounters.cs
- EncoderNLS.cs
- newitemfactory.cs
- HttpHostedTransportConfiguration.cs
- WebPartDescription.cs
- ContainerControl.cs
- TimeIntervalCollection.cs
- RowVisual.cs
- BlockCollection.cs
- ValidationError.cs
- DoubleAnimationClockResource.cs
- ContentValidator.cs
- BindingMemberInfo.cs
- VerificationAttribute.cs
- HttpModulesSection.cs
- RepeaterItemCollection.cs
- ChangeDirector.cs
- SelectManyQueryOperator.cs
- NotifyIcon.cs
- MetadataPropertyvalue.cs
- SiteMapPath.cs
- MultiSelectRootGridEntry.cs
- Decorator.cs