Class KeyPathsCollection
Inheritance
KeyPathsCollection
Assembly: Realm.dll
Syntax
public class KeyPathsCollection : IEnumerable<KeyPath>, IEnumerable
Properties
|
Edit this page
View Source
Full
Gets a KeyPathsCollection value for full notifications, for which changes to all top-level properties and 4 nested levels will raise a notification. This is the default KeyPathsCollection value.
Declaration
public static KeyPathsCollection Full { get; }
Property Value
|
Edit this page
View Source
Shallow
Gets a KeyPathsCollection value for shallow notifications, that will raise notifications only for changes to the collection itself (for example when an element is added or removed),
but not for changes to any of the properties of the elements of the collection.
Declaration
public static KeyPathsCollection Shallow { get; }
Property Value
Methods
|
Edit this page
View Source
Of(params KeyPath[])
Declaration
public static KeyPathsCollection Of(params KeyPath[] paths)
Parameters
Returns
|
Edit this page
View Source
Of<T>(params Expression<Func<T, object?>>[])
Declaration
public static KeyPathsCollection Of<T>(params Expression<Func<T, object?>>[] expressions) where T : IRealmObject
Parameters
Returns
Type Parameters
Operators
|
Edit this page
View Source
implicit operator KeyPathsCollection(KeyPath[])
Declaration
public static implicit operator KeyPathsCollection(KeyPath[] paths)
Parameters
Type |
Name |
Description |
KeyPath[] |
paths |
|
Returns
|
Edit this page
View Source
implicit operator KeyPathsCollection(List<KeyPath>)
Declaration
public static implicit operator KeyPathsCollection(List<KeyPath> paths)
Parameters
Returns
|
Edit this page
View Source
implicit operator KeyPathsCollection(List<string>)
Declaration
public static implicit operator KeyPathsCollection(List<string> paths)
Parameters
Returns
|
Edit this page
View Source
implicit operator KeyPathsCollection(string[])
Declaration
public static implicit operator KeyPathsCollection(string[] paths)
Parameters
Type |
Name |
Description |
string[] |
paths |
|
Returns
Implements