Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / XmlArrayItemAttribute.cs / 1 / XmlArrayItemAttribute.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, AllowMultiple=true)] public class XmlArrayItemAttribute : System.Attribute { string elementName; Type type; string ns; string dataType; bool nullable; bool nullableSpecified = false; XmlSchemaForm form = XmlSchemaForm.None; int nestingLevel; ///[To be supplied.] ////// /// public XmlArrayItemAttribute() { } ///[To be supplied.] ////// /// public XmlArrayItemAttribute(string elementName) { this.elementName = elementName; } ///[To be supplied.] ////// /// public XmlArrayItemAttribute(Type type) { this.type = type; } ///[To be supplied.] ////// /// public XmlArrayItemAttribute(string elementName, Type type) { this.elementName = elementName; this.type = type; } ///[To be supplied.] ////// /// public Type Type { get { return type; } set { type = value; } } ///[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 int NestingLevel { get { return nestingLevel; } set { nestingLevel = value; } } /// /// /// 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; } } ///[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
- ResourceIDHelper.cs
- ArrayElementGridEntry.cs
- ClientType.cs
- XmlMapping.cs
- OleDbRowUpdatingEvent.cs
- WebPartEditorApplyVerb.cs
- GridViewRow.cs
- WebControlParameterProxy.cs
- DiscreteKeyFrames.cs
- SignedXml.cs
- RegistryPermission.cs
- Image.cs
- NumberFormatter.cs
- CompilerResults.cs
- ButtonFieldBase.cs
- EventItfInfo.cs
- LayoutDump.cs
- OdbcConnectionPoolProviderInfo.cs
- InfoCardSymmetricAlgorithm.cs
- HttpProtocolImporter.cs
- LinkDescriptor.cs
- AppDomain.cs
- EventLogPermissionEntry.cs
- MarkupObject.cs
- SqlClientPermission.cs
- EnumDataContract.cs
- ImageCodecInfo.cs
- WindowsSysHeader.cs
- InstanceContextManager.cs
- HistoryEventArgs.cs
- TextTreeExtractElementUndoUnit.cs
- AttachedPropertyInfo.cs
- PrimarySelectionAdorner.cs
- DoWorkEventArgs.cs
- Type.cs
- TextContainerChangedEventArgs.cs
- ToolStripGripRenderEventArgs.cs
- SoapAttributeAttribute.cs
- OpenTypeCommon.cs
- ManipulationDevice.cs
- DoubleLinkListEnumerator.cs
- FormView.cs
- StrongNameUtility.cs
- NameObjectCollectionBase.cs
- CacheHelper.cs
- MailDefinitionBodyFileNameEditor.cs
- PackageStore.cs
- CanonicalXml.cs
- XamlReader.cs
- DesignerVerbCollection.cs
- SchemaElementLookUpTable.cs
- HttpRequest.cs
- SHA512Managed.cs
- Material.cs
- QilExpression.cs
- PersonalizationDictionary.cs
- TransformerInfo.cs
- SmtpClient.cs
- SchemaNamespaceManager.cs
- NativeMethods.cs
- IdentifierService.cs
- AssemblyEvidenceFactory.cs
- TableRow.cs
- BrowserCapabilitiesFactoryBase.cs
- Helpers.cs
- MediaTimeline.cs
- StringCollection.cs
- ContextCorrelationInitializer.cs
- GroupByExpressionRewriter.cs
- ChainOfResponsibility.cs
- Messages.cs
- ContextInformation.cs
- ContentPresenter.cs
- EditorPartChrome.cs
- OdbcHandle.cs
- BitmapFrame.cs
- XmlProcessingInstruction.cs
- DataGridViewCellCancelEventArgs.cs
- ListViewDesigner.cs
- Cursors.cs
- HttpBrowserCapabilitiesWrapper.cs
- DataObject.cs
- SetterBase.cs
- ListBindableAttribute.cs
- UseAttributeSetsAction.cs
- DocumentApplicationJournalEntry.cs
- PropertyMetadata.cs
- LinkClickEvent.cs
- XamlNamespaceHelper.cs
- HostedHttpContext.cs
- mediaeventshelper.cs
- PropertiesTab.cs
- RelationalExpressions.cs
- TreeIterators.cs
- Set.cs
- ForeignKeyFactory.cs
- UnsafeNativeMethodsMilCoreApi.cs
- SimpleBitVector32.cs
- XpsSerializationException.cs
- EventLogSession.cs