Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Protocols / SoapRpcMethodAttribute.cs / 1305376 / SoapRpcMethodAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Protocols { using System; using System.Web.Services.Description; using System.Runtime.InteropServices; ////// /// [AttributeUsage(AttributeTargets.Method)] public sealed class SoapRpcMethodAttribute : System.Attribute { string action; string requestName; string responseName; string requestNamespace; string responseNamespace; bool oneWay; string binding; SoapBindingUse use = SoapBindingUse.Encoded; ///[To be supplied.] ////// /// public SoapRpcMethodAttribute() { } ///[To be supplied.] ////// /// public SoapRpcMethodAttribute(string action) { this.action = action; } ///[To be supplied.] ////// /// public string Action { get { return action; } set { action = value; } } ///[To be supplied.] ////// /// public string Binding { get { return binding == null ? string.Empty : binding; } set { binding = 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.] ////// /// [ComVisible(false)] public SoapBindingUse Use { get { return use; } set { use = 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
- PrintController.cs
- HttpWebResponse.cs
- CommentEmitter.cs
- ItemMap.cs
- AutomationPropertyInfo.cs
- SqlBulkCopyColumnMapping.cs
- CodeIndexerExpression.cs
- Label.cs
- DropTarget.cs
- SafeHandles.cs
- DetailsViewInsertedEventArgs.cs
- ArgumentDirectionHelper.cs
- BamlLocalizabilityResolver.cs
- ProtocolsConfigurationEntry.cs
- SoapSchemaImporter.cs
- TrustLevelCollection.cs
- Translator.cs
- SecurityKeyEntropyMode.cs
- LoginName.cs
- MSHTMLHost.cs
- CompletionCallbackWrapper.cs
- DateTimeUtil.cs
- DataControlImageButton.cs
- RoleServiceManager.cs
- StringInfo.cs
- CodeGotoStatement.cs
- RootProfilePropertySettingsCollection.cs
- XhtmlTextWriter.cs
- shaperfactoryquerycachekey.cs
- Overlapped.cs
- HierarchicalDataBoundControl.cs
- SQLInt16Storage.cs
- SystemIPInterfaceProperties.cs
- FlowDocumentScrollViewer.cs
- WebHttpSecurity.cs
- ResizeGrip.cs
- PromptEventArgs.cs
- ArraySet.cs
- NativeCppClassAttribute.cs
- CodeTypeConstructor.cs
- AttachedPropertyDescriptor.cs
- StoryFragments.cs
- WebPartConnectionsConfigureVerb.cs
- Utils.cs
- Aes.cs
- cookie.cs
- ImageCodecInfo.cs
- XmlWellformedWriter.cs
- DeferredReference.cs
- CodeLinePragma.cs
- Vector3DKeyFrameCollection.cs
- HierarchicalDataBoundControlAdapter.cs
- HtmlShimManager.cs
- RemotingSurrogateSelector.cs
- SqlUtil.cs
- ConfigurationStrings.cs
- CheckedListBox.cs
- ControlBuilder.cs
- NeutralResourcesLanguageAttribute.cs
- ISO2022Encoding.cs
- AtomMaterializer.cs
- BuilderInfo.cs
- ColumnResizeUndoUnit.cs
- RelationshipConverter.cs
- ModifiableIteratorCollection.cs
- TimeZone.cs
- FileSecurity.cs
- WithParamAction.cs
- FileDialogCustomPlace.cs
- PropertyDescriptorComparer.cs
- BrowserCapabilitiesFactory.cs
- X509ThumbprintKeyIdentifierClause.cs
- Rotation3D.cs
- SafeCloseHandleCritical.cs
- VisualStateGroup.cs
- BitmapEffectInputConnector.cs
- DefaultTraceListener.cs
- XamlTemplateSerializer.cs
- AssociativeAggregationOperator.cs
- UnauthorizedWebPart.cs
- NavigationProperty.cs
- SectionUpdates.cs
- SelectedDatesCollection.cs
- XamlSerializerUtil.cs
- EventLog.cs
- Scalars.cs
- ElementUtil.cs
- ThreadStateException.cs
- XDRSchema.cs
- SmiEventSink_Default.cs
- ControlEvent.cs
- EntityContainerEmitter.cs
- DataBoundControlParameterTarget.cs
- ExpressionBindingsDialog.cs
- ListItemParagraph.cs
- RegexMatch.cs
- HitTestDrawingContextWalker.cs
- IPPacketInformation.cs
- ParseNumbers.cs
- Italic.cs