Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ValidatorUtils.cs
- EventLogTraceListener.cs
- SchemaInfo.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- DataObject.cs
- ArrayElementGridEntry.cs
- TransformerInfo.cs
- UniqueCodeIdentifierScope.cs
- FontStretches.cs
- ClockGroup.cs
- WebPartExportVerb.cs
- SaveCardRequest.cs
- Part.cs
- SystemTcpStatistics.cs
- NetworkAddressChange.cs
- DbParameterCollectionHelper.cs
- WorkflowStateRollbackService.cs
- XmlAttributeCollection.cs
- UnsafeNativeMethodsMilCoreApi.cs
- IdnElement.cs
- PrintingPermission.cs
- GetPageCompletedEventArgs.cs
- View.cs
- XmlSchemaValidationException.cs
- DiscoveryEndpointElement.cs
- PolicyException.cs
- OracleDateTime.cs
- DriveNotFoundException.cs
- PrintEvent.cs
- ProfilePropertyMetadata.cs
- DataGridViewCellStyleChangedEventArgs.cs
- BinaryCommonClasses.cs
- SqlInternalConnectionSmi.cs
- MarkupObject.cs
- MSAANativeProvider.cs
- PseudoWebRequest.cs
- DetailsViewPageEventArgs.cs
- KeyTime.cs
- ActiveXHelper.cs
- CompoundFileReference.cs
- VirtualDirectoryMapping.cs
- DataPagerFieldCollection.cs
- BinaryUtilClasses.cs
- FixedTextSelectionProcessor.cs
- ProviderCollection.cs
- HtmlHead.cs
- QueryCacheKey.cs
- ResourceReader.cs
- BaseCodePageEncoding.cs
- OperationResponse.cs
- HyperLinkField.cs
- StateManagedCollection.cs
- DropShadowEffect.cs
- x509store.cs
- ClientRuntimeConfig.cs
- OperatingSystem.cs
- DataGridTableCollection.cs
- AspCompat.cs
- ResourceDisplayNameAttribute.cs
- ExtendedTransformFactory.cs
- XmlDocumentSerializer.cs
- FilteredXmlReader.cs
- ParenthesizePropertyNameAttribute.cs
- TransformDescriptor.cs
- SplineKeyFrames.cs
- HttpBufferlessInputStream.cs
- GroupBox.cs
- LogPolicy.cs
- NominalTypeEliminator.cs
- DPCustomTypeDescriptor.cs
- ReferentialConstraint.cs
- Margins.cs
- ObfuscationAttribute.cs
- DefaultProxySection.cs
- cache.cs
- RelationshipSet.cs
- Keyboard.cs
- MetadataCache.cs
- Brush.cs
- InputGestureCollection.cs
- HttpListener.cs
- Color.cs
- TemplatePropertyEntry.cs
- PageBreakRecord.cs
- ComponentEditorPage.cs
- RightsManagementEncryptionTransform.cs
- Binding.cs
- _ConnectStream.cs
- Vector3DValueSerializer.cs
- VirtualDirectoryMappingCollection.cs
- SspiWrapper.cs
- DataErrorValidationRule.cs
- ExpressionConverter.cs
- Point3D.cs
- __FastResourceComparer.cs
- InputElement.cs
- MenuItemStyleCollection.cs
- ControlDesignerState.cs
- XmlSerializerFactory.cs
- PropertyTab.cs