Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / Serialization / XmlArrayAttribute.cs / 1 / XmlArrayAttribute.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=false)] public class XmlArrayAttribute : System.Attribute { string elementName; string ns; bool nullable; XmlSchemaForm form = XmlSchemaForm.None; int order = -1; ///[To be supplied.] ////// /// public XmlArrayAttribute() { } ///[To be supplied.] ////// /// public XmlArrayAttribute(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 bool IsNullable { get { return nullable; } set { nullable = value; } } ///[To be supplied.] ////// /// public XmlSchemaForm Form { get { return form; } set { form = value; } } ///[To be supplied.] ////// /// public int Order { get { return order; } set { if (value < 0) throw new ArgumentException(Res.GetString(Res.XmlDisallowNegativeValues), "Order"); order = 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=false)] public class XmlArrayAttribute : System.Attribute { string elementName; string ns; bool nullable; XmlSchemaForm form = XmlSchemaForm.None; int order = -1; ///[To be supplied.] ////// /// public XmlArrayAttribute() { } ///[To be supplied.] ////// /// public XmlArrayAttribute(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 bool IsNullable { get { return nullable; } set { nullable = value; } } ///[To be supplied.] ////// /// public XmlSchemaForm Form { get { return form; } set { form = value; } } ///[To be supplied.] ////// /// public int Order { get { return order; } set { if (value < 0) throw new ArgumentException(Res.GetString(Res.XmlDisallowNegativeValues), "Order"); order = 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
- VersionedStream.cs
- XmlSchemaExporter.cs
- ActivityStatusChangeEventArgs.cs
- PeerChannelListener.cs
- basecomparevalidator.cs
- followingsibling.cs
- DBCommandBuilder.cs
- DoubleAnimationUsingPath.cs
- SqlServices.cs
- MultipleViewPattern.cs
- ArgIterator.cs
- Sequence.cs
- DrawingImage.cs
- FileUtil.cs
- XmlSignatureProperties.cs
- Sql8ExpressionRewriter.cs
- TextWriterTraceListener.cs
- WinInetCache.cs
- RequestCache.cs
- ExternalDataExchangeClient.cs
- CoreChannel.cs
- XLinq.cs
- WebResourceAttribute.cs
- DataViewSettingCollection.cs
- IsolatedStorageFile.cs
- ListViewSortEventArgs.cs
- DrawListViewSubItemEventArgs.cs
- PartitionerQueryOperator.cs
- WebPartCatalogCloseVerb.cs
- CellConstantDomain.cs
- securitycriticaldata.cs
- ErrorFormatter.cs
- CharUnicodeInfo.cs
- VBIdentifierNameEditor.cs
- WebPartUtil.cs
- HtmlControl.cs
- MutexSecurity.cs
- CalendarDay.cs
- LinkArea.cs
- DataSourceProvider.cs
- PeerInvitationResponse.cs
- WebZone.cs
- __Filters.cs
- COM2ComponentEditor.cs
- MergablePropertyAttribute.cs
- ClrProviderManifest.cs
- DefaultBinder.cs
- QuadraticBezierSegment.cs
- SQLSingle.cs
- SqlCharStream.cs
- CompilerCollection.cs
- MenuEventArgs.cs
- ResourceExpressionEditor.cs
- UniformGrid.cs
- DataBinder.cs
- TypeValidationEventArgs.cs
- ModulesEntry.cs
- PageThemeCodeDomTreeGenerator.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- _ContextAwareResult.cs
- ArrayTypeMismatchException.cs
- Formatter.cs
- BulletDecorator.cs
- SolidColorBrush.cs
- ClockGroup.cs
- ComponentResourceKeyConverter.cs
- PathSegmentCollection.cs
- DataRelation.cs
- ImageIndexConverter.cs
- PageFunction.cs
- WebPartAuthorizationEventArgs.cs
- XmlWhitespace.cs
- AssemblyFilter.cs
- DbConnectionPool.cs
- StylusPointPropertyId.cs
- PaintEvent.cs
- MarginsConverter.cs
- SecurityMessageProperty.cs
- Converter.cs
- ConsumerConnectionPoint.cs
- SQLString.cs
- SchemaTableOptionalColumn.cs
- Util.cs
- ProbeMatches11.cs
- PieceNameHelper.cs
- DateTimeSerializationSection.cs
- TextSpan.cs
- Attachment.cs
- userdatakeys.cs
- GB18030Encoding.cs
- PageAsyncTaskManager.cs
- AlphabeticalEnumConverter.cs
- Classification.cs
- CommonDialog.cs
- MimeWriter.cs
- InputScopeManager.cs
- _NegotiateClient.cs
- OciEnlistContext.cs
- Int32RectConverter.cs
- ConversionContext.cs