Skip to content

Commit

Permalink
Hiding other methods
Browse files Browse the repository at this point in the history
  • Loading branch information
papafe committed Apr 17, 2024
1 parent 199a069 commit cef1dc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Realm/Realm/DatabaseTypes/RealmValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ public string AsString()
/// </summary>
/// <exception cref="InvalidOperationException">Thrown if the underlying value is not of type <see cref="RealmValueType.List"/>.</exception>
/// <returns> A list representing the value stored in the database.</returns>
public IList<RealmValue> AsList()
internal IList<RealmValue> AsList()
{
EnsureType("List", RealmValueType.List);
return _listValue!;
Expand All @@ -521,7 +521,7 @@ public IList<RealmValue> AsList()
/// </summary>
/// <exception cref="InvalidOperationException">Thrown if the underlying value is not of type <see cref="RealmValueType.Dictionary"/>.</exception>
/// <returns> A dictionary representing the value stored in the database.</returns>
public IDictionary<string, RealmValue> AsDictionary()
internal IDictionary<string, RealmValue> AsDictionary()
{
EnsureType("Dictionary", RealmValueType.Dictionary);
return _dictionaryValue!;
Expand Down

0 comments on commit cef1dc9

Please sign in to comment.