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

Base class for the asynchronous map shape readers for ESRI shape-file and KML.

Definition

Constructors

Initializes a new instance of the AsyncFileReaderBase class.

C#
protected AsyncFileReaderBase()

Fields

BaseAddressProperty

DependencyProperty

Identifies the BaseAddress dependency property.

C#
public static readonly DependencyProperty BaseAddressProperty

RequestCacheLevelProperty

DependencyProperty

Identifies the RequestCacheLevel dependency property.

C#
public static readonly DependencyProperty RequestCacheLevelProperty

Identifies the SourceCollectionBaseZIndex dependency property.

C#
public static readonly DependencyProperty SourceCollectionBaseZIndexProperty

SourceCollectionProperty

DependencyProperty

Identifies the SourceCollection dependency property.

C#
public static readonly DependencyProperty SourceCollectionProperty

Identifies the SourceCollectionZIndex dependency property.

C#
public static readonly DependencyProperty SourceCollectionUseZIndexProperty

SourceProperty

DependencyProperty

Identifies the Source dependency property.

C#
public static readonly DependencyProperty SourceProperty

StreamSourceProperty

DependencyProperty

Identifies the Source dependency property.

C#
public static readonly DependencyProperty StreamSourceProperty

TimeoutProperty

DependencyProperty

Identifies the Timeout dependency property.

C#
public static readonly DependencyProperty TimeoutProperty

Properties

Gets or sets the uri of the base address.

C#
public Uri BaseAddress { get; set; }

Gets or sets the request cache level which is used for downloading data from Uri which is specified in the Source property.

C#
public RequestCacheLevel RequestCacheLevel { get; set; }

Gets or sets the uri of geospatial file.

C#
public Uri Source { get; set; }

Gets or sets the collection of geospatial sources.

C#
public AsyncReaderSourceCollection SourceCollection { get; set; }

Gets or sets the start z-index for reading multiple sources.

C#
public int SourceCollectionBaseZIndex { get; set; }

Gets or sets the flag which allows to use incremental z-index for shapes of each read sources.

C#
public bool SourceCollectionUseZIndex { get; set; }

Gets or sets the stream of geospatial data.

C#
public Stream StreamSource { get; set; }

Gets or sets the timeout which is used for reading of the stream.

C#
public TimeSpan Timeout { get; set; }

Methods

Occurs when the properties which are used for loading are changed.

C#
protected override void OnReaderPropertyChanged(DependencyPropertyChangedEventArgs eventArgs)
Parameters:eventArgsDependencyPropertyChangedEventArgs

Event arguments.

Overrides: AsyncReaderBase.OnReaderPropertyChanged(DependencyPropertyChangedEventArgs)