e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Configuration
|
|
{
|
|
using System;
|
|
using System.Configuration;
|
|
using System.ServiceModel.Description;
|
|
|
|
public sealed partial class PolicyImporterElement : ConfigurationElement
|
|
{
|
|
public PolicyImporterElement()
|
|
{
|
|
}
|
|
|
|
public PolicyImporterElement(string type)
|
|
{
|
|
this.Type = type;
|
|
}
|
|
|
|
public PolicyImporterElement(Type type)
|
|
{
|
|
SubclassTypeValidator validator = new SubclassTypeValidator(typeof(IPolicyImportExtension));
|
|
validator.Validate(type);
|
|
this.Type = type.AssemblyQualifiedName;
|
|
}
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.Type, Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
|
|
[StringValidator(MinLength = 1)]
|
|
public string Type
|
|
{
|
|
get
|
|
{ return (string)base[ConfigurationStrings.Type]; }
|
|
set
|
|
{
|
|
if (String.IsNullOrEmpty(value))
|
|
{
|
|
value = String.Empty;
|
|
}
|
|
base[ConfigurationStrings.Type] = value;
|
|
}
|
|
}
|
|
}
|
|
}
|