summaryrefslogtreecommitdiff
path: root/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/RoutingExtensionElement.cs
blob: 93666e2d869ea3d37bf56aa4a030a1c6de306f5b (plain)
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
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Configuration;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Configuration;
using System.ServiceModel.Description;
using System.ServiceModel.Dispatcher;

namespace System.ServiceModel.Routing.Configuration
{
	public sealed class RoutingExtensionElement : BehaviorExtensionElement
	{
		public override Type BehaviorType {
			get { return typeof (RoutingExtension); }
		}

		[ConfigurationProperty ("filterTableName", DefaultValue = null)]
		public string FilterTableName {
			get { return (string) base ["filterTableName"]; }
			set { base ["filterTableName"] = value; }
		}

		[ConfigurationProperty ("routeOnHeadersOnly", DefaultValue = true, Options = ConfigurationPropertyOptions.None)]
		public bool RouteOnHeadersOnly {
			get { return (bool) base ["routeOnHeadersOnly"]; }
			set { base ["routeOnHeadersOnly"] = value; }
		}

		[ConfigurationProperty ("soapProcessingEnabled", DefaultValue = true)]
		public bool SoapProcessingEnabled {
			get { return (bool) base ["soapProcessingEnabled"]; }
			set { base ["soapProcessingEnabled"] = value; }
		}

		protected internal override object CreateBehavior ()
		{
			var table = RoutingSection.CreateFilterTable (FilterTableName);

			var cfg = new RoutingConfiguration (table, RouteOnHeadersOnly) { SoapProcessingEnabled = this.SoapProcessingEnabled };
			return new RoutingBehavior (cfg);
		}
	}
}