File: AspNetCompatibilityRequirementsAttribute.cs

package info (click to toggle)
mono 4.6.2.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 778,148 kB
  • ctags: 914,052
  • sloc: cs: 5,779,509; xml: 2,773,713; ansic: 432,645; sh: 14,749; makefile: 12,361; perl: 2,488; python: 1,434; cpp: 849; asm: 531; sql: 95; sed: 16; php: 1
file content (59 lines) | stat: -rw-r--r-- 2,536 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Activation
{
    using System.Collections.Generic;
    using System.ServiceModel.Channels;
    using System.ServiceModel.Description;
    using System.Collections.ObjectModel;
    using System.ServiceModel.Dispatcher;

    // This attribute specifies what the service implementation requires for AspNet Integration mode.
    [AttributeUsage(ServiceModelAttributeTargets.ServiceBehavior)]
    public sealed class AspNetCompatibilityRequirementsAttribute : Attribute, IServiceBehavior
    {
        // AppCompat: The default has been changed in 4.5 to Allowed so that fewer people need to change it.
        // For deployment compat purposes, apps targeting 4.0 should behave the same as if 4.5 was not installed.
        AspNetCompatibilityRequirementsMode requirementsMode = OSEnvironmentHelper.IsApplicationTargeting45 ?
            AspNetCompatibilityRequirementsMode.Allowed : AspNetCompatibilityRequirementsMode.NotAllowed;

        // NotAllowed: Validates that the service is not running in the AspNetCompatibility mode.
        //
        // Required: Validates that service runs in the AspNetCompatibility mode only.
        //
        // Allowed: Allows both AspNetCompatibility mode and the default Indigo mode.
        //
        public AspNetCompatibilityRequirementsMode RequirementsMode
        {
            get
            {
                return this.requirementsMode;
            }
            set
            {
                AspNetCompatibilityRequirementsModeHelper.Validate(value);
                this.requirementsMode = value;
            }
        }

        void IServiceBehavior.AddBindingParameters(ServiceDescription description, ServiceHostBase serviceHostBase, Collection<ServiceEndpoint> endpoints, BindingParameterCollection parameters)
        {
        }

        void IServiceBehavior.Validate(ServiceDescription description, ServiceHostBase serviceHostBase)
        {
            if (description == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("description");
            }

            AspNetEnvironment.Current.ValidateCompatibilityRequirements(RequirementsMode);
        }

        void IServiceBehavior.ApplyDispatchBehavior(ServiceDescription description, ServiceHostBase serviceHostBase)
        {
        }
    }
}