Exemplo n.º 1
0
 public ChunkUploadErrorEventArgs(OneDriveClient oneDriveClient, OneDriveItem parent, Exception exception, byte[] chunk, long @from, long to, int attemptCount)
 {
     OneDriveClient = oneDriveClient;
     Parent         = parent;
     Exception      = exception;
     Chunk          = chunk;
     From           = from;
     To             = to;
     AttemptCount   = attemptCount;
 }
Exemplo n.º 2
0
 public OneDriveItemConverter(OneDriveClient client)
 {
     _client = client ?? throw new ArgumentNullException(nameof(client));
 }