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
- AssemblyCache.cs
- SessionEndedEventArgs.cs
- XPathDescendantIterator.cs
- UpdatePanelTrigger.cs
- PolyLineSegment.cs
- Scene3D.cs
- EncryptedData.cs
- ProjectionAnalyzer.cs
- SrgsDocument.cs
- StreamResourceInfo.cs
- BinaryMethodMessage.cs
- XmlReflectionMember.cs
- DataRecordObjectView.cs
- Interlocked.cs
- DataBoundControlHelper.cs
- Color.cs
- DiagnosticsConfigurationHandler.cs
- Message.cs
- ObjectSecurity.cs
- ReferenceConverter.cs
- HttpApplicationFactory.cs
- XmlSchemaSimpleTypeRestriction.cs
- EntityProviderServices.cs
- PaperSource.cs
- DiscoveryClientProtocol.cs
- WindowsGraphics.cs
- PlatformNotSupportedException.cs
- EndpointDiscoveryBehavior.cs
- ButtonRenderer.cs
- IntranetCredentialPolicy.cs
- XsltContext.cs
- FacetDescription.cs
- HttpRequestBase.cs
- ControlPropertyNameConverter.cs
- ResolveNameEventArgs.cs
- SchemaImporterExtensionsSection.cs
- ProxyManager.cs
- XmlQueryContext.cs
- DescendentsWalker.cs
- DynamicScriptObject.cs
- DbParameterCollectionHelper.cs
- webbrowsersite.cs
- HtmlEncodedRawTextWriter.cs
- DynamicPropertyHolder.cs
- Debug.cs
- ToolboxDataAttribute.cs
- ContourSegment.cs
- NativeCompoundFileAPIs.cs
- XappLauncher.cs
- WebControlsSection.cs
- Color.cs
- UpdatePanelTriggerCollection.cs
- GifBitmapDecoder.cs
- FontNameConverter.cs
- HtmlInputReset.cs
- Vector3dCollection.cs
- XPathAxisIterator.cs
- EncodedStreamFactory.cs
- PackageStore.cs
- CollectionChange.cs
- ModuleConfigurationInfo.cs
- ProfilePropertySettingsCollection.cs
- Transaction.cs
- UIElement.cs
- SystemIPAddressInformation.cs
- DictionaryEntry.cs
- MessageQueueAccessControlEntry.cs
- ResourceDefaultValueAttribute.cs
- LinqDataSourceContextEventArgs.cs
- TypeTypeConverter.cs
- ToolStripSplitStackLayout.cs
- StorageMappingFragment.cs
- ListViewInsertEventArgs.cs
- TextBox.cs
- RC2CryptoServiceProvider.cs
- MemberMaps.cs
- XmlBindingWorker.cs
- BCryptHashAlgorithm.cs
- CodeIndexerExpression.cs
- FileDialog_Vista.cs
- ToolStripPanel.cs
- ManagedWndProcTracker.cs
- NetPipeSectionData.cs
- ObjectDisposedException.cs
- AmbientLight.cs
- GridProviderWrapper.cs
- Grant.cs
- ModelTreeManager.cs
- DateTimeUtil.cs
- IntranetCredentialPolicy.cs
- ProviderConnectionPointCollection.cs
- ParseChildrenAsPropertiesAttribute.cs
- IndexedSelectQueryOperator.cs
- ConfigurationCollectionAttribute.cs
- SafeLocalAllocation.cs
- FontDifferentiator.cs
- FilteredReadOnlyMetadataCollection.cs
- GridItemProviderWrapper.cs
- StrokeNodeOperations.cs
- TimeoutException.cs