summaryrefslogtreecommitdiff
path: root/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/BackupEndpointElement.cs
blob: cec12175d814a30be49c62e10934a25ac2ee0cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 class BackupEndpointElement : ConfigurationElement
	{
		[ConfigurationProperty ("endpointName", DefaultValue = null, Options = ConfigurationPropertyOptions.IsRequired)]
		public string EndpointName {
			get { return (string) base ["endpointName"]; }
			set { base ["endpointName"] = value; }
		}
	}
}