Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Protocols / SoapHeaderAttribute.cs / 1305376 / SoapHeaderAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Protocols { using System.Web.Services; using System.Xml.Serialization; using System; using System.Reflection; using System.Xml; using System.Collections; using System.IO; using System.ComponentModel; ////// /// [AttributeUsage(AttributeTargets.Method, AllowMultiple=true)] public sealed class SoapHeaderAttribute : System.Attribute { string memberName; SoapHeaderDirection direction = SoapHeaderDirection.In; bool required = true; ///[To be supplied.] ////// /// public SoapHeaderAttribute(string memberName) { this.memberName = memberName; } ///[To be supplied.] ////// /// public string MemberName { get { return memberName == null ? string.Empty : memberName; } set { memberName = value; } } ///[To be supplied.] ////// /// public SoapHeaderDirection Direction { get { return direction; } set { direction = value; } } ///[To be supplied.] ////// /// [Obsolete("This property will be removed from a future version. The presence of a particular header in a SOAP message is no longer enforced", false)] public bool Required { get { return required; } set { required = 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
- GridErrorDlg.cs
- safesecurityhelperavalon.cs
- ExitEventArgs.cs
- Rijndael.cs
- NetStream.cs
- MULTI_QI.cs
- WindowsTooltip.cs
- SchemaElementLookUpTableEnumerator.cs
- Screen.cs
- WebPartTracker.cs
- ModelFunction.cs
- CodeDirectoryCompiler.cs
- ProviderException.cs
- DelayLoadType.cs
- FlowDocumentPage.cs
- CubicEase.cs
- QueryPageSettingsEventArgs.cs
- ClientSideQueueItem.cs
- SimpleWorkerRequest.cs
- InputReportEventArgs.cs
- RemoteWebConfigurationHost.cs
- HealthMonitoringSectionHelper.cs
- HttpCacheVaryByContentEncodings.cs
- ServiceReference.cs
- NumberEdit.cs
- RenderDataDrawingContext.cs
- SystemIPv4InterfaceProperties.cs
- ImageListImage.cs
- ValidationRuleCollection.cs
- HttpRuntimeSection.cs
- NodeFunctions.cs
- DebugView.cs
- NGCPageContentCollectionSerializerAsync.cs
- RemoteWebConfigurationHostServer.cs
- CfgRule.cs
- SecurityHelper.cs
- FileAuthorizationModule.cs
- PropertyNames.cs
- ImageKeyConverter.cs
- MenuItemCollection.cs
- ProcessProtocolHandler.cs
- PreviewKeyDownEventArgs.cs
- Brush.cs
- RewritingProcessor.cs
- Binding.cs
- XhtmlBasicCalendarAdapter.cs
- SelectionRange.cs
- PropertySourceInfo.cs
- WebBrowserNavigatingEventHandler.cs
- DictionaryCustomTypeDescriptor.cs
- XpsS0ValidatingLoader.cs
- EventPrivateKey.cs
- QueueProcessor.cs
- VisualBrush.cs
- ReceiveSecurityHeader.cs
- ApplicationTrust.cs
- SHA256Managed.cs
- TextBox.cs
- ThemeDirectoryCompiler.cs
- StateItem.cs
- X509RecipientCertificateServiceElement.cs
- DesigntimeLicenseContextSerializer.cs
- SafeNativeMethodsMilCoreApi.cs
- ProfilePropertySettings.cs
- GiveFeedbackEvent.cs
- HeaderUtility.cs
- GridViewHeaderRowPresenter.cs
- ResourceDefaultValueAttribute.cs
- RtType.cs
- TemplateControl.cs
- ProxyWebPartManager.cs
- UshortList2.cs
- SqlDependencyListener.cs
- SerializerWriterEventHandlers.cs
- HttpPostedFileBase.cs
- DateTimeValueSerializerContext.cs
- DataMisalignedException.cs
- MobileControlsSectionHandler.cs
- XmlSchema.cs
- Polyline.cs
- VectorAnimation.cs
- ipaddressinformationcollection.cs
- FrameworkContentElementAutomationPeer.cs
- DataContract.cs
- IIS7WorkerRequest.cs
- DBAsyncResult.cs
- LoginUtil.cs
- ServiceEndpoint.cs
- XmlBoundElement.cs
- AuthenticationSection.cs
- CommonRemoteMemoryBlock.cs
- WindowsScrollBar.cs
- OutputCacheProfileCollection.cs
- WeakHashtable.cs
- ToolStripPanelRow.cs
- WindowsProgressbar.cs
- CompoundFileStorageReference.cs
- InkPresenterAutomationPeer.cs
- BitmapVisualManager.cs
- Executor.cs