Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / SoapTypeAttribute.cs / 1305376 / SoapTypeAttribute.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 SoapTypeAttribute : System.Attribute { string ns; string typeName; bool includeInSchema = true; ///[To be supplied.] ////// /// public SoapTypeAttribute() { } ///[To be supplied.] ////// /// public SoapTypeAttribute(string typeName) { this.typeName = typeName; } ///[To be supplied.] ////// /// public SoapTypeAttribute(string typeName, string ns) { this.typeName = typeName; this.ns = ns; } ///[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
- RecordBuilder.cs
- IdentityNotMappedException.cs
- XmlSecureResolver.cs
- Atom10FeedFormatter.cs
- SignatureSummaryDialog.cs
- ListViewPagedDataSource.cs
- TreeIterators.cs
- Predicate.cs
- HtmlTitle.cs
- DeferredTextReference.cs
- InstanceHandleReference.cs
- AvtEvent.cs
- DotExpr.cs
- BuildManager.cs
- ApplicationSecurityManager.cs
- DependencyObjectPropertyDescriptor.cs
- ControllableStoryboardAction.cs
- CounterCreationData.cs
- columnmapfactory.cs
- UriParserTemplates.cs
- JoinGraph.cs
- CompositeFontFamily.cs
- StreamUpgradeProvider.cs
- LinkedResourceCollection.cs
- SQLStringStorage.cs
- ObjectDataSourceChooseMethodsPanel.cs
- ObjectStateFormatter.cs
- WorkflowViewElement.cs
- Point3DAnimationUsingKeyFrames.cs
- BufferedResponseStream.cs
- CommandConverter.cs
- GifBitmapDecoder.cs
- NavigationWindowAutomationPeer.cs
- DataObjectMethodAttribute.cs
- SqlCacheDependency.cs
- SmiXetterAccessMap.cs
- FontFamilyConverter.cs
- DoubleConverter.cs
- WebPartEditorApplyVerb.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- ProfileGroupSettingsCollection.cs
- SelectionGlyphBase.cs
- ProjectionPruner.cs
- ViewSimplifier.cs
- DefaultClaimSet.cs
- RubberbandSelector.cs
- SizeAnimationBase.cs
- NextPreviousPagerField.cs
- _SecureChannel.cs
- BuildProviderCollection.cs
- behaviorssection.cs
- WebPartConnectionsEventArgs.cs
- RequestNavigateEventArgs.cs
- SchemaImporterExtension.cs
- TextFormatterImp.cs
- DateTimeFormat.cs
- DataGridItemEventArgs.cs
- StringSource.cs
- CheckBox.cs
- CompiledRegexRunnerFactory.cs
- DSASignatureFormatter.cs
- MarshalByRefObject.cs
- PlainXmlWriter.cs
- FileEnumerator.cs
- StylusPlugin.cs
- Attributes.cs
- Queue.cs
- GraphicsState.cs
- JsonFormatGeneratorStatics.cs
- ContentElement.cs
- CustomWebEventKey.cs
- XmlSignificantWhitespace.cs
- DbConnectionStringCommon.cs
- UDPClient.cs
- validationstate.cs
- TextTreeText.cs
- MetafileHeader.cs
- SqlDataSourceCache.cs
- HelpPage.cs
- ConfigurationHandlersInstallComponent.cs
- XmlWellformedWriterHelpers.cs
- EntityCollectionChangedParams.cs
- SpellerError.cs
- RadioButtonAutomationPeer.cs
- ProjectionPathBuilder.cs
- BaseProcessor.cs
- QuaternionAnimation.cs
- MimeTypeMapper.cs
- Range.cs
- TextFormatterImp.cs
- IndexerNameAttribute.cs
- InputElement.cs
- TransformValueSerializer.cs
- ContainerControl.cs
- UniqueEventHelper.cs
- WindowsGraphicsWrapper.cs
- LogSwitch.cs
- DateTimeStorage.cs
- GridView.cs
- KeyToListMap.cs