Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Protocols / SoapDocumentServiceAttribute.cs / 1305376 / SoapDocumentServiceAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Protocols { using System; using System.Web.Services.Description; using System.Reflection; using System.Xml.Serialization; ////// /// [AttributeUsage(AttributeTargets.Class)] public sealed class SoapDocumentServiceAttribute : Attribute { SoapBindingUse use = SoapBindingUse.Default; SoapParameterStyle paramStyle = SoapParameterStyle.Default; SoapServiceRoutingStyle routingStyle = SoapServiceRoutingStyle.SoapAction; ///[To be supplied.] ////// /// public SoapDocumentServiceAttribute() { } ///[To be supplied.] ////// /// public SoapDocumentServiceAttribute(SoapBindingUse use) { this.use = use; } ///[To be supplied.] ////// /// public SoapDocumentServiceAttribute(SoapBindingUse use, SoapParameterStyle paramStyle) { this.use = use; this.paramStyle = paramStyle; } ///[To be supplied.] ////// /// public SoapBindingUse Use { get { return use; } set { use = value; } } ///[To be supplied.] ////// /// public SoapParameterStyle ParameterStyle { get { return paramStyle; } set { paramStyle = value; } } ///[To be supplied.] ///public SoapServiceRoutingStyle RoutingStyle { get { return routingStyle; } set { routingStyle = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UpdateRecord.cs
- CodeCastExpression.cs
- AnnotationResourceChangedEventArgs.cs
- FontUnitConverter.cs
- UriWriter.cs
- SerializationSectionGroup.cs
- RectangleGeometry.cs
- FontDifferentiator.cs
- QueryFunctions.cs
- RequestTimeoutManager.cs
- AccessorTable.cs
- FontConverter.cs
- FormsAuthentication.cs
- IteratorFilter.cs
- BindingSource.cs
- ZoneLinkButton.cs
- MessageBox.cs
- FaultCallbackWrapper.cs
- TableLayoutSettings.cs
- DataRowView.cs
- RegisteredHiddenField.cs
- Interlocked.cs
- RepeaterDesigner.cs
- _PooledStream.cs
- Accessible.cs
- SmiRequestExecutor.cs
- MethodExpr.cs
- Missing.cs
- LinearGradientBrush.cs
- LogExtentCollection.cs
- DecimalKeyFrameCollection.cs
- ResourceDescriptionAttribute.cs
- SourceInterpreter.cs
- WebControlParameterProxy.cs
- BuildProvider.cs
- ArgumentsParser.cs
- CustomAttributeBuilder.cs
- WorkflowServiceNamespace.cs
- ParentUndoUnit.cs
- WebPartMinimizeVerb.cs
- FormViewUpdateEventArgs.cs
- SeverityFilter.cs
- ConnectionProviderAttribute.cs
- XmlSchemaSequence.cs
- UntrustedRecipientException.cs
- _LoggingObject.cs
- DeobfuscatingStream.cs
- odbcmetadatacolumnnames.cs
- ViewGenResults.cs
- HttpCacheVaryByContentEncodings.cs
- SignerInfo.cs
- WsrmFault.cs
- DefaultEventAttribute.cs
- TableColumn.cs
- TypeLibConverter.cs
- SQLUtility.cs
- CompoundFileIOPermission.cs
- HybridDictionary.cs
- RegexRunner.cs
- WindowClosedEventArgs.cs
- xsdvalidator.cs
- _PooledStream.cs
- WindowsAuthenticationEventArgs.cs
- GroupBoxRenderer.cs
- ScriptComponentDescriptor.cs
- WebPartEditorOkVerb.cs
- PkcsUtils.cs
- SimpleRecyclingCache.cs
- SiteMapNode.cs
- LockCookie.cs
- SystemInformation.cs
- PersonalizationStateInfo.cs
- InstanceContext.cs
- IgnorePropertiesAttribute.cs
- ConfigurationException.cs
- DESCryptoServiceProvider.cs
- QilDataSource.cs
- ShapeTypeface.cs
- ComplexBindingPropertiesAttribute.cs
- DoubleCollectionValueSerializer.cs
- ItemCollection.cs
- ToolStripPanelDesigner.cs
- XmlSerializerNamespaces.cs
- BackStopAuthenticationModule.cs
- ToolStripRenderEventArgs.cs
- GridViewUpdateEventArgs.cs
- DependencyPropertyConverter.cs
- SessionStateSection.cs
- TextProviderWrapper.cs
- SourceLocation.cs
- ListItemCollection.cs
- SourceLineInfo.cs
- IApplicationTrustManager.cs
- SafeNativeMethodsOther.cs
- CodeDefaultValueExpression.cs
- AuthorizationSection.cs
- HttpRequestCacheValidator.cs
- GlyphRunDrawing.cs
- TabControl.cs
- KeyPullup.cs