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
- ProfileService.cs
- MetadataItemEmitter.cs
- ValueTypeFixupInfo.cs
- ToolStripDropDownItem.cs
- DefaultAsyncDataDispatcher.cs
- documentsequencetextview.cs
- DriveNotFoundException.cs
- SoapExtensionTypeElement.cs
- HMACSHA1.cs
- SymDocumentType.cs
- MemoryRecordBuffer.cs
- GetUserPreferenceRequest.cs
- Calendar.cs
- DataGridViewCellValidatingEventArgs.cs
- NameTable.cs
- SystemIcmpV6Statistics.cs
- XamlFilter.cs
- cookiecollection.cs
- DeleteMemberBinder.cs
- ClientConfigPaths.cs
- SelfIssuedAuthProofToken.cs
- COMException.cs
- ItemContainerGenerator.cs
- InvalidEnumArgumentException.cs
- WeakReadOnlyCollection.cs
- ComponentCommands.cs
- InputScopeManager.cs
- UncommonField.cs
- AttributeXamlType.cs
- ContentWrapperAttribute.cs
- CatalogZone.cs
- BitmapEffect.cs
- WindowExtensionMethods.cs
- SectionVisual.cs
- XmlKeywords.cs
- UnaryExpression.cs
- DataSourceCache.cs
- FixedSchema.cs
- DBPropSet.cs
- DocumentEventArgs.cs
- CheckoutException.cs
- ComplexBindingPropertiesAttribute.cs
- TraceContextRecord.cs
- SmiConnection.cs
- DataBinder.cs
- ClientTargetCollection.cs
- Compensate.cs
- DispatcherProcessingDisabled.cs
- RouteParser.cs
- SmtpReplyReader.cs
- EntitySqlQueryCacheKey.cs
- EasingKeyFrames.cs
- UnsafeNativeMethods.cs
- EventLogPermissionEntry.cs
- ContextInformation.cs
- OdbcConnectionOpen.cs
- QilTargetType.cs
- DesignerForm.cs
- HealthMonitoringSection.cs
- QilFunction.cs
- ProviderConnectionPoint.cs
- GeometryValueSerializer.cs
- LoadedOrUnloadedOperation.cs
- XmlStreamNodeWriter.cs
- Decoder.cs
- VectorCollectionValueSerializer.cs
- Control.cs
- InkCollectionBehavior.cs
- PropertyEmitter.cs
- ArgumentException.cs
- PropertyDescriptorComparer.cs
- SmtpNetworkElement.cs
- CheckBoxList.cs
- TextBoxBase.cs
- Figure.cs
- SatelliteContractVersionAttribute.cs
- ScopelessEnumAttribute.cs
- PackWebRequestFactory.cs
- PathSegmentCollection.cs
- GenericTypeParameterConverter.cs
- InternalResources.cs
- WebDisplayNameAttribute.cs
- InlineUIContainer.cs
- storepermissionattribute.cs
- SafeProcessHandle.cs
- CreateUserErrorEventArgs.cs
- WebBrowser.cs
- ValidationError.cs
- wgx_exports.cs
- ToolStripTextBox.cs
- TabletDevice.cs
- RunClient.cs
- SessionIDManager.cs
- ResourceContainer.cs
- ParserHooks.cs
- MouseButtonEventArgs.cs
- ActivityCodeDomSerializationManager.cs
- SQLSingleStorage.cs
- LogRecordSequence.cs
- StringComparer.cs