e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
46 lines
1.5 KiB
C#
46 lines
1.5 KiB
C#
//------------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Configuration
|
|
{
|
|
using System.Configuration;
|
|
using System.Net;
|
|
|
|
public sealed partial class DefaultPortElement : ConfigurationElement
|
|
{
|
|
public DefaultPortElement()
|
|
{
|
|
}
|
|
|
|
public DefaultPortElement(DefaultPortElement other)
|
|
{
|
|
this.Scheme = other.Scheme;
|
|
this.Port = other.Port;
|
|
}
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.Scheme, Options = ConfigurationPropertyOptions.IsKey | ConfigurationPropertyOptions.IsRequired)]
|
|
[StringValidator(MinLength = 1)]
|
|
public string Scheme
|
|
{
|
|
get { return (string)base[ConfigurationStrings.Scheme]; }
|
|
set
|
|
{
|
|
if (String.IsNullOrEmpty(value))
|
|
{
|
|
value = String.Empty;
|
|
}
|
|
base[ConfigurationStrings.Scheme] = value;
|
|
}
|
|
}
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.Port, DefaultValue = 0, Options = ConfigurationPropertyOptions.IsRequired)]
|
|
[IntegerValidator(MinValue = IPEndPoint.MinPort, MaxValue = IPEndPoint.MaxPort)]
|
|
public int Port
|
|
{
|
|
get { return (int)base[ConfigurationStrings.Port]; }
|
|
set { base[ConfigurationStrings.Port] = value; }
|
|
}
|
|
}
|
|
}
|