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
- CodeNamespaceCollection.cs
- ImageField.cs
- IpcServerChannel.cs
- PropertyGrid.cs
- OdbcFactory.cs
- SqlMethodCallConverter.cs
- NativeCompoundFileAPIs.cs
- StdRegProviderWrapper.cs
- SuppressMergeCheckAttribute.cs
- Visual3DCollection.cs
- DataGridItemCollection.cs
- Repeater.cs
- FixedTextContainer.cs
- Configuration.cs
- FixedSOMSemanticBox.cs
- EpmTargetTree.cs
- ReplyChannelBinder.cs
- HttpListenerRequestTraceRecord.cs
- HttpVersion.cs
- CustomAttribute.cs
- TTSVoice.cs
- StringUtil.cs
- DirectoryObjectSecurity.cs
- CheckBoxStandardAdapter.cs
- MultiView.cs
- ParameterSubsegment.cs
- ThicknessKeyFrameCollection.cs
- SoapEnumAttribute.cs
- EventLogPermissionEntryCollection.cs
- VBCodeProvider.cs
- BackgroundFormatInfo.cs
- TriggerCollection.cs
- XmlValueConverter.cs
- _CookieModule.cs
- OwnerDrawPropertyBag.cs
- Currency.cs
- HttpListenerException.cs
- DetailsViewUpdatedEventArgs.cs
- UnsafeNativeMethods.cs
- CompiledQuery.cs
- uribuilder.cs
- ExtensibleClassFactory.cs
- MetadataArtifactLoaderFile.cs
- TypeReference.cs
- LineServicesRun.cs
- KeyEvent.cs
- IPEndPoint.cs
- RuleSettings.cs
- ProviderConnectionPoint.cs
- ClientApiGenerator.cs
- XmlNamespaceMapping.cs
- dbenumerator.cs
- AliasedSlot.cs
- HtmlToClrEventProxy.cs
- SafeSecurityHelper.cs
- DateTimeValueSerializerContext.cs
- AnnotationHighlightLayer.cs
- ColorMap.cs
- DocumentXPathNavigator.cs
- ProfilePropertySettings.cs
- RequestCachingSection.cs
- PagedDataSource.cs
- CacheHelper.cs
- VSWCFServiceContractGenerator.cs
- __Filters.cs
- Constraint.cs
- CallbackTimeoutsElement.cs
- SectionUpdates.cs
- DataBoundControlAdapter.cs
- PlatformCulture.cs
- TemplateXamlParser.cs
- Font.cs
- GregorianCalendar.cs
- PageCache.cs
- Set.cs
- TemplateBuilder.cs
- Int64AnimationUsingKeyFrames.cs
- XmlSchemaDocumentation.cs
- DBSchemaRow.cs
- coordinatorscratchpad.cs
- HashHelper.cs
- _BaseOverlappedAsyncResult.cs
- TheQuery.cs
- SharedHttpsTransportManager.cs
- DesignTimeVisibleAttribute.cs
- OleDbParameterCollection.cs
- prompt.cs
- TransformPattern.cs
- BindingContext.cs
- NameValueConfigurationElement.cs
- DoubleCollectionConverter.cs
- TransformGroup.cs
- DefaultValueMapping.cs
- SupportedAddressingMode.cs
- InkCanvas.cs
- OdbcConnection.cs
- HttpInputStream.cs
- DecimalStorage.cs
- HttpResponse.cs
- NativeMethods.cs