Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Protocols / SoapDocumentMethodAttribute.cs / 1305376 / SoapDocumentMethodAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Protocols { using System; using System.Web.Services.Description; ////// /// [AttributeUsage(AttributeTargets.Method)] public sealed class SoapDocumentMethodAttribute : System.Attribute { string action; string requestName; string responseName; string requestNamespace; string responseNamespace; bool oneWay; SoapBindingUse use = SoapBindingUse.Default; SoapParameterStyle style = SoapParameterStyle.Default; string binding; ///[To be supplied.] ////// /// public SoapDocumentMethodAttribute() { } ///[To be supplied.] ////// /// public SoapDocumentMethodAttribute(string action) { this.action = action; } ///[To be supplied.] ////// /// public string Action { get { return action; } set { action = value; } } ///[To be supplied.] ////// /// public bool OneWay { get { return oneWay; } set { oneWay = value; } } ///[To be supplied.] ////// /// public string RequestNamespace { get { return requestNamespace; } set { requestNamespace = value; } } ///[To be supplied.] ////// /// public string ResponseNamespace { get { return responseNamespace; } set { responseNamespace = value; } } ///[To be supplied.] ////// /// public string RequestElementName { get { return requestName == null ? string.Empty : requestName; } set { requestName = value; } } ///[To be supplied.] ////// /// public string ResponseElementName { get { return responseName == null ? string.Empty : responseName; } set { responseName = value; } } ///[To be supplied.] ////// /// public SoapBindingUse Use { get { return use; } set { use = value; } } ///[To be supplied.] ////// /// public SoapParameterStyle ParameterStyle { get { return style; } set { style = value; } } ///[To be supplied.] ////// /// public string Binding { get { return binding == null ? string.Empty : binding; } set { binding = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Protocols { using System; using System.Web.Services.Description; ////// /// [AttributeUsage(AttributeTargets.Method)] public sealed class SoapDocumentMethodAttribute : System.Attribute { string action; string requestName; string responseName; string requestNamespace; string responseNamespace; bool oneWay; SoapBindingUse use = SoapBindingUse.Default; SoapParameterStyle style = SoapParameterStyle.Default; string binding; ///[To be supplied.] ////// /// public SoapDocumentMethodAttribute() { } ///[To be supplied.] ////// /// public SoapDocumentMethodAttribute(string action) { this.action = action; } ///[To be supplied.] ////// /// public string Action { get { return action; } set { action = value; } } ///[To be supplied.] ////// /// public bool OneWay { get { return oneWay; } set { oneWay = value; } } ///[To be supplied.] ////// /// public string RequestNamespace { get { return requestNamespace; } set { requestNamespace = value; } } ///[To be supplied.] ////// /// public string ResponseNamespace { get { return responseNamespace; } set { responseNamespace = value; } } ///[To be supplied.] ////// /// public string RequestElementName { get { return requestName == null ? string.Empty : requestName; } set { requestName = value; } } ///[To be supplied.] ////// /// public string ResponseElementName { get { return responseName == null ? string.Empty : responseName; } set { responseName = value; } } ///[To be supplied.] ////// /// public SoapBindingUse Use { get { return use; } set { use = value; } } ///[To be supplied.] ////// /// public SoapParameterStyle ParameterStyle { get { return style; } set { style = value; } } ///[To be supplied.] ////// /// public string Binding { get { return binding == null ? string.Empty : binding; } set { binding = 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
- ExtensionQuery.cs
- GeneralTransform3DGroup.cs
- SHA1Managed.cs
- RectangleGeometry.cs
- SHA256.cs
- ByteStack.cs
- TakeQueryOptionExpression.cs
- DatasetMethodGenerator.cs
- RuntimeArgumentHandle.cs
- UpDownBaseDesigner.cs
- XmlValueConverter.cs
- PartitionedStream.cs
- DBSqlParserColumnCollection.cs
- ChainedAsyncResult.cs
- CodeTypeParameter.cs
- ScalarConstant.cs
- HttpRuntimeSection.cs
- LogConverter.cs
- HwndStylusInputProvider.cs
- CodeDomComponentSerializationService.cs
- CompilerError.cs
- XPathPatternBuilder.cs
- PropertyChangeTracker.cs
- AdornerHitTestResult.cs
- IUnknownConstantAttribute.cs
- WindowsPen.cs
- HttpListenerTimeoutManager.cs
- StateManagedCollection.cs
- SplashScreen.cs
- FlowLayoutPanel.cs
- ToolStripPanelSelectionGlyph.cs
- RequiredFieldValidator.cs
- StreamingContext.cs
- DistinctQueryOperator.cs
- XmlAttributes.cs
- GroupBoxAutomationPeer.cs
- HttpInputStream.cs
- FixedSOMLineCollection.cs
- PropertyGroupDescription.cs
- MsdtcWrapper.cs
- ConfigurationHelpers.cs
- WinEventQueueItem.cs
- InfoCardTraceRecord.cs
- BitFlagsGenerator.cs
- TypeForwardedToAttribute.cs
- SqlRetyper.cs
- BufferedStream.cs
- ColumnClickEvent.cs
- AutomationPropertyChangedEventArgs.cs
- CompositionDesigner.cs
- CheckBoxDesigner.cs
- HyperLink.cs
- CounterSampleCalculator.cs
- Timer.cs
- ZoneMembershipCondition.cs
- ProgressBar.cs
- Brush.cs
- UnionCodeGroup.cs
- ConfigurationException.cs
- AncestorChangedEventArgs.cs
- SqlDataSource.cs
- ServiceModelConfigurationElementCollection.cs
- ControlIdConverter.cs
- ProcessProtocolHandler.cs
- SamlDelegatingWriter.cs
- XsdBuildProvider.cs
- ServiceModelSectionGroup.cs
- ReturnType.cs
- UniqueIdentifierService.cs
- RectAnimationClockResource.cs
- TcpChannelListener.cs
- ValueUtilsSmi.cs
- WebEvents.cs
- RequiredFieldValidator.cs
- PKCS1MaskGenerationMethod.cs
- PropertyCondition.cs
- RC2CryptoServiceProvider.cs
- IERequestCache.cs
- FileAuthorizationModule.cs
- SmiContext.cs
- NetMsmqSecurityMode.cs
- LinqDataSourceView.cs
- TextElementEnumerator.cs
- VerificationAttribute.cs
- OdbcHandle.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- StringArrayConverter.cs
- FixedSOMElement.cs
- SafeWaitHandle.cs
- GeneralTransform2DTo3D.cs
- SvcMapFile.cs
- UnsafeNativeMethods.cs
- PrintDialog.cs
- IgnoreFlushAndCloseStream.cs
- TextEditorCharacters.cs
- WebPartConnection.cs
- OleDbConnectionFactory.cs
- StdRegProviderWrapper.cs
- SamlDelegatingWriter.cs
- Int16Converter.cs