Classe KeyPathsCollection
Herança
KeyPathsCollection
Conjunto: Realm.exe
Sintaxe
public class KeyPathsCollection : IEnumerable<KeyPath>, IEnumerable
Propriedades
|
Editar esta página
Ver fonte
completo
Obtém um valor KeyPathsCollection para notificações completas, para o qual as alterações em todas as propriedades de nível superior e 4 níveis aninhados gerarão uma notificação. Este é o valor KeyPathsCollection padrão.
Declaração
public static KeyPathsCollection Full { get; }
Valor da propriedade
|
Editar esta página
Ver fonte
Raso
Obtém um valor KeyPathsCollection para notificações superficiais, que gerará notificações somente para alterações na própria collection (por exemplo, quando um elemento é adicionado ou removido), mas não para alterações em qualquer uma das propriedades dos elementos da collection.
Declaração
public static KeyPathsCollection Shallow { get; }
Valor da propriedade
Métodos
|
Editar esta página
Ver fonte
Do(params KeyPath[])
Declaração
public static KeyPathsCollection Of(params KeyPath[] paths)
Parâmetros
Devoluções
|
Editar esta página
Ver fonte
De<T>(params Expression<Func<T, objeto?>>[])
Declaração
public static KeyPathsCollection Of<T>(params Expression<Func<T, object?>>[] expressions) where T : IRealmObject
Parâmetros
Devoluções
Parâmetros de tipo
Operadores
|
Editar esta página
Ver fonte
operador implícito KeyPathsCollection(KeyPath[])
Declaração
public static implicit operator KeyPathsCollection(KeyPath[] paths)
Parâmetros
Tipo |
Nome |
Descrição |
KeyPath[] |
caminhos |
|
Devoluções
|
Editar esta página
Ver fonte
operador implícito KeyPathsCollection(List<KeyPath>)
Declaração
public static implicit operator KeyPathsCollection(List<KeyPath> paths)
Parâmetros
Devoluções
|
Editar esta página
Ver fonte
operador implícito KeyPathsCollection(List<string>)
Declaração
public static implicit operator KeyPathsCollection(List<string> paths)
Parâmetros
Devoluções
|
Editar esta página
Ver fonte
operador implícito KeyPathsCollection(string[])
Declaração
public static implicit operator KeyPathsCollection(string[] paths)
Parâmetros
Tipo |
Nome |
Descrição |
string[] |
caminhos |
|
Devoluções
Implementos