22 lines
549 B
C#
22 lines
549 B
C#
|
// <copyright>
|
|||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
// </copyright>
|
|||
|
|
|||
|
namespace System.ServiceModel.Configuration
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Configuration;
|
|||
|
|
|||
|
[AttributeUsage(AttributeTargets.Property)]
|
|||
|
sealed class HttpMessageHandlerFactoryValidatorAttribute : ConfigurationValidatorAttribute
|
|||
|
{
|
|||
|
public override ConfigurationValidatorBase ValidatorInstance
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return new HttpMessageHandlerFactoryValidator();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|