7 references to ImpersonationOption
System.ServiceModel.Primitives (7)
System\ServiceModel\ImpersonationOption.cs (7)
17public static bool IsDefined(ImpersonationOption option) 19return (option == ImpersonationOption.NotAllowed || 20option == ImpersonationOption.Allowed || 21option == ImpersonationOption.Required); 24internal static bool AllowedOrRequired(ImpersonationOption option) 26return (option == ImpersonationOption.Allowed || 27option == ImpersonationOption.Required);