blob: 5baee7ecd6b3444cb448cb5da9c2a58f0afd16ef [file] [log] [blame]
using System;
namespace Apache
{
namespace Geode
{
namespace DotNetCore
{
public interface ICacheFactory : IDisposable
{
IGeodeCache CreateCache();
ICacheFactory SetProperty(String name, String value);
IAuthInitialize AuthInitialize { set; }
bool PdxIgnoreUnreadFields { set; }
bool PdxReadSerialized { set; }
String Version { get; }
String ProductDescription { get; }
}
}
}
}