PoloniexApi.Net by Jojatekok

<PackageReference Include="PoloniexApi.Net" Version="1.2.0" />

 ObservableDictionary<TKey, TValue>

public int Count { get; }

public bool IsReadOnly { get; }

public TValue this[TKey key] { get; set; }

public ICollection<TKey> Keys { get; }

public ICollection<TValue> Values { get; }

public ObservableDictionary(IDictionary<TKey, TValue> dictionary)

public ObservableDictionary(IEqualityComparer<TKey> comparer)

public ObservableDictionary(int capacity)

public ObservableDictionary(IDictionary<TKey, TValue> dictionary, IEqualityComparer<TKey> comparer)

public ObservableDictionary(int capacity, IEqualityComparer<TKey> comparer)

public void Add(TKey key, TValue value)

public void Add(KeyValuePair<TKey, TValue> item)

public void AddRange(IDictionary<TKey, TValue> items)

public void Clear()

public bool Contains(KeyValuePair<TKey, TValue> item)

public bool ContainsKey(TKey key)

public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)

public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()

protected virtual void OnPropertyChanged(string propertyName)

public bool Remove(TKey key)

public bool Remove(KeyValuePair<TKey, TValue> item)

public bool TryGetValue(TKey key, out TValue value)