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
- TypeConverterAttribute.cs
- RightsManagementSuppressedStream.cs
- Timer.cs
- SplitterCancelEvent.cs
- EntityCollection.cs
- SQLDateTime.cs
- XmlDataSourceView.cs
- CompatibleComparer.cs
- AsyncResult.cs
- EmptyQuery.cs
- StringSource.cs
- ContentTextAutomationPeer.cs
- RetrieveVirtualItemEventArgs.cs
- TypeUnloadedException.cs
- SkipQueryOptionExpression.cs
- Directory.cs
- Int32RectConverter.cs
- PersonalizationStateInfo.cs
- FormView.cs
- ParameterModifier.cs
- InternalEnumValidatorAttribute.cs
- DataRecordInternal.cs
- TypeConverterHelper.cs
- SqlDataSourceCommandEventArgs.cs
- HtmlValidatorAdapter.cs
- CachedTypeface.cs
- AutomationPattern.cs
- SqlException.cs
- LexicalChunk.cs
- DateTimeUtil.cs
- TextBoxBase.cs
- ObjectListFieldCollection.cs
- QilReplaceVisitor.cs
- SqlFacetAttribute.cs
- OracleSqlParser.cs
- TextStore.cs
- PartitionResolver.cs
- ObjectConverter.cs
- LexicalChunk.cs
- WebEventTraceProvider.cs
- ContractMapping.cs
- StringPropertyBuilder.cs
- PersonalizationDictionary.cs
- BindableAttribute.cs
- XsdDateTime.cs
- InputLanguageProfileNotifySink.cs
- PersistenceException.cs
- StructuralType.cs
- _NtlmClient.cs
- SqlUtil.cs
- IUnknownConstantAttribute.cs
- UserControlAutomationPeer.cs
- ExpandCollapseIsCheckedConverter.cs
- FlowDocumentFormatter.cs
- PlaceHolder.cs
- IndexedString.cs
- KnownColorTable.cs
- ByteStreamGeometryContext.cs
- CompositeClientFormatter.cs
- ReaderWriterLockWrapper.cs
- TdsParameterSetter.cs
- ScrollBar.cs
- RegistryConfigurationProvider.cs
- HtmlInputControl.cs
- XmlSchemaValidationException.cs
- ValuePattern.cs
- ScrollProperties.cs
- SamlDoNotCacheCondition.cs
- XmlDownloadManager.cs
- LinkConverter.cs
- ServerValidateEventArgs.cs
- ApplicationManager.cs
- CalendarDesigner.cs
- DataObjectMethodAttribute.cs
- ADRoleFactory.cs
- PropertyRecord.cs
- PipelineModuleStepContainer.cs
- DatatypeImplementation.cs
- DataPagerCommandEventArgs.cs
- ResourceReader.cs
- EmissiveMaterial.cs
- SynchronizationValidator.cs
- GridViewAutomationPeer.cs
- RSAPKCS1KeyExchangeFormatter.cs
- _NestedSingleAsyncResult.cs
- GetChildSubtree.cs
- MergablePropertyAttribute.cs
- DesignOnlyAttribute.cs
- SelectionItemProviderWrapper.cs
- ComponentDispatcher.cs
- ContainerControl.cs
- XPathParser.cs
- AssociationSetMetadata.cs
- ButtonPopupAdapter.cs
- MatrixAnimationBase.cs
- InheritanceRules.cs
- ParameterEditorUserControl.cs
- XmlDeclaration.cs
- ObjectParameter.cs
- Expressions.cs