Code:
/ 4.0 / 4.0 / untmp / 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.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- IconBitmapDecoder.cs
- WebPartActionVerb.cs
- MatrixAnimationBase.cs
- SortQuery.cs
- Not.cs
- RawKeyboardInputReport.cs
- UpdateExpressionVisitor.cs
- ImageAttributes.cs
- OptimalTextSource.cs
- ViewValidator.cs
- XmlEncoding.cs
- ListViewItem.cs
- ExpressionVisitorHelpers.cs
- Sql8ConformanceChecker.cs
- DefaultHttpHandler.cs
- MethodSet.cs
- SqlWorkflowInstanceStoreLock.cs
- WindowsMenu.cs
- PbrsForward.cs
- ByteStack.cs
- BitmapData.cs
- CurrencyManager.cs
- ParameterBuilder.cs
- StandardCommands.cs
- NativeWindow.cs
- PeerCollaborationPermission.cs
- RecordManager.cs
- LocalizableResourceBuilder.cs
- MatrixTransform3D.cs
- HandlerBase.cs
- ForceCopyBuildProvider.cs
- HotSpotCollection.cs
- InlineObject.cs
- ProfileInfo.cs
- DateTimeParse.cs
- SwitchAttribute.cs
- SamlAuthorityBinding.cs
- IpcClientManager.cs
- CompensationDesigner.cs
- InvalidComObjectException.cs
- RSAOAEPKeyExchangeDeformatter.cs
- DataGridRelationshipRow.cs
- PropertyItemInternal.cs
- SqlBooleanizer.cs
- XmlNodeReader.cs
- VisualStyleRenderer.cs
- CloseCryptoHandleRequest.cs
- DependencyObject.cs
- DataKey.cs
- LocatorBase.cs
- IconBitmapDecoder.cs
- ButtonChrome.cs
- MaterialGroup.cs
- DiscriminatorMap.cs
- WebReferencesBuildProvider.cs
- DbProviderFactories.cs
- EncryptedHeader.cs
- StreamMarshaler.cs
- XmlAttributeOverrides.cs
- ExtensibleClassFactory.cs
- TableChangeProcessor.cs
- MoveSizeWinEventHandler.cs
- LocalizableAttribute.cs
- FlowNode.cs
- CodeBinaryOperatorExpression.cs
- EFColumnProvider.cs
- SqlCacheDependency.cs
- UInt16.cs
- DictionaryGlobals.cs
- DesignerLoader.cs
- OwnerDrawPropertyBag.cs
- CompilationLock.cs
- TreeNodeCollection.cs
- XmlSchemaAny.cs
- TemplateBaseAction.cs
- MenuStrip.cs
- CompilationUnit.cs
- DictionaryBase.cs
- _TimerThread.cs
- SafeBitVector32.cs
- EntityStoreSchemaFilterEntry.cs
- TreeNodeCollection.cs
- ReferentialConstraint.cs
- ImageField.cs
- StrokeCollection.cs
- CodeTryCatchFinallyStatement.cs
- WebPartVerbCollection.cs
- CommandField.cs
- DataTableTypeConverter.cs
- BitmapEffectGroup.cs
- WebServiceFault.cs
- ExpressionDumper.cs
- LayoutExceptionEventArgs.cs
- Point3D.cs
- DateTimeFormatInfo.cs
- PKCS1MaskGenerationMethod.cs
- Timer.cs
- FixedSOMLineRanges.cs
- VSWCFServiceContractGenerator.cs
- PlaceHolder.cs