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
- GcSettings.cs
- DataGridViewLayoutData.cs
- ClientRuntimeConfig.cs
- XmlSerializer.cs
- StylusPoint.cs
- PrintDialog.cs
- MaskDescriptor.cs
- PixelFormat.cs
- CompilerWrapper.cs
- SecureUICommand.cs
- NCryptSafeHandles.cs
- SQLDecimalStorage.cs
- CompilerWrapper.cs
- UmAlQuraCalendar.cs
- QilChoice.cs
- ListItem.cs
- PTManager.cs
- SimpleRecyclingCache.cs
- ThreadSafeList.cs
- CacheMemory.cs
- WindowsListViewSubItem.cs
- BuildResultCache.cs
- DataObject.cs
- EnumDataContract.cs
- SamlSecurityToken.cs
- PropertyGridView.cs
- EventWaitHandle.cs
- DifferencingCollection.cs
- XPathAncestorIterator.cs
- WmlSelectionListAdapter.cs
- COSERVERINFO.cs
- Int32CollectionValueSerializer.cs
- ProvidePropertyAttribute.cs
- TypeConverterHelper.cs
- ColorContextHelper.cs
- MyContact.cs
- ColumnClickEvent.cs
- CollectionChangeEventArgs.cs
- CheckableControlBaseAdapter.cs
- ValueUtilsSmi.cs
- Point3DAnimationUsingKeyFrames.cs
- XpsImage.cs
- HierarchicalDataBoundControl.cs
- XamlInt32CollectionSerializer.cs
- ProfileProvider.cs
- ReadWriteSpinLock.cs
- CertificateReferenceElement.cs
- IdentityModelDictionary.cs
- DescendentsWalkerBase.cs
- ProtocolsConfiguration.cs
- WebPartUserCapability.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- SchemaManager.cs
- TemplateParser.cs
- RootBrowserWindowProxy.cs
- DataViewSettingCollection.cs
- IconConverter.cs
- CodeTryCatchFinallyStatement.cs
- HtmlUtf8RawTextWriter.cs
- UrlPath.cs
- OverloadGroupAttribute.cs
- Directory.cs
- DataRecordInternal.cs
- CatalogPartDesigner.cs
- WebZone.cs
- TextBoxDesigner.cs
- CodeTypeDeclarationCollection.cs
- SecurityState.cs
- DataSysAttribute.cs
- InputLanguageCollection.cs
- CodeMemberField.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- RemoteWebConfigurationHost.cs
- DodSequenceMerge.cs
- ArraySegment.cs
- ToolStrip.cs
- SqlCacheDependencySection.cs
- ListViewItem.cs
- TdsRecordBufferSetter.cs
- ExecutionEngineException.cs
- UInt64Storage.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- FunctionParameter.cs
- HelpEvent.cs
- NavigateUrlConverter.cs
- SendingRequestEventArgs.cs
- SecureConversationDriver.cs
- SelectionHighlightInfo.cs
- Helpers.cs
- HttpSocketManager.cs
- XmlLanguageConverter.cs
- ColorAnimationUsingKeyFrames.cs
- PolicyStatement.cs
- TableLayoutSettingsTypeConverter.cs
- DataListItemEventArgs.cs
- SafeLibraryHandle.cs
- DataGridViewRowsAddedEventArgs.cs
- AuthenticationSection.cs
- MouseGestureValueSerializer.cs
- TextLineBreak.cs