Firebase.Database.ChildChangedEventArgs

Child changed event arguments.

Summary

This data is sent when any of the following events are raised. Query.ChildAdded , Query.ChildChanged , Query.ChildRemoved , or Query.ChildMoved

Inheritance

Inherits from: EventArgs

Properties

DatabaseError
The presence of a DatabaseError indicates that there was an issue subscribing the event to the given DatabaseReference location.
PreviousChildName
string
The key name of sibling location ordered before the new child.
Snapshot
Gets the data snapshot for this update if it exists.

Properties

DatabaseError

DatabaseError DatabaseError

The presence of a DatabaseError indicates that there was an issue subscribing the event to the given DatabaseReference location.

The database error.

PreviousChildName

string PreviousChildName

The key name of sibling location ordered before the new child.

This will be null for the first child node of a location.

The name of the previous child.

Snapshot

DataSnapshot Snapshot

Gets the data snapshot for this update if it exists.

The snapshot.