mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
22 lines
471 B
C#
22 lines
471 B
C#
namespace mRemoteNG.Config.DataProviders
|
|
{
|
|
public class InMemoryStringDataProvider : IDataProvider<string>
|
|
{
|
|
private string _contents;
|
|
|
|
public InMemoryStringDataProvider(string initialContents = "")
|
|
{
|
|
_contents = initialContents;
|
|
}
|
|
|
|
public string Load()
|
|
{
|
|
return _contents;
|
|
}
|
|
|
|
public void Save(string contents)
|
|
{
|
|
_contents = contents;
|
|
}
|
|
}
|
|
} |