Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / XmlTypeAttribute.cs / 1305376 / XmlTypeAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System; ////// /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Struct)] public class XmlTypeAttribute : System.Attribute { bool includeInSchema = true; bool anonymousType; string ns; string typeName; ///[To be supplied.] ////// /// public XmlTypeAttribute() { } ///[To be supplied.] ////// /// public XmlTypeAttribute(string typeName) { this.typeName = typeName; } ///[To be supplied.] ////// /// public bool AnonymousType { get { return anonymousType; } set { anonymousType = value; } } ///[To be supplied.] ////// /// public bool IncludeInSchema { get { return includeInSchema; } set { includeInSchema = value; } } ///[To be supplied.] ////// /// public string TypeName { get { return typeName == null ? string.Empty : typeName; } set { typeName = value; } } ///[To be supplied.] ////// /// public string Namespace { get { return ns; } set { ns = 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
- OptimalBreakSession.cs
- SRDisplayNameAttribute.cs
- DefaultValueTypeConverter.cs
- ServiceModelConfigurationElementCollection.cs
- SmtpAuthenticationManager.cs
- XmlSerializationGeneratedCode.cs
- TextElementCollection.cs
- DataTableMapping.cs
- AppDomainUnloadedException.cs
- ContentOperations.cs
- SizeValueSerializer.cs
- Oci.cs
- SoapInteropTypes.cs
- CommandHelper.cs
- WebPartConnectionsConfigureVerb.cs
- Vector3DCollectionConverter.cs
- FirstMatchCodeGroup.cs
- mactripleDES.cs
- IdentityValidationException.cs
- BitArray.cs
- DeploymentExceptionMapper.cs
- FixedTextBuilder.cs
- VSWCFServiceContractGenerator.cs
- ToolStripSeparatorRenderEventArgs.cs
- CharAnimationUsingKeyFrames.cs
- SubMenuStyleCollection.cs
- TrustSection.cs
- FileIOPermission.cs
- RuleSettings.cs
- SQLSingle.cs
- ReadOnlyCollection.cs
- TableAdapterManagerMethodGenerator.cs
- CodeMemberEvent.cs
- KeyGestureValueSerializer.cs
- ButtonBaseAutomationPeer.cs
- Button.cs
- UIntPtr.cs
- SafeLocalAllocation.cs
- Properties.cs
- ContentPlaceHolderDesigner.cs
- ImpersonationContext.cs
- RtfNavigator.cs
- EmptyQuery.cs
- ResourceExpressionBuilder.cs
- ItemsPresenter.cs
- ListControl.cs
- UpDownBase.cs
- ServerType.cs
- KeyNotFoundException.cs
- AuthorizationSection.cs
- AndAlso.cs
- ContextMenuStripGroupCollection.cs
- OdbcEnvironment.cs
- Rule.cs
- SqlProviderServices.cs
- StylusEditingBehavior.cs
- Int32Animation.cs
- ObjectContext.cs
- TreeView.cs
- EventLogPermissionAttribute.cs
- FontWeight.cs
- LinkArea.cs
- PhysicalFontFamily.cs
- DefaultTextStoreTextComposition.cs
- DictionarySurrogate.cs
- CommonRemoteMemoryBlock.cs
- EntityDataSourceViewSchema.cs
- PropertyKey.cs
- EventToken.cs
- InternalControlCollection.cs
- Connector.xaml.cs
- DetailsViewInsertEventArgs.cs
- AutomationElement.cs
- DNS.cs
- OpenCollectionAsyncResult.cs
- StrongNameKeyPair.cs
- SerTrace.cs
- TimeEnumHelper.cs
- AQNBuilder.cs
- RealizationContext.cs
- TraceContextRecord.cs
- DispatchChannelSink.cs
- LogStore.cs
- ComplexType.cs
- BitmapScalingModeValidation.cs
- BindableTemplateBuilder.cs
- DelimitedListTraceListener.cs
- ClockGroup.cs
- OracleLob.cs
- StringBuilder.cs
- HiddenFieldPageStatePersister.cs
- GlyphCollection.cs
- BuildProviderCollection.cs
- DataPagerFieldCommandEventArgs.cs
- IpcChannelHelper.cs
- RadioButton.cs
- datacache.cs
- AdapterDictionary.cs
- AudioLevelUpdatedEventArgs.cs
- XmlSchemaParticle.cs