Class
AsyncFileReaderBase

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

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

cs-api-definition
public abstract class AsyncFileReaderBase : AsyncReaderBase

Inheritance: objectAsyncReaderBaseAsyncFileReaderBase

Derived Classes: AsyncKmlReaderAsyncShapeFileReader

Inherited Members AsyncReaderBase.ClearLayerPropertyAsyncReaderBase.ExtendedPropertySetPropertyAsyncReaderBase.ToolTipFormatPropertyAsyncReaderBase.ToolTipTemplatePropertyAsyncReaderBase.ToolTipStylePropertyAsyncReaderBase.CoordinateConverterPropertyAsyncReaderBase.ReadAsync()AsyncReaderBase.ReadAsync(object)AsyncReaderBase.CancelAsync()AsyncReaderBase.CancelAsync(int)AsyncReaderBase.ReaderPropertyChanged(DependencyObject, DependencyPropertyChangedEventArgs)AsyncReaderBase.CreateInstanceCore()AsyncReaderBase.ClearLayerAsyncReaderBase.LayerAsyncReaderBase.ExtendedPropertySetAsyncReaderBase.ToolTipFormatAsyncReaderBase.ToolTipTemplateAsyncReaderBase.ToolTipStyleAsyncReaderBase.CoordinateConverterAsyncReaderBase.ReadShapeDataCompletedAsyncReaderBase.PreviewReadShapeDataCompletedAsyncReaderBase.ProgressChangedAsyncReaderBase.PreviewReadShapeData

Constructors

AsyncFileReaderBase()

Initializes a new instance of the AsyncFileReaderBase class.

Declaration

cs-api-definition
protected AsyncFileReaderBase()

Fields

BaseAddressProperty

Identifies the BaseAddress dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty BaseAddressProperty

Field Value

DependencyProperty

RequestCacheLevelProperty

Identifies the RequestCacheLevel dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty RequestCacheLevelProperty

Field Value

DependencyProperty

SourceCollectionBaseZIndexProperty

Identifies the SourceCollectionBaseZIndex dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty SourceCollectionBaseZIndexProperty

Field Value

DependencyProperty

SourceCollectionProperty

Identifies the SourceCollection dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty SourceCollectionProperty

Field Value

DependencyProperty

SourceCollectionUseZIndexProperty

Identifies the SourceCollectionZIndex dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty SourceCollectionUseZIndexProperty

Field Value

DependencyProperty

SourceProperty

Identifies the Source dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty SourceProperty

Field Value

DependencyProperty

StreamSourceProperty

Identifies the Source dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty StreamSourceProperty

Field Value

DependencyProperty

TimeoutProperty

Identifies the Timeout dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty TimeoutProperty

Field Value

DependencyProperty

Properties

BaseAddress

Gets or sets the uri of the base address.

Declaration

cs-api-definition
public Uri BaseAddress { get; set; }

Property Value

Uri

RequestCacheLevel

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

Declaration

cs-api-definition
public RequestCacheLevel RequestCacheLevel { get; set; }

Property Value

RequestCacheLevel

Source

Gets or sets the uri of geospatial file.

Declaration

cs-api-definition
public Uri Source { get; set; }

Property Value

Uri

SourceCollection

Gets or sets the collection of geospatial sources.

Declaration

cs-api-definition
public AsyncReaderSourceCollection SourceCollection { get; set; }

Property Value

AsyncReaderSourceCollection

SourceCollectionBaseZIndex

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

Declaration

cs-api-definition
public int SourceCollectionBaseZIndex { get; set; }

Property Value

int

SourceCollectionUseZIndex

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

Declaration

cs-api-definition
public bool SourceCollectionUseZIndex { get; set; }

Property Value

bool

StreamSource

Gets or sets the stream of geospatial data.

Declaration

cs-api-definition
public Stream StreamSource { get; set; }

Property Value

Stream

Timeout

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

Declaration

cs-api-definition
public TimeSpan Timeout { get; set; }

Property Value

TimeSpan

Methods

OnReaderPropertyChanged(DependencyPropertyChangedEventArgs)

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

Declaration

cs-api-definition
protected override void OnReaderPropertyChanged(DependencyPropertyChangedEventArgs eventArgs)

Parameters

eventArgs

DependencyPropertyChangedEventArgs

Event arguments.

Overrides AsyncReaderBase.OnReaderPropertyChanged(DependencyPropertyChangedEventArgs)