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 / 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. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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
- SmtpFailedRecipientsException.cs
- WebPartTransformer.cs
- PersistenceTypeAttribute.cs
- SqlUtil.cs
- HttpListenerContext.cs
- WorkflowExecutor.cs
- _LocalDataStore.cs
- RegistryKey.cs
- SoapClientProtocol.cs
- Color.cs
- TextLine.cs
- BinaryUtilClasses.cs
- Trace.cs
- PropertyEmitter.cs
- DataTablePropertyDescriptor.cs
- BaseCAMarshaler.cs
- SplitterPanel.cs
- IncrementalCompileAnalyzer.cs
- TreeNodeBindingCollection.cs
- DuplicateWaitObjectException.cs
- Visual3D.cs
- SQLBoolean.cs
- FormViewUpdatedEventArgs.cs
- ParagraphResult.cs
- ListView.cs
- CommandLineParser.cs
- DateTimeUtil.cs
- QilDataSource.cs
- DrawToolTipEventArgs.cs
- httpserverutility.cs
- ToolStripDropDownClosedEventArgs.cs
- ColorDialog.cs
- AddressAccessDeniedException.cs
- DataRecordInfo.cs
- ToolStripStatusLabel.cs
- HtmlPhoneCallAdapter.cs
- ScrollViewer.cs
- ControlIdConverter.cs
- LineBreak.cs
- XmlHierarchyData.cs
- XamlSerializationHelper.cs
- SymmetricCryptoHandle.cs
- FillBehavior.cs
- NullableBoolConverter.cs
- ComponentDispatcherThread.cs
- ClientRuntimeConfig.cs
- XmlEncoding.cs
- ObjectStateFormatter.cs
- ADMembershipUser.cs
- EnvironmentPermission.cs
- Funcletizer.cs
- ConfigXmlText.cs
- StrongNamePublicKeyBlob.cs
- CompleteWizardStep.cs
- NotifyIcon.cs
- ContextBase.cs
- ChineseLunisolarCalendar.cs
- FieldDescriptor.cs
- XmlDocumentFragment.cs
- XamlPoint3DCollectionSerializer.cs
- Formatter.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ConnectionInterfaceCollection.cs
- VScrollBar.cs
- DataControlPagerLinkButton.cs
- RegionInfo.cs
- TogglePattern.cs
- BaseTemplateBuildProvider.cs
- MetadataPropertyCollection.cs
- RequestValidator.cs
- SqlReferenceCollection.cs
- SerializationInfo.cs
- ConfigurationSettings.cs
- OleServicesContext.cs
- Window.cs
- HitTestDrawingContextWalker.cs
- LineMetrics.cs
- MediaTimeline.cs
- XhtmlBasicLinkAdapter.cs
- TrackPointCollection.cs
- SR.cs
- SecondaryIndex.cs
- ContainerFilterService.cs
- DiscreteKeyFrames.cs
- RightsManagementEncryptedStream.cs
- DocumentationServerProtocol.cs
- QueryStringParameter.cs
- InputScopeAttribute.cs
- TransactionFlowAttribute.cs
- UiaCoreApi.cs
- NullableIntMinMaxAggregationOperator.cs
- TriggerActionCollection.cs
- Point3DCollectionValueSerializer.cs
- SizeAnimation.cs
- TokenBasedSet.cs
- CategoryGridEntry.cs
- CompilerGeneratedAttribute.cs
- SmiEventStream.cs
- SiteMapNodeItem.cs
- Event.cs