Mono.Tools.CertificateManager.List C# (CSharp) Méthode

List() static private méthode

static private List ( ObjectType type, X509Store store, bool machine, string file, bool verbose ) : void
type ObjectType
store X509Store
machine bool
file string
verbose bool
Résultat void
		static void List (ObjectType type, X509Store store, bool machine, string file, bool verbose) 
		{
			switch (type) {
				case ObjectType.Certificate:
					foreach (X509Certificate x509 in store.Certificates) {
						DisplayCertificate (x509, machine, verbose);
					}
					break;
				case ObjectType.CRL:
					// TODO
					break;
				default:
					throw new NotSupportedException (type.ToString ());
			}
		}