Returns a new IList object containing the filtered Upload objects.

Namespace:  EasyAlgo.EAUpload
Assembly:  EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.2.0

Syntax

C#
public static IList GetUploads(
	UploadState state
)
Visual Basic (Declaration)
Public Shared Function GetUploads ( _
	state As UploadState _
) As IList

Parameters

state
Type: EasyAlgo.EAUpload..::.UploadState
An UploadState value that specifies a filter for Upload objects to be returned from the uploads collection.

Return Value

A new IList object containing the collection of Upload objects which had been filtered by state parameter.
nullNothingnullptra null reference (Nothing in Visual Basic) if collection does not containes Upload objects with specified UploadState.

Remarks

Note: EAUpload component can process massive amount of concurrent uploads. Upload objects collection can be used by multiple threads simultaneously, therefore be careful when you use GetUploads(UploadState) method.

See Also