Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / XmlTypeAttribute.cs / 1 / 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. // 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
- NameObjectCollectionBase.cs
- Point3DConverter.cs
- ProfilePropertySettings.cs
- WasHttpModulesInstallComponent.cs
- GenerateDerivedKeyRequest.cs
- StatusBarItem.cs
- PagesSection.cs
- XmlUnspecifiedAttribute.cs
- HexParser.cs
- cookiecontainer.cs
- ContentFilePart.cs
- DropSourceBehavior.cs
- IncrementalReadDecoders.cs
- RemotingServices.cs
- OdbcEnvironment.cs
- XmlSignatureProperties.cs
- UTF7Encoding.cs
- ProgressPage.cs
- NamespaceQuery.cs
- PrintEvent.cs
- FixedDocumentPaginator.cs
- Schema.cs
- DataGridViewTopRowAccessibleObject.cs
- UIElementIsland.cs
- FormViewPagerRow.cs
- SecUtil.cs
- XmlMemberMapping.cs
- ReflectEventDescriptor.cs
- Rect.cs
- altserialization.cs
- ContainerAction.cs
- ToolBarOverflowPanel.cs
- Context.cs
- ParameterCollection.cs
- BaseResourcesBuildProvider.cs
- PhysicalAddress.cs
- UpdateCommand.cs
- NotificationContext.cs
- Environment.cs
- TargetControlTypeAttribute.cs
- ToolConsole.cs
- FunctionParameter.cs
- IdentityManager.cs
- ContentType.cs
- UserControl.cs
- FormsAuthenticationUserCollection.cs
- DbExpressionVisitor_TResultType.cs
- GridViewPageEventArgs.cs
- Resources.Designer.cs
- TypeUnloadedException.cs
- SQLChars.cs
- TextSelectionHelper.cs
- DrawingGroup.cs
- ResourceIDHelper.cs
- Point3DIndependentAnimationStorage.cs
- CompoundFileStreamReference.cs
- Calendar.cs
- PreservationFileWriter.cs
- InternalReceiveMessage.cs
- ToolTipService.cs
- StrongNameIdentityPermission.cs
- ZipIORawDataFileBlock.cs
- SqlXmlStorage.cs
- SymLanguageVendor.cs
- AutomationAttributeInfo.cs
- KeyEventArgs.cs
- ToolStripDropDown.cs
- SelectionRange.cs
- ErrorFormatterPage.cs
- AssociatedControlConverter.cs
- XmlDataProvider.cs
- ObjRef.cs
- ToolStripPanelCell.cs
- RtfToXamlReader.cs
- ConfigurationManagerInternalFactory.cs
- DocumentXmlWriter.cs
- SafeArchiveContext.cs
- XmlSchemaInfo.cs
- JumpList.cs
- OverlappedAsyncResult.cs
- Viewport3DAutomationPeer.cs
- EventHandlerList.cs
- NeutralResourcesLanguageAttribute.cs
- ClearTypeHintValidation.cs
- SafeSecurityHelper.cs
- WaitHandleCannotBeOpenedException.cs
- StringKeyFrameCollection.cs
- RIPEMD160Managed.cs
- XmlSchemaComplexType.cs
- CodeAttachEventStatement.cs
- VectorCollection.cs
- ToolStripSettings.cs
- DataGridItemEventArgs.cs
- WebPartConnectionsCloseVerb.cs
- EventDescriptor.cs
- LockRecursionException.cs
- Int64AnimationBase.cs
- EventLogWatcher.cs
- MonthChangedEventArgs.cs
- RepeatInfo.cs