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
- XPathNodePointer.cs
- CreateUserWizard.cs
- LocalizationParserHooks.cs
- formatter.cs
- TraceListener.cs
- ProcessThread.cs
- StyleModeStack.cs
- SafeEventLogWriteHandle.cs
- X509Certificate2.cs
- BrowserCapabilitiesFactory35.cs
- ClientSettingsSection.cs
- UnauthorizedAccessException.cs
- RightsManagementInformation.cs
- Timer.cs
- EventManager.cs
- MULTI_QI.cs
- DocumentApplication.cs
- ProcessStartInfo.cs
- HttpModulesSection.cs
- SamlAuthorizationDecisionClaimResource.cs
- RuntimeArgument.cs
- InheritanceAttribute.cs
- Label.cs
- HostProtectionException.cs
- ColumnMap.cs
- WsatProxy.cs
- XmlDataImplementation.cs
- FixedSOMLineCollection.cs
- NativeCompoundFileAPIs.cs
- CodeDelegateCreateExpression.cs
- relpropertyhelper.cs
- UserControl.cs
- SystemColorTracker.cs
- ProviderMetadataCachedInformation.cs
- RoleServiceManager.cs
- UniformGrid.cs
- MemberDescriptor.cs
- DiscoveryReference.cs
- Win32.cs
- OutputCacheSettingsSection.cs
- MemberDescriptor.cs
- _ConnectionGroup.cs
- FontDialog.cs
- PathGeometry.cs
- DataTemplate.cs
- FormViewPagerRow.cs
- MouseButtonEventArgs.cs
- MemberPath.cs
- X509RawDataKeyIdentifierClause.cs
- SmiRequestExecutor.cs
- DataGridViewElement.cs
- TableRow.cs
- Helper.cs
- MenuScrollingVisibilityConverter.cs
- EntitySqlQueryCacheKey.cs
- IgnorePropertiesAttribute.cs
- XmlDataImplementation.cs
- SafeCryptHandles.cs
- RuntimeHandles.cs
- HttpsHostedTransportConfiguration.cs
- HtmlAnchor.cs
- SoapObjectReader.cs
- SystemException.cs
- connectionpool.cs
- MethodImplAttribute.cs
- FirewallWrapper.cs
- WebPartConnectionsCancelVerb.cs
- EventLogStatus.cs
- DataStorage.cs
- SiteOfOriginPart.cs
- XAMLParseException.cs
- ProfileInfo.cs
- ImplicitInputBrush.cs
- UrlPath.cs
- SqlUserDefinedAggregateAttribute.cs
- FacetValueContainer.cs
- PropertyItem.cs
- QilDataSource.cs
- SecurityState.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- TextTreeObjectNode.cs
- MailDefinition.cs
- TextBoxAutomationPeer.cs
- MetadataPropertyvalue.cs
- TreeNodeClickEventArgs.cs
- ExpressionEditorAttribute.cs
- HostedElements.cs
- WindowsMenu.cs
- HwndStylusInputProvider.cs
- BlobPersonalizationState.cs
- OdbcFactory.cs
- XmlLoader.cs
- GroupQuery.cs
- NetworkInformationPermission.cs
- VisualTarget.cs
- WindowVisualStateTracker.cs
- ContentOperations.cs
- UriExt.cs
- MethodBuilderInstantiation.cs
- Identifier.cs