Ejemplo n.º 1
0
        /// <summary>
        /// Closes the stream
        /// </summary>
        public void CloseStream()
        {
            IsStreamClosed = true;

            if (StreamingClient != null)
            {
                StreamingClient.Dispose();
            }
        }
Ejemplo n.º 2
0
 public void Dispose()
 {
     restClient?.Dispose();
     streamingClient?.Dispose();
 }