Code:
/ FX-1434 / FX-1434 / 1.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
- PropertyMetadata.cs
- RegexCapture.cs
- MailAddress.cs
- EventSinkActivity.cs
- ParsedAttributeCollection.cs
- WebPartCatalogAddVerb.cs
- ADMembershipUser.cs
- IPHostEntry.cs
- FirstMatchCodeGroup.cs
- HatchBrush.cs
- SafeWaitHandle.cs
- XamlFigureLengthSerializer.cs
- RoleService.cs
- Int32AnimationUsingKeyFrames.cs
- Slider.cs
- ReadWriteObjectLock.cs
- SynchronizedInputAdaptor.cs
- DataGridViewEditingControlShowingEventArgs.cs
- CryptoApi.cs
- DocumentReferenceCollection.cs
- XmlWellformedWriter.cs
- EntityDataSourceWrapper.cs
- ManagementClass.cs
- formatstringdialog.cs
- FieldAccessException.cs
- MenuItemStyle.cs
- LazyLoadBehavior.cs
- remotingproxy.cs
- TextDpi.cs
- Button.cs
- Single.cs
- QuaternionAnimation.cs
- CTreeGenerator.cs
- ListBoxChrome.cs
- XmlSchemaIdentityConstraint.cs
- Unit.cs
- DataBindingValueUIHandler.cs
- XamlParser.cs
- GenericIdentity.cs
- KeyValuePair.cs
- FlowDocument.cs
- RuntimeConfig.cs
- ExternalCalls.cs
- BreakRecordTable.cs
- HwndSourceKeyboardInputSite.cs
- DataServiceStreamProviderWrapper.cs
- DetailsViewDeleteEventArgs.cs
- TableLayout.cs
- DSASignatureFormatter.cs
- RemoteArgument.cs
- RowParagraph.cs
- PathSegmentCollection.cs
- MulticastDelegate.cs
- CallSiteBinder.cs
- ShaperBuffers.cs
- ServiceObjectContainer.cs
- _SingleItemRequestCache.cs
- TextClipboardData.cs
- SimpleTypeResolver.cs
- TableCellCollection.cs
- Vector3DKeyFrameCollection.cs
- WeakReferenceKey.cs
- Cursor.cs
- util.cs
- PathSegment.cs
- GlobalAllocSafeHandle.cs
- SimpleHandlerFactory.cs
- SiteMapPath.cs
- FolderBrowserDialog.cs
- HierarchicalDataTemplate.cs
- WindowsRebar.cs
- ClientTargetCollection.cs
- newinstructionaction.cs
- ChtmlPhoneCallAdapter.cs
- ResourceWriter.cs
- securitycriticaldata.cs
- TokenFactoryFactory.cs
- OciLobLocator.cs
- ScriptingAuthenticationServiceSection.cs
- CharEnumerator.cs
- CreateParams.cs
- NavigationService.cs
- ColumnBinding.cs
- DocumentViewerHelper.cs
- ObfuscateAssemblyAttribute.cs
- OutputScopeManager.cs
- Assert.cs
- ListViewItemMouseHoverEvent.cs
- PKCS1MaskGenerationMethod.cs
- DbSourceParameterCollection.cs
- ModelItemCollection.cs
- TemplateField.cs
- DefaultTextStoreTextComposition.cs
- SizeFConverter.cs
- PropertyDescriptorComparer.cs
- PropertyTab.cs
- SupportedAddressingMode.cs
- WebPartCollection.cs
- FrameworkContentElementAutomationPeer.cs
- LinkClickEvent.cs