Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Description / MessageHeaderDescription.cs / 1 / MessageHeaderDescription.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Description { using System; using System.ServiceModel.Channels; using System.ServiceModel; using System.Xml; using System.Collections.Generic; using System.Text; using System.Runtime.Serialization; public class MessageHeaderDescription : MessagePartDescription { bool mustUnderstand; bool relay; string actor; bool typedHeader; bool isUnknownHeader; public MessageHeaderDescription(string name, string ns) : base(name, ns) { } internal MessageHeaderDescription(MessageHeaderDescription other) : base(other) { this.MustUnderstand = other.MustUnderstand; this.Relay = other.Relay; this.Actor = other.Actor; this.TypedHeader = other.TypedHeader; this.IsUnknownHeaderCollection = other.IsUnknownHeaderCollection; } internal override MessagePartDescription Clone() { return new MessageHeaderDescription(this); } public string Actor { get { return this.actor; } set { this.actor = value; } } public bool MustUnderstand { get { return this.mustUnderstand; } set { this.mustUnderstand = value; } } public bool Relay { get { return this.relay; } set { this.relay = value; } } public bool TypedHeader { get { return this.typedHeader; } set { this.typedHeader = value; } } internal bool IsUnknownHeaderCollection { get { return isUnknownHeader || Multiple && (Type == typeof(XmlElement)); } set { isUnknownHeader = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MouseWheelEventArgs.cs
- EntryIndex.cs
- HttpStreamMessageEncoderFactory.cs
- LineSegment.cs
- BitmapEffect.cs
- OdbcFactory.cs
- Tag.cs
- StylusPointProperty.cs
- EmptyEnumerable.cs
- GetBrowserTokenRequest.cs
- designeractionlistschangedeventargs.cs
- DbProviderFactoriesConfigurationHandler.cs
- TextElementCollection.cs
- RelatedCurrencyManager.cs
- ExpressionPrefixAttribute.cs
- CodeMemberEvent.cs
- DataContractSerializer.cs
- NamespaceExpr.cs
- Glyph.cs
- EditableTreeList.cs
- DependencyPropertyConverter.cs
- KeyInstance.cs
- IndexerReference.cs
- SynchronousChannel.cs
- BindingCollection.cs
- SafeWaitHandle.cs
- TrustDriver.cs
- SQLBytesStorage.cs
- HyperLinkField.cs
- ColorContextHelper.cs
- CalendarDay.cs
- SqlColumnizer.cs
- FixedSOMContainer.cs
- DynamicActionMessageFilter.cs
- XslVisitor.cs
- BindingContext.cs
- CodePropertyReferenceExpression.cs
- SynthesizerStateChangedEventArgs.cs
- HideDisabledControlAdapter.cs
- UserNameServiceElement.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- DataSourceSelectArguments.cs
- AutomationEvent.cs
- shaperfactoryquerycacheentry.cs
- InternalConfigSettingsFactory.cs
- SafeFindHandle.cs
- PagerStyle.cs
- FileFormatException.cs
- IxmlLineInfo.cs
- TypeUsage.cs
- ChildTable.cs
- Int16Animation.cs
- FillBehavior.cs
- DataColumnMapping.cs
- ASCIIEncoding.cs
- TextRangeProviderWrapper.cs
- odbcmetadatacollectionnames.cs
- IISMapPath.cs
- typedescriptorpermission.cs
- SafeEventLogWriteHandle.cs
- FormViewDeletedEventArgs.cs
- Compilation.cs
- DesignTimeParseData.cs
- ProgressBarBrushConverter.cs
- ButtonAutomationPeer.cs
- LinqDataSourceValidationException.cs
- ipaddressinformationcollection.cs
- SafeMemoryMappedViewHandle.cs
- HttpWebRequestElement.cs
- SoapTypeAttribute.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- SafeNativeMethodsCLR.cs
- TextBounds.cs
- Metafile.cs
- ZipIOLocalFileHeader.cs
- FunctionDetailsReader.cs
- WindowsToolbar.cs
- ContentPathSegment.cs
- SecurityCriticalDataForSet.cs
- DataGridViewRowsRemovedEventArgs.cs
- DefaultValueAttribute.cs
- SerializationInfoEnumerator.cs
- GridViewCommandEventArgs.cs
- BitmapMetadata.cs
- EncryptedKey.cs
- UshortList2.cs
- Fault.cs
- PenThreadPool.cs
- UnmanagedBitmapWrapper.cs
- Image.cs
- NetCodeGroup.cs
- Delay.cs
- OutOfProcStateClientManager.cs
- DesignerView.cs
- ReturnValue.cs
- RowCache.cs
- ObjectDataSourceChooseTypePanel.cs
- TraceRecord.cs
- MdImport.cs
- DriveInfo.cs