Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Security / ScopedMessagePartSpecification.cs / 1 / ScopedMessagePartSpecification.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Security { using System.Collections.Generic; using System.ServiceModel.Channels; using System.ServiceModel; using System.Runtime.Serialization; using System.ServiceModel.Security; using System.Xml; public class ScopedMessagePartSpecification { MessagePartSpecification channelParts; DictionaryactionParts; Dictionary readOnlyNormalizedActionParts; bool isReadOnly; public ScopedMessagePartSpecification() { this.channelParts = new MessagePartSpecification(); this.actionParts = new Dictionary (); } public ICollection Actions { get { return this.actionParts.Keys; } } public MessagePartSpecification ChannelParts { get { return this.channelParts; } } public bool IsReadOnly { get { return this.isReadOnly; } } public ScopedMessagePartSpecification(ScopedMessagePartSpecification other) : this() { if (other == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("other")); this.channelParts.Union(other.channelParts); if (other.actionParts != null) { foreach (string action in other.actionParts.Keys) { MessagePartSpecification p = new MessagePartSpecification(); p.Union(other.actionParts[action]); this.actionParts[action] = p; } } } internal ScopedMessagePartSpecification(ScopedMessagePartSpecification other, bool newIncludeBody) : this(other) { this.channelParts.IsBodyIncluded = newIncludeBody; foreach (string action in this.actionParts.Keys) this.actionParts[action].IsBodyIncluded = newIncludeBody; } public void AddParts(MessagePartSpecification parts) { if (parts == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("parts")); ThrowIfReadOnly(); this.channelParts.Union(parts); } public void AddParts(MessagePartSpecification parts, string action) { if (action == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("action")); if (parts == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("parts")); ThrowIfReadOnly(); if (!this.actionParts.ContainsKey(action)) this.actionParts[action] = new MessagePartSpecification(); this.actionParts[action].Union(parts); } internal void AddParts(MessagePartSpecification parts, XmlDictionaryString action) { if (action == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("action")); AddParts(parts, action.Value); } internal bool IsEmpty() { bool result; if (!channelParts.IsEmpty()) { result = false; } else { result = true; foreach (string action in this.Actions) { MessagePartSpecification parts; if (TryGetParts(action, true, out parts)) { if (!parts.IsEmpty()) { result = false; break; } } } } return result; } public bool TryGetParts(string action, bool excludeChannelScope, out MessagePartSpecification parts) { if (action == null) action = MessageHeaders.WildcardAction; parts = null; if (this.isReadOnly) { if (this.readOnlyNormalizedActionParts.ContainsKey(action)) if (excludeChannelScope) parts = this.actionParts[action]; else parts = this.readOnlyNormalizedActionParts[action]; } else if (this.actionParts.ContainsKey(action)) { MessagePartSpecification p = new MessagePartSpecification(); p.Union(this.actionParts[action]); if (!excludeChannelScope) p.Union(this.channelParts); parts = p; } return parts != null; } internal void CopyTo(ScopedMessagePartSpecification target) { if (target == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("target"); } target.ChannelParts.IsBodyIncluded = this.ChannelParts.IsBodyIncluded; foreach (XmlQualifiedName headerType in ChannelParts.HeaderTypes) { if (!target.channelParts.IsHeaderIncluded(headerType.Name, headerType.Namespace)) { target.ChannelParts.HeaderTypes.Add(headerType); } } foreach (string action in this.actionParts.Keys) { target.AddParts(this.actionParts[action], action); } } public bool TryGetParts(string action, out MessagePartSpecification parts) { return this.TryGetParts(action, false, out parts); } public void MakeReadOnly() { if (!this.isReadOnly) { this.readOnlyNormalizedActionParts = new Dictionary (); foreach (string action in this.actionParts.Keys) { MessagePartSpecification p = new MessagePartSpecification(); p.Union(this.actionParts[action]); p.Union(this.channelParts); p.MakeReadOnly(); this.readOnlyNormalizedActionParts[action] = p; } this.isReadOnly = true; } } void ThrowIfReadOnly() { if (this.isReadOnly) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.ObjectIsReadOnly))); } } } // 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
- ExpressionStringBuilder.cs
- FixedSOMLineRanges.cs
- ScriptReference.cs
- XmlValidatingReader.cs
- CacheAxisQuery.cs
- HotSpotCollection.cs
- FolderLevelBuildProvider.cs
- SqlReferenceCollection.cs
- DataGrid.cs
- MessageDecoder.cs
- LineVisual.cs
- COMException.cs
- ListControlConvertEventArgs.cs
- SpeechRecognitionEngine.cs
- SerializableTypeCodeDomSerializer.cs
- SessionEndingCancelEventArgs.cs
- PenContext.cs
- MetadataItem.cs
- DataGridTextBox.cs
- ExpandCollapsePattern.cs
- ConnectionConsumerAttribute.cs
- TypeDependencyAttribute.cs
- PrimitiveType.cs
- StringArrayConverter.cs
- CacheOutputQuery.cs
- TextProperties.cs
- Equal.cs
- CodeNamespaceImportCollection.cs
- XmlSchemaAnyAttribute.cs
- TextBox.cs
- mediapermission.cs
- RowBinding.cs
- FrameworkElementFactory.cs
- InteropAutomationProvider.cs
- Assembly.cs
- MarkupCompilePass1.cs
- ButtonStandardAdapter.cs
- AncestorChangedEventArgs.cs
- UnhandledExceptionEventArgs.cs
- CodeFieldReferenceExpression.cs
- OdbcCommand.cs
- Confirm.cs
- InvalidEnumArgumentException.cs
- NetDispatcherFaultException.cs
- XmlArrayAttribute.cs
- StringFreezingAttribute.cs
- SystemFonts.cs
- ComboBoxDesigner.cs
- AnnotationService.cs
- X509DefaultServiceCertificateElement.cs
- SetIterators.cs
- WindowVisualStateTracker.cs
- FontEmbeddingManager.cs
- OrderingQueryOperator.cs
- SqlTypesSchemaImporter.cs
- CompositeActivityDesigner.cs
- CompileLiteralTextParser.cs
- HebrewNumber.cs
- MediaElement.cs
- TaskFileService.cs
- TextBounds.cs
- SafeRightsManagementHandle.cs
- CachedPathData.cs
- RemotingException.cs
- MemberInitExpression.cs
- OleDbConnection.cs
- SerializationException.cs
- ImageBrush.cs
- VirtualizingStackPanel.cs
- DataRowCollection.cs
- BaseTreeIterator.cs
- printdlgexmarshaler.cs
- UriParserTemplates.cs
- TextEffect.cs
- _AutoWebProxyScriptEngine.cs
- XPathNodeHelper.cs
- ConfigurationLocation.cs
- ClientBuildManagerCallback.cs
- LinearGradientBrush.cs
- DesignParameter.cs
- PropertyTab.cs
- DesignerUtils.cs
- SizeF.cs
- IPAddressCollection.cs
- GridViewRowCollection.cs
- LinkDescriptor.cs
- TrackingDataItem.cs
- RootCodeDomSerializer.cs
- ReaderWriterLockWrapper.cs
- controlskin.cs
- ICollection.cs
- CommentEmitter.cs
- SafeProcessHandle.cs
- BinaryMethodMessage.cs
- WebUtil.cs
- BaseServiceProvider.cs
- ScrollItemPattern.cs
- CodeActivityContext.cs
- PrivateFontCollection.cs
- WebFaultClientMessageInspector.cs