Code:
/ FX-1434 / FX-1434 / 1.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
- Popup.cs
- WindowsListViewGroup.cs
- RequestStatusBarUpdateEventArgs.cs
- SimpleRecyclingCache.cs
- ToolStripDropTargetManager.cs
- XmlSchemaParticle.cs
- VSWCFServiceContractGenerator.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- NavigationHelper.cs
- DataGridRowClipboardEventArgs.cs
- ActiveDocumentEvent.cs
- AudienceUriMode.cs
- FontInfo.cs
- WebBrowserProgressChangedEventHandler.cs
- Exceptions.cs
- RequestQueue.cs
- ValidationError.cs
- ColumnHeader.cs
- StateMachineWorkflowDesigner.cs
- UIAgentAsyncParams.cs
- rsa.cs
- DiscreteKeyFrames.cs
- HostedNamedPipeTransportManager.cs
- CodeTypeMemberCollection.cs
- Missing.cs
- FontStretch.cs
- Action.cs
- UniqueConstraint.cs
- ConnectionStringsSection.cs
- FolderLevelBuildProvider.cs
- LinkUtilities.cs
- UpdateProgress.cs
- PerformanceCountersElement.cs
- ControlCodeDomSerializer.cs
- XmlKeywords.cs
- TreeNode.cs
- GridViewItemAutomationPeer.cs
- HtmlInputPassword.cs
- SendActivityDesignerTheme.cs
- XmlBufferReader.cs
- SegmentTree.cs
- SqlConnection.cs
- CodeExpressionCollection.cs
- AdornerDecorator.cs
- UpDownBase.cs
- ServiceInfo.cs
- GorillaCodec.cs
- SoapSchemaExporter.cs
- ResumeStoryboard.cs
- DebugInfoGenerator.cs
- SessionState.cs
- BaseHashHelper.cs
- WebPartsSection.cs
- PopupControlService.cs
- CollectionConverter.cs
- HierarchicalDataSourceControl.cs
- Substitution.cs
- ClassicBorderDecorator.cs
- ToolStripGrip.cs
- BindingRestrictions.cs
- BitmapFrameDecode.cs
- _IPv4Address.cs
- Misc.cs
- SqlTypesSchemaImporter.cs
- TypeUnloadedException.cs
- WindowsToolbar.cs
- AssemblyBuilder.cs
- WebFormsRootDesigner.cs
- IsolatedStorageFileStream.cs
- CompositeActivityMarkupSerializer.cs
- EditorPartDesigner.cs
- ExecutionContext.cs
- NotFiniteNumberException.cs
- StylusEditingBehavior.cs
- EntityModelSchemaGenerator.cs
- ColorTransform.cs
- UnsafeCollabNativeMethods.cs
- DataGridTextBoxColumn.cs
- Roles.cs
- StaticExtension.cs
- VolatileEnlistmentMultiplexing.cs
- WrappedReader.cs
- RefreshPropertiesAttribute.cs
- ConnectionConsumerAttribute.cs
- SortDescription.cs
- PipeSecurity.cs
- WindowsSidIdentity.cs
- CurrentChangedEventManager.cs
- CustomCategoryAttribute.cs
- CodeMethodInvokeExpression.cs
- SqlPersonalizationProvider.cs
- BackStopAuthenticationModule.cs
- DispatcherFrame.cs
- SystemColors.cs
- AuthenticateEventArgs.cs
- GridPattern.cs
- DockAndAnchorLayout.cs
- UIElement3D.cs
- TaskHelper.cs
- ZoneLinkButton.cs