Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / XmlElementAttribute.cs / 1 / XmlElementAttribute.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 XmlElementAttribute : System.Attribute { string elementName; Type type; string ns; string dataType; bool nullable; bool nullableSpecified; XmlSchemaForm form = XmlSchemaForm.None; int order = -1; ///[To be supplied.] ////// /// public XmlElementAttribute() { } ///[To be supplied.] ////// /// public XmlElementAttribute(string elementName) { this.elementName = elementName; } ///[To be supplied.] ////// /// public XmlElementAttribute(Type type) { this.type = type; } ///[To be supplied.] ////// /// public XmlElementAttribute(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 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; } } ///[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. // 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
- PermissionSetEnumerator.cs
- DrawingCollection.cs
- Dictionary.cs
- OledbConnectionStringbuilder.cs
- ContentPresenter.cs
- DBCommandBuilder.cs
- EntityDataSourceSelectedEventArgs.cs
- TextServicesDisplayAttribute.cs
- newinstructionaction.cs
- DocumentPageViewAutomationPeer.cs
- RsaSecurityToken.cs
- XmlNamespaceManager.cs
- Floater.cs
- QueueAccessMode.cs
- NavigationWindow.cs
- odbcmetadatacolumnnames.cs
- RowToFieldTransformer.cs
- Page.cs
- EditorZoneBase.cs
- ConfigurationSettings.cs
- PropagatorResult.cs
- FramingEncoders.cs
- WebPartDescription.cs
- Container.cs
- ValidationEventArgs.cs
- QuotedPrintableStream.cs
- cookie.cs
- ContractSearchPattern.cs
- ProfileInfo.cs
- configsystem.cs
- ResourceSet.cs
- ApplicationServiceManager.cs
- InternalBase.cs
- HyperLinkColumn.cs
- DoubleIndependentAnimationStorage.cs
- InvalidOperationException.cs
- OrderedDictionaryStateHelper.cs
- HtmlInputControl.cs
- SchemaSetCompiler.cs
- RepeatButton.cs
- UserCancellationException.cs
- MulticastOption.cs
- Clock.cs
- EventSinkActivity.cs
- HtmlInputText.cs
- HwndSubclass.cs
- SystemMulticastIPAddressInformation.cs
- Assign.cs
- RoleManagerModule.cs
- SharedDp.cs
- XXXInfos.cs
- TcpClientCredentialType.cs
- AssemblySettingAttributes.cs
- Rect.cs
- NonParentingControl.cs
- WindowsEditBoxRange.cs
- TypedTableGenerator.cs
- GridItemPattern.cs
- ObjectListComponentEditor.cs
- Freezable.cs
- DataGrid.cs
- BrowserDefinition.cs
- QueryContinueDragEvent.cs
- ListenerConfig.cs
- TextTreeUndoUnit.cs
- TextEmbeddedObject.cs
- SessionPageStatePersister.cs
- InternalPolicyElement.cs
- ScriptControlDescriptor.cs
- HttpResponseInternalWrapper.cs
- _ProxyRegBlob.cs
- GroupItem.cs
- UserNameServiceElement.cs
- DataSourceViewSchemaConverter.cs
- ItemsPanelTemplate.cs
- DockPattern.cs
- PointCollectionConverter.cs
- KeyValueSerializer.cs
- DisplayNameAttribute.cs
- AssemblyLoader.cs
- DetailsViewModeEventArgs.cs
- HwndMouseInputProvider.cs
- PromptEventArgs.cs
- EndOfStreamException.cs
- DaylightTime.cs
- QuadraticBezierSegment.cs
- ReflectPropertyDescriptor.cs
- Unit.cs
- EditorPartChrome.cs
- BidOverLoads.cs
- PersonalizationProviderHelper.cs
- ScrollProperties.cs
- XmlObjectSerializer.cs
- InvalidCastException.cs
- UpdatePanelTriggerCollection.cs
- IndexOutOfRangeException.cs
- MemberAssignmentAnalysis.cs
- SelectingProviderEventArgs.cs
- TextContainer.cs
- QueueProcessor.cs