Exemplo n.º 1
0
    void OnChildMoved(DataSnapshotAndroidImpl snapshot)
    {
        EventHandler <FirebaseChangedEventArgs> handler = childMovedEvent;

        if (handler != null)
        {
            handler(this, new FirebaseChangedEventArgs()
            {
                DataSnapshot = snapshot
            });
        }
    }
Exemplo n.º 2
0
    void OnValueUpdated(DataSnapshotAndroidImpl snapshot)
    {
        EventHandler <FirebaseChangedEventArgs> handler = valueUpdatedEvent;

        if (handler != null)
        {
            handler(this, new FirebaseChangedEventArgs()
            {
                DataSnapshot = snapshot
            });
        }
    }
Exemplo n.º 3
0
	void OnChildMoved(DataSnapshotAndroidImpl snapshot) {
		EventHandler<ChangedEventArgs> handler = childMovedEvent;
		if (handler != null)
		{
			handler(this, new ChangedEventArgs() { DataSnapshot = snapshot });
		}
	}
Exemplo n.º 4
0
	void OnValueUpdated(DataSnapshotAndroidImpl snapshot) {
		EventHandler<ChangedEventArgs> handler = valueUpdatedEvent;
		if (handler != null)
		{
			handler(this, new ChangedEventArgs() { DataSnapshot = snapshot });
		}
	}