Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- GradientSpreadMethodValidation.cs
- WorkflowValidationFailedException.cs
- WorkflowInstance.cs
- OrderedDictionary.cs
- CompositionAdorner.cs
- MarkupObject.cs
- BitSet.cs
- StreamResourceInfo.cs
- XmlTextEncoder.cs
- MobileControlBuilder.cs
- SuppressIldasmAttribute.cs
- WindowShowOrOpenTracker.cs
- ExecutionContext.cs
- WinEventWrap.cs
- DataServiceContext.cs
- XmlBaseReader.cs
- FloatSumAggregationOperator.cs
- SamlSecurityToken.cs
- EventLogPermissionEntry.cs
- ChangeBlockUndoRecord.cs
- Match.cs
- NonBatchDirectoryCompiler.cs
- ParameterInfo.cs
- VectorConverter.cs
- Win32Native.cs
- TextPatternIdentifiers.cs
- MatrixAnimationBase.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- FileVersionInfo.cs
- DiffuseMaterial.cs
- AsyncStreamReader.cs
- IntAverageAggregationOperator.cs
- JsonWriterDelegator.cs
- LexicalChunk.cs
- X509CertificateTokenFactoryCredential.cs
- Assert.cs
- ContainsRowNumberChecker.cs
- ActivatableWorkflowsQueryResult.cs
- SoapTypeAttribute.cs
- DataServiceResponse.cs
- MsmqMessage.cs
- OracleBFile.cs
- Style.cs
- TemplateBindingExpression.cs
- InstanceDescriptor.cs
- XslTransform.cs
- EventRoute.cs
- SHA1Managed.cs
- ConnectionManagementSection.cs
- ConsumerConnectionPoint.cs
- UserMapPath.cs
- BuildProviderCollection.cs
- AmbientLight.cs
- EntityKey.cs
- CustomPeerResolverService.cs
- TypeGeneratedEventArgs.cs
- JsonStringDataContract.cs
- LayoutManager.cs
- InheritanceService.cs
- HtmlInputPassword.cs
- BCryptSafeHandles.cs
- PieceDirectory.cs
- ForeignKeyConstraint.cs
- ProcessThreadCollection.cs
- AutoGeneratedFieldProperties.cs
- XmlMapping.cs
- ResourceProperty.cs
- ClientEventManager.cs
- SemanticBasicElement.cs
- FormsAuthenticationEventArgs.cs
- BorderGapMaskConverter.cs
- IndexOutOfRangeException.cs
- ScrollBar.cs
- DataService.cs
- FileClassifier.cs
- DataViewManagerListItemTypeDescriptor.cs
- SimpleApplicationHost.cs
- WhitespaceRuleReader.cs
- SolidBrush.cs
- ArgIterator.cs
- LicenseContext.cs
- GradientStopCollection.cs
- XmlAnyElementAttributes.cs
- Point3DAnimationBase.cs
- HtmlShim.cs
- TextEncodedRawTextWriter.cs
- PenContext.cs
- ComponentRenameEvent.cs
- AppDomainGrammarProxy.cs
- GeneralTransformGroup.cs
- AssemblyHash.cs
- HttpListenerResponse.cs
- ErrorEventArgs.cs
- UrlMapping.cs
- CodeNamespaceImport.cs
- SqlProfileProvider.cs
- WebBrowserSiteBase.cs
- LicFileLicenseProvider.cs
- DocumentApplicationDocumentViewer.cs
- DictionarySectionHandler.cs