Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Dispatcher / PartialTrustValidationBehavior.cs / 1 / PartialTrustValidationBehavior.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Dispatcher { using System.ServiceModel.Channels; using System.ServiceModel; using System.ServiceModel.Description; using System.Collections.ObjectModel; using System.Collections.Generic; using System.Xml; using System.Security; using System.Security.Permissions; using System.ServiceModel.MsmqIntegration; class PartialTrustValidationBehavior : IServiceBehavior, IEndpointBehavior { static PartialTrustValidationBehavior instance = null; internal static PartialTrustValidationBehavior Instance { get { // no need to synchronize -- it's ok if two are created if (instance == null) { instance = new PartialTrustValidationBehavior(); } return instance; } } void ValidateEndpoint(ServiceEndpoint endpoint) { Binding binding = endpoint.Binding; if (binding != null) { new BindingValidator(endpoint.Binding).Validate(); } } #region IEndpointBehavior Members void IEndpointBehavior.Validate(ServiceEndpoint endpoint) { if (endpoint == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("endpoint"); ValidateEndpoint(endpoint); } void IEndpointBehavior.AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters) { } void IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) { } void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) { } #endregion #region IServiceBehavior Members public void Validate(ServiceDescription description, ServiceHostBase serviceHostBase) { if (description == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("description"); for (int i = 0; i < description.Endpoints.Count; i++) { ServiceEndpoint endpoint = description.Endpoints[i]; if (endpoint != null) { ValidateEndpoint(endpoint); } } } public void AddBindingParameters(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase, Collectionendpoints, BindingParameterCollection bindingParameters) { } public void ApplyDispatchBehavior(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase) { } #endregion struct BindingValidator { static Type[] unsupportedBindings = new Type[] { typeof(NetTcpBinding), typeof(NetNamedPipeBinding), typeof(WSDualHttpBinding), typeof(WS2007FederationHttpBinding), typeof(WSFederationHttpBinding), typeof(NetMsmqBinding), typeof(NetPeerTcpBinding), typeof(MsmqIntegrationBinding), }; static Type[] unsupportedBindingElements = new Type[] { typeof(AsymmetricSecurityBindingElement), typeof(CompositeDuplexBindingElement), typeof(MsmqTransportBindingElement), typeof(NamedPipeTransportBindingElement), typeof(OneWayBindingElement), typeof(PeerCustomResolverBindingElement), typeof(PeerTransportBindingElement), typeof(PnrpPeerResolverBindingElement), typeof(ReliableSessionBindingElement), typeof(SymmetricSecurityBindingElement), typeof(TcpTransportBindingElement), typeof(TransportSecurityBindingElement), typeof(MtomMessageEncodingBindingElement), }; Binding binding; internal BindingValidator(Binding binding) { this.binding = binding; } internal void Validate() { System.Diagnostics.Debug.Assert(binding != null, "BindingValidator was not constructed with a valid Binding instance"); Type bindingType = binding.GetType(); if (IsUnsupportedBindingType(bindingType)) { UnsupportedSecurityCheck(SR.FullTrustOnlyBindingSecurityCheck1, bindingType); } // special-case error message for WSHttpBindings bool isWSHttpBinding = typeof(WSHttpBinding).IsAssignableFrom(bindingType); string sr = isWSHttpBinding ? SR.FullTrustOnlyBindingElementSecurityCheckWSHttpBinding1 : SR.FullTrustOnlyBindingElementSecurityCheck1; BindingElementCollection elements = binding.CreateBindingElements(); foreach (BindingElement element in elements) { Type bindingElementType = element.GetType(); if (element != null && IsUnsupportedBindingElementType(bindingElementType)) { UnsupportedSecurityCheck(sr, bindingElementType); } } } bool IsUnsupportedBindingType(Type bindingType) { for (int i = 0; i < unsupportedBindings.Length; i++) { if (unsupportedBindings[i] == bindingType) return true; } return false; } bool IsUnsupportedBindingElementType(Type bindingElementType) { for (int i = 0; i < unsupportedBindingElements.Length; i++) { if (unsupportedBindingElements[i] == bindingElementType) return true; } return false; } static readonly PermissionSet fullTrust = new PermissionSet(PermissionState.Unrestricted); void UnsupportedSecurityCheck(string resource, Type type) { try { fullTrust.Demand(); } catch (SecurityException) { throw new InvalidOperationException(SR.GetString(resource, binding.Name, type)); } } } } } // 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
- DocumentOrderQuery.cs
- ExpressionNormalizer.cs
- GenericAuthenticationEventArgs.cs
- UpdateEventArgs.cs
- TextTreeInsertElementUndoUnit.cs
- HttpStreamMessage.cs
- ClientSettingsProvider.cs
- DesignRelation.cs
- AssemblyUtil.cs
- UpdateTracker.cs
- ListItemConverter.cs
- CustomSignedXml.cs
- BooleanConverter.cs
- Helpers.cs
- DataGridViewCellStyleConverter.cs
- StringToken.cs
- SelectedDatesCollection.cs
- ServiceModelReg.cs
- ResourceContainer.cs
- AnnotationComponentChooser.cs
- StorageSetMapping.cs
- XmlIlGenerator.cs
- MarshalByValueComponent.cs
- RemoteX509AsymmetricSecurityKey.cs
- RawMouseInputReport.cs
- KeyProperty.cs
- ClientSession.cs
- CacheAxisQuery.cs
- FixedSOMContainer.cs
- ISCIIEncoding.cs
- FieldToken.cs
- DataKey.cs
- CapabilitiesSection.cs
- CollectionType.cs
- NavigationEventArgs.cs
- BrowserCapabilitiesFactory.cs
- RewritingPass.cs
- List.cs
- ArgumentsParser.cs
- ProcessStartInfo.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- FacetValueContainer.cs
- LocalizableAttribute.cs
- ProcessHostServerConfig.cs
- ProfileGroupSettingsCollection.cs
- StylusLogic.cs
- validation.cs
- PropertyGroupDescription.cs
- Merger.cs
- SQLInt64.cs
- SystemIcmpV6Statistics.cs
- SynchronizationContext.cs
- SchemaImporterExtensionElementCollection.cs
- ToolboxItemFilterAttribute.cs
- Attributes.cs
- InProcStateClientManager.cs
- TextElementEnumerator.cs
- WebPartMenu.cs
- LayoutEditorPart.cs
- DesignerHelpers.cs
- RequestResizeEvent.cs
- MediaPlayerState.cs
- SimpleHandlerBuildProvider.cs
- HttpProfileGroupBase.cs
- DataGridViewImageCell.cs
- ConnectionsZoneAutoFormat.cs
- XmlException.cs
- glyphs.cs
- PaperSize.cs
- XmlLoader.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- SqlTrackingService.cs
- TextEncodedRawTextWriter.cs
- NonSerializedAttribute.cs
- MenuAutomationPeer.cs
- Permission.cs
- Site.cs
- SchemaSetCompiler.cs
- RenderOptions.cs
- SecUtil.cs
- Delegate.cs
- ModifierKeysConverter.cs
- ServiceContractViewControl.Designer.cs
- DbException.cs
- XmlSchemaSequence.cs
- BoundColumn.cs
- CommandManager.cs
- Line.cs
- EmptyStringExpandableObjectConverter.cs
- SmtpNetworkElement.cs
- CompressionTransform.cs
- StretchValidation.cs
- DecoderFallback.cs
- GeneralTransform3D.cs
- SoapServerMessage.cs
- LabelEditEvent.cs
- GenerateTemporaryTargetAssembly.cs
- SQLSingleStorage.cs
- MetaTableHelper.cs
- RuntimeComponentFilter.cs