Mono.Btls.MonoBtlsX509StoreManager.HasStore C# (CSharp) Method

HasStore() public static method

public static HasStore ( MonoBtlsX509StoreType type ) : bool
type MonoBtlsX509StoreType
return bool
		public static bool HasStore (MonoBtlsX509StoreType type)
		{
#if ANDROID
			return false;
#else
			var path = GetStorePath (type);
			return path != null && Directory.Exists (path);
#endif
		}