New to Telerik UI for WPFStart a free 30-day trial

Represents AsyncReaderFile collection.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
[TypeConverter(typeof(AsyncReaderSourceCollectionConverter))]
public class AsyncReaderSourceCollection : FreezableCollection<AsyncReaderSource>

Inheritance: objectAsyncReaderSourceCollection

Constructors

Initializes a new instance of the AsyncReaderSourceCollection class.

C#
public AsyncReaderSourceCollection()

Initializes a new instance of the AsyncReaderSourceCollection class.

C#
public AsyncReaderSourceCollection(IEnumerable enumerable)
Parameters:enumerableIEnumerable

The source IEnumerable of Uri or of string.

Operators

Performs an explicit conversion from collection of string to AsyncReaderSourceCollection.

C#
public static explicit operator AsyncReaderSourceCollection(Collection<string> data)
Parameters:dataCollection<string>

The collection of string.

Returns:

AsyncReaderSourceCollection

The result of the conversion.

Performs an explicit conversion from collection of Uri to AsyncReaderSourceCollection.

C#
public static explicit operator AsyncReaderSourceCollection(Collection<Uri> data)
Parameters:dataCollection<Uri>

The collection of Uri.

Returns:

AsyncReaderSourceCollection

The result of the conversion.

Performs an explicit conversion from list of string to AsyncReaderSourceCollection.

C#
public static explicit operator AsyncReaderSourceCollection(List<string> data)
Parameters:dataList<string>

The list of string.

Returns:

AsyncReaderSourceCollection

The result of the conversion.

Performs an explicit conversion from list of Uri to AsyncReaderSourceCollection.

C#
public static explicit operator AsyncReaderSourceCollection(List<Uri> data)
Parameters:dataList<Uri>

The list of Uri.

Returns:

AsyncReaderSourceCollection

The result of the conversion.

Performs an explicit conversion from object[] to AsyncReaderSourceCollection.

C#
public static explicit operator AsyncReaderSourceCollection(object[] data)
Parameters:dataobject[]

The array.

Returns:

AsyncReaderSourceCollection

The result of the conversion.