Re: VB.NET: How to interpret Upload Results
If my transfer operation is transferring more than one file could I get more than one error message? So for example could I have a message in TransferOperationResult.Failures[0].Message and TransferOperationResult.Failures[1].Message?
Quite rarely, but it is possible.
If that it the situation then can I get a count of the failures and loop through them? Maybe TransferOperationResult.Failures.count?
It's
.Count
(capital C
, while that does not matter in VB.NET).
The
Failures
is a ICollection
.