C# Class Realms.RealmConfigurationBase

Base class for specifying configuration settings that affect the Realm's behavior.
Its main role is generating a canonical path from whatever absolute, relative subdirectory, or just filename the user supplies.
Exibir arquivo Open project: realm/realm-dotnet Class Usage Examples

Public Methods

Method Description
GetPathToRealm ( string optionalPath = null ) : string

Utility to build a path in which a Realm will be created so can consistently use filenames and relative paths.

Private Methods

Method Description
CreateRealm ( RealmSchema schema ) : Realm
RealmConfigurationBase ( string optionalPath ) : System

Method Details

GetPathToRealm() public static method

Utility to build a path in which a Realm will be created so can consistently use filenames and relative paths.
public static GetPathToRealm ( string optionalPath = null ) : string
optionalPath string Path to the Realm, must be a valid full path for the current platform, relative subdirectory, or just filename.
return string