From f75b870cca4bcd6f574f6fa495694fe35509ac1c Mon Sep 17 00:00:00 2001 From: antiduh Date: Tue, 1 Jul 2014 21:20:03 +0000 Subject: [PATCH] Make PackageSupport public so consumers can learn about packages. --- NSspi/PackageSupport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NSspi/PackageSupport.cs b/NSspi/PackageSupport.cs index baff13c..98bc3b1 100644 --- a/NSspi/PackageSupport.cs +++ b/NSspi/PackageSupport.cs @@ -8,9 +8,9 @@ using System.Threading.Tasks; namespace NSspi { - internal static class PackageSupport + public static class PackageSupport { - internal static SecPkgInfo GetPackageCapabilities( string packageName ) + public static SecPkgInfo GetPackageCapabilities( string packageName ) { SecPkgInfo info; SecurityStatus status = SecurityStatus.InternalError;