File: System\ServiceModel\Routing\Configuration\FilterType.cs
Project: ndp\cdf\src\NetFx40\System.ServiceModel.Routing\System.ServiceModel.Routing.csproj (System.ServiceModel.Routing)
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//----------------------------------------------------------------
 
namespace System.ServiceModel.Routing.Configuration
{
    using System;
 
    public enum FilterType
    {
        Action,
        EndpointAddress,
        PrefixEndpointAddress,
        And,
        Custom,
        EndpointName,
        MatchAll,
        XPath
    }
}