Exemplo n.º 1
0
        /// <inheritdoc />
        public void OnError(Exception error)
        {
            if (error == null)
            {
                throw new ArgumentNullException(nameof(error));
            }

            AttachmentObserver.OnError(error);
        }
Exemplo n.º 2
0
        /// <inheritdoc />
        public void OnNext(ScreenshotInfo value)
        {
            if (value == null)
            {
                throw new ArgumentNullException(nameof(value));
            }

            AttachmentObserver.OnNext(new ActionFileAttachment(value.FileName + Format.Extension, string.Empty));
        }
Exemplo n.º 3
0
 /// <inheritdoc />
 public void OnCompleted()
 {
     AttachmentObserver.OnCompleted();
 }