Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / XmlArrayItemAttribute.cs / 1305376 / 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Exceptions.cs
- FeatureSupport.cs
- Debug.cs
- SHA512Cng.cs
- TrackingCondition.cs
- PropertyPushdownHelper.cs
- EntityWrapper.cs
- SmtpAuthenticationManager.cs
- TypeToTreeConverter.cs
- SmtpFailedRecipientException.cs
- GlyphsSerializer.cs
- MultitargetingHelpers.cs
- Logging.cs
- IxmlLineInfo.cs
- DispatcherEventArgs.cs
- XmlSerializer.cs
- RadioButtonAutomationPeer.cs
- FunctionNode.cs
- StaticExtensionConverter.cs
- MarginsConverter.cs
- IsolatedStoragePermission.cs
- EdmFunction.cs
- Properties.cs
- ReadOnlyHierarchicalDataSource.cs
- SimpleWebHandlerParser.cs
- ConversionValidationRule.cs
- XmlSerializerNamespaces.cs
- FieldTemplateFactory.cs
- HandleExceptionArgs.cs
- HttpHandlersInstallComponent.cs
- SqlDataSourceSelectingEventArgs.cs
- BlurBitmapEffect.cs
- bidPrivateBase.cs
- InputEventArgs.cs
- ComponentRenameEvent.cs
- SHA512Managed.cs
- Filter.cs
- EntityDataSourceChangingEventArgs.cs
- RequestQueryProcessor.cs
- RuntimeCompatibilityAttribute.cs
- EdmFunction.cs
- StateWorkerRequest.cs
- HttpFileCollection.cs
- CompatibleComparer.cs
- ViewStateModeByIdAttribute.cs
- IxmlLineInfo.cs
- objectquery_tresulttype.cs
- Win32.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- Brush.cs
- ClientRuntimeConfig.cs
- HtmlShim.cs
- GridViewColumnCollectionChangedEventArgs.cs
- ArcSegment.cs
- ContextMarshalException.cs
- JapaneseLunisolarCalendar.cs
- TypeLibConverter.cs
- SendKeys.cs
- MemberDomainMap.cs
- SiteMapNodeCollection.cs
- TextStore.cs
- OleDbCommandBuilder.cs
- objectresult_tresulttype.cs
- DrawingAttributesDefaultValueFactory.cs
- LeftCellWrapper.cs
- UriTemplateEquivalenceComparer.cs
- FamilyTypefaceCollection.cs
- MimeMapping.cs
- InputReportEventArgs.cs
- Error.cs
- StylusTouchDevice.cs
- SplitterEvent.cs
- DataGridViewCellStyleChangedEventArgs.cs
- NameValueConfigurationElement.cs
- ListViewDeleteEventArgs.cs
- CodeAttachEventStatement.cs
- BitmapDownload.cs
- ComboBoxRenderer.cs
- RadioButton.cs
- DeploymentSectionCache.cs
- XsltArgumentList.cs
- WorkflowApplicationAbortedEventArgs.cs
- DrawListViewColumnHeaderEventArgs.cs
- WebPartDescriptionCollection.cs
- EventSinkActivityDesigner.cs
- XmlDownloadManager.cs
- WorkflowPersistenceService.cs
- ResourcesChangeInfo.cs
- TypeDelegator.cs
- METAHEADER.cs
- DataGridViewRowHeaderCell.cs
- ProcessMonitor.cs
- ActiveDocumentEvent.cs
- StreamReader.cs
- ColorConverter.cs
- EntityDataSourceEntitySetNameItem.cs
- StylusButtonCollection.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- ScriptDescriptor.cs
- DataSourceCacheDurationConverter.cs