Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / SoapTypeAttribute.cs / 1 / 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. // 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
- FormsAuthenticationEventArgs.cs
- List.cs
- _FtpDataStream.cs
- CryptoConfig.cs
- InteropEnvironment.cs
- RegisteredExpandoAttribute.cs
- TransformCollection.cs
- SoapServerProtocol.cs
- HtmlFormWrapper.cs
- securestring.cs
- IntegerValidator.cs
- UriParserTemplates.cs
- StreamUpdate.cs
- TemplatePagerField.cs
- HiddenFieldDesigner.cs
- Dictionary.cs
- CodeTypeDeclaration.cs
- WindowsListViewSubItem.cs
- HashMembershipCondition.cs
- SafeNativeMethods.cs
- SqlFactory.cs
- ReflectPropertyDescriptor.cs
- ConsoleCancelEventArgs.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- SiteMapPath.cs
- DataServiceQueryOfT.cs
- ApplicationGesture.cs
- CustomAttributeFormatException.cs
- PropertyInfoSet.cs
- EventLogPermissionHolder.cs
- XmlSchemaImport.cs
- designeractionlistschangedeventargs.cs
- Int32AnimationUsingKeyFrames.cs
- SecUtil.cs
- AllMembershipCondition.cs
- ListControlStringCollectionEditor.cs
- SettingsPropertyValue.cs
- SqlTrackingQuery.cs
- MsmqInputChannelBase.cs
- BoundPropertyEntry.cs
- HtmlTernaryTree.cs
- HostingEnvironmentException.cs
- arabicshape.cs
- Switch.cs
- CodeRemoveEventStatement.cs
- URI.cs
- RadioButtonStandardAdapter.cs
- DeleteCardRequest.cs
- DataGridTablesFactory.cs
- SizeChangedEventArgs.cs
- MethodAccessException.cs
- FaultReason.cs
- NativeMethods.cs
- ObjectDataSourceChooseTypePanel.cs
- CounterCreationDataCollection.cs
- RayMeshGeometry3DHitTestResult.cs
- PixelFormatConverter.cs
- Animatable.cs
- FutureFactory.cs
- ConfigurationProperty.cs
- _ChunkParse.cs
- Visual3D.cs
- GatewayIPAddressInformationCollection.cs
- RSAPKCS1SignatureDeformatter.cs
- CoreSwitches.cs
- FlowLayoutPanel.cs
- AssemblyNameProxy.cs
- DbProviderSpecificTypePropertyAttribute.cs
- BinaryMethodMessage.cs
- ParameterCollection.cs
- DbConnectionPool.cs
- PackWebRequestFactory.cs
- MediaElementAutomationPeer.cs
- ToolZoneDesigner.cs
- AnonymousIdentificationSection.cs
- DataViewManager.cs
- InteropTrackingRecord.cs
- XmlAttributeCache.cs
- DataGridViewRowConverter.cs
- UInt64.cs
- FloaterParagraph.cs
- Grant.cs
- BaseCollection.cs
- Rotation3DAnimationBase.cs
- UserValidatedEventArgs.cs
- SqlServices.cs
- ConfigurationPropertyAttribute.cs
- MethodBuilderInstantiation.cs
- DrawingGroup.cs
- WSSecurityOneDotOneSendSecurityHeader.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- VScrollProperties.cs
- RuntimeConfig.cs
- DESCryptoServiceProvider.cs
- CodeIdentifier.cs
- URLString.cs
- UserMapPath.cs
- DetailsViewRow.cs
- MemoryStream.cs
- ToolStripGripRenderEventArgs.cs