Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / AddressHeaderCollection.cs / 1 / AddressHeaderCollection.cs
//---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Collections.Generic; using System.ServiceModel; using System.Collections.ObjectModel; using System.Diagnostics; using System.Runtime.Serialization; using System.Text; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; using System.ServiceModel.Security; using System.IdentityModel.Claims; using System.IdentityModel.Policy; public sealed class AddressHeaderCollection : ReadOnlyCollection{ static AddressHeaderCollection emptyHeaderCollection = new AddressHeaderCollection(); public AddressHeaderCollection() : base(new List ()) { } public AddressHeaderCollection(IEnumerable addressHeaders) : base(new List (addressHeaders)) { // avoid allocating an enumerator when possible IList collection = addressHeaders as IList ; if (collection != null) { for (int i = 0; i < collection.Count; i++) { if (collection[i] == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.MessageHeaderIsNull0))); } } else { foreach (AddressHeader addressHeader in addressHeaders) { if (addressHeaders == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.MessageHeaderIsNull0))); } } } internal static AddressHeaderCollection EmptyHeaderCollection { get { return emptyHeaderCollection; } } int InternalCount { get { if (this == (object)emptyHeaderCollection) return 0; return Count; } } public void AddHeadersTo(Message message) { if (message == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("message"); for (int i = 0; i < InternalCount; i++) { #pragma warning suppress 56506 // [....], Message.Headers can never be null message.Headers.Add(this[i].ToMessageHeader()); } } public AddressHeader[] FindAll(string name, string ns) { if (name == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("name")); if (ns == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("ns")); List results = new List (); for (int i = 0; i < Count; i++) { AddressHeader header = this[i]; if (header.Name == name && header.Namespace == ns) { results.Add(header); } } return results.ToArray(); } public AddressHeader FindHeader(string name, string ns) { if (name == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("name")); if (ns == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("ns")); AddressHeader matchingHeader = null; for (int i = 0; i < Count; i++) { AddressHeader header = this[i]; if (header.Name == name && header.Namespace == ns) { if (matchingHeader != null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.MultipleMessageHeaders, name, ns))); matchingHeader = header; } } return matchingHeader; } internal bool IsEquivalent(AddressHeaderCollection col) { if (InternalCount != col.InternalCount) return false; StringBuilder builder = new StringBuilder(); Dictionary myHeaders = new Dictionary (); PopulateHeaderDictionary(builder, myHeaders); Dictionary otherHeaders = new Dictionary (); col.PopulateHeaderDictionary(builder, otherHeaders); if (myHeaders.Count != otherHeaders.Count) return false; foreach (KeyValuePair pair in myHeaders) { int count; if (otherHeaders.TryGetValue(pair.Key, out count)) { if (count != pair.Value) return false; } else { return false; } } return true; } internal void PopulateHeaderDictionary(StringBuilder builder, Dictionary headers) { string key; for (int i = 0; i < InternalCount; ++i) { builder.Remove(0, builder.Length); key = this[i].GetComparableForm(builder); if (headers.ContainsKey(key)) { headers[key] = headers[key] + 1; } else { headers.Add(key, 1); } } } internal static AddressHeaderCollection ReadServiceParameters(XmlDictionaryReader reader) { return ReadServiceParameters(reader, false); } internal static AddressHeaderCollection ReadServiceParameters(XmlDictionaryReader reader, bool isReferenceProperty) { reader.MoveToContent(); if (reader.IsEmptyElement) { reader.Skip(); return null; } else { reader.ReadStartElement(); List headerList = new List (); while (reader.IsStartElement()) { headerList.Add(new BufferedAddressHeader(reader, isReferenceProperty)); } reader.ReadEndElement(); return new AddressHeaderCollection(headerList); } } internal bool HasReferenceProperties { get { for (int i = 0; i < InternalCount; i++) if (this[i].IsReferenceProperty) return true; return false; } } internal bool HasNonReferenceProperties { get { for (int i = 0; i < InternalCount; i++) if (!this[i].IsReferenceProperty) return true; return false; } } internal void WriteReferencePropertyContentsTo(XmlDictionaryWriter writer) { for (int i = 0; i < InternalCount; i++) if (this[i].IsReferenceProperty) this[i].WriteAddressHeader(writer); } internal void WriteNonReferencePropertyContentsTo(XmlDictionaryWriter writer) { for (int i = 0; i < InternalCount; i++) if (!this[i].IsReferenceProperty) this[i].WriteAddressHeader(writer); } internal void WriteContentsTo(XmlDictionaryWriter writer) { for (int i = 0; i < InternalCount; i++) this[i].WriteAddressHeader(writer); } } } // 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
- ColorBlend.cs
- COAUTHIDENTITY.cs
- DependencyPropertyKey.cs
- WaitingCursor.cs
- RoleManagerEventArgs.cs
- COM2PictureConverter.cs
- CompositeDataBoundControl.cs
- NamespaceDecl.cs
- MetadataArtifactLoaderResource.cs
- GcSettings.cs
- SmtpTransport.cs
- TypeConverters.cs
- _BaseOverlappedAsyncResult.cs
- ConnectionManagementSection.cs
- _TLSstream.cs
- OleDbParameterCollection.cs
- bidPrivateBase.cs
- LayoutInformation.cs
- Material.cs
- SignerInfo.cs
- RawKeyboardInputReport.cs
- CodeSubDirectory.cs
- Internal.cs
- WmpBitmapEncoder.cs
- OleDbParameter.cs
- PageParser.cs
- WindowPatternIdentifiers.cs
- CatalogZone.cs
- PieceDirectory.cs
- ScriptModule.cs
- XmlAttributeProperties.cs
- CodeArgumentReferenceExpression.cs
- Matrix3DConverter.cs
- DataGridViewLinkCell.cs
- WebPartZone.cs
- ContainerUIElement3D.cs
- DockAndAnchorLayout.cs
- MD5.cs
- X509AsymmetricSecurityKey.cs
- QilStrConcat.cs
- GlobalizationSection.cs
- TextServicesPropertyRanges.cs
- ReferenceConverter.cs
- MonitorWrapper.cs
- OracleCommandBuilder.cs
- _CommandStream.cs
- TraceHwndHost.cs
- RangeEnumerable.cs
- ModelUIElement3D.cs
- Control.cs
- SQLChars.cs
- WebHeaderCollection.cs
- UncommonField.cs
- HandlerBase.cs
- DiagnosticTrace.cs
- SmiRequestExecutor.cs
- InsufficientMemoryException.cs
- BulletedList.cs
- HotSpot.cs
- PropertyGridEditorPart.cs
- BaseDataBoundControl.cs
- StructuredTypeEmitter.cs
- SelectedDatesCollection.cs
- ArgumentOutOfRangeException.cs
- RegionIterator.cs
- APCustomTypeDescriptor.cs
- SortExpressionBuilder.cs
- PeerCollaborationPermission.cs
- DelegatedStream.cs
- ProcessStartInfo.cs
- TextPatternIdentifiers.cs
- ExceptionWrapper.cs
- AdCreatedEventArgs.cs
- X509SecurityTokenAuthenticator.cs
- ToolStripManager.cs
- DbDataReader.cs
- OleDbParameter.cs
- OneOfTypeConst.cs
- StrongName.cs
- WebPartDisplayModeCancelEventArgs.cs
- ExceptionHelpers.cs
- MessageFormatterConverter.cs
- autovalidator.cs
- PropertyTabChangedEvent.cs
- ControlBindingsCollection.cs
- MimeBasePart.cs
- BitmapEffectInput.cs
- ColorPalette.cs
- QueueProcessor.cs
- ServiceHostFactory.cs
- UnsafeNativeMethods.cs
- XmlAnyElementAttributes.cs
- Compiler.cs
- ListControl.cs
- PropertyItem.cs
- TraversalRequest.cs
- SoundPlayerAction.cs
- WasHostedComPlusFactory.cs
- RolePrincipal.cs
- AddInSegmentDirectoryNotFoundException.cs