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
- DynamicControl.cs
- EndOfStreamException.cs
- CasesDictionary.cs
- TabItemAutomationPeer.cs
- MimeParameterWriter.cs
- LayoutEditorPart.cs
- ImageListDesigner.cs
- EntityCommand.cs
- WebReferenceOptions.cs
- SettingsPropertyIsReadOnlyException.cs
- OpenTypeCommon.cs
- ComponentResourceManager.cs
- ParserHooks.cs
- HttpCapabilitiesBase.cs
- PersistChildrenAttribute.cs
- MonthChangedEventArgs.cs
- HuffmanTree.cs
- BaseTemplateBuildProvider.cs
- RegionIterator.cs
- SqlWriter.cs
- CompilerCollection.cs
- RenderContext.cs
- ColorMap.cs
- TextWriter.cs
- ButtonPopupAdapter.cs
- PathFigureCollectionConverter.cs
- SchemaDeclBase.cs
- UntypedNullExpression.cs
- DocumentPage.cs
- ProfileServiceManager.cs
- NamespaceMapping.cs
- WebServiceParameterData.cs
- DictionaryEntry.cs
- WorkflowMarkupSerializer.cs
- HtmlInputText.cs
- Convert.cs
- PreservationFileReader.cs
- ContourSegment.cs
- TextReader.cs
- Visual3D.cs
- SHA384.cs
- AssemblyNameProxy.cs
- OleDbErrorCollection.cs
- ExpressionNode.cs
- TagPrefixCollection.cs
- NamespaceCollection.cs
- CompilationRelaxations.cs
- CompatibleComparer.cs
- MimePart.cs
- RawUIStateInputReport.cs
- Command.cs
- SQLBinary.cs
- SoapConverter.cs
- UnsafeNativeMethodsCLR.cs
- ToolStripDropDownMenu.cs
- RequestCache.cs
- RuleInfoComparer.cs
- CommandHelpers.cs
- TemplatePagerField.cs
- transactioncontext.cs
- ScriptReferenceBase.cs
- AnimatedTypeHelpers.cs
- ADMembershipProvider.cs
- XmlDownloadManager.cs
- IndentedWriter.cs
- DelayLoadType.cs
- ZipIORawDataFileBlock.cs
- CryptoConfig.cs
- GridViewDeleteEventArgs.cs
- PeerNameRegistration.cs
- ScriptServiceAttribute.cs
- XPathNodeIterator.cs
- SynchronizationContext.cs
- FlowLayoutSettings.cs
- AppearanceEditorPart.cs
- Registry.cs
- DataFormat.cs
- RegexCompilationInfo.cs
- XmlException.cs
- TableAdapterManagerGenerator.cs
- SqlCacheDependencyDatabase.cs
- XamlTreeBuilderBamlRecordWriter.cs
- Hash.cs
- CompareValidator.cs
- SpoolingTask.cs
- XmlAtomicValue.cs
- WebPartPersonalization.cs
- AssemblyBuilder.cs
- PositiveTimeSpanValidatorAttribute.cs
- XmlSerializerFormatAttribute.cs
- BodyGlyph.cs
- TcpClientChannel.cs
- StorageEntitySetMapping.cs
- Image.cs
- CategoryAttribute.cs
- SessionSymmetricMessageSecurityProtocolFactory.cs
- CodeDirectionExpression.cs
- ConstraintStruct.cs
- XmlSchemaAnyAttribute.cs
- Delegate.cs