ClassAsyncFileReaderBase
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:
public abstract class AsyncFileReaderBase : AsyncReaderBase
Inheritance: objectAsyncReaderBaseAsyncFileReaderBase
Derived Classes:
Inherited Members
Constructors
AsyncFileReaderBase()
Initializes a new instance of the AsyncFileReaderBase class.
Declaration
protected AsyncFileReaderBase()
Fields
BaseAddressProperty
Identifies the BaseAddress dependency property.
Declaration
public static readonly DependencyProperty BaseAddressProperty
Field Value
DependencyProperty
RequestCacheLevelProperty
Identifies the RequestCacheLevel dependency property.
Declaration
public static readonly DependencyProperty RequestCacheLevelProperty
Field Value
DependencyProperty
SourceCollectionBaseZIndexProperty
Identifies the SourceCollectionBaseZIndex dependency property.
Declaration
public static readonly DependencyProperty SourceCollectionBaseZIndexProperty
Field Value
DependencyProperty
SourceCollectionProperty
Identifies the SourceCollection dependency property.
Declaration
public static readonly DependencyProperty SourceCollectionProperty
Field Value
DependencyProperty
SourceCollectionUseZIndexProperty
Identifies the SourceCollectionZIndex dependency property.
Declaration
public static readonly DependencyProperty SourceCollectionUseZIndexProperty
Field Value
DependencyProperty
SourceProperty
Identifies the Source dependency property.
Declaration
public static readonly DependencyProperty SourceProperty
Field Value
DependencyProperty
StreamSourceProperty
Identifies the Source dependency property.
Declaration
public static readonly DependencyProperty StreamSourceProperty
Field Value
DependencyProperty
TimeoutProperty
Identifies the Timeout dependency property.
Declaration
public static readonly DependencyProperty TimeoutProperty
Field Value
DependencyProperty
Properties
BaseAddress
Gets or sets the uri of the base address.
Declaration
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
public RequestCacheLevel RequestCacheLevel { get; set; }
Property Value
Source
Gets or sets the uri of geospatial file.
Declaration
public Uri Source { get; set; }
Property Value
Uri
SourceCollection
Gets or sets the collection of geospatial sources.
Declaration
public AsyncReaderSourceCollection SourceCollection { get; set; }
Property Value
SourceCollectionBaseZIndex
Gets or sets the start z-index for reading multiple sources.
Declaration
public int SourceCollectionBaseZIndex { get; set; }
Property Value
SourceCollectionUseZIndex
Gets or sets the flag which allows to use incremental z-index for shapes of each read sources.
Declaration
public bool SourceCollectionUseZIndex { get; set; }
Property Value
StreamSource
Gets or sets the stream of geospatial data.
Methods
OnReaderPropertyChanged(DependencyPropertyChangedEventArgs)
Occurs when the properties which are used for loading are changed.
Declaration
protected override void OnReaderPropertyChanged(DependencyPropertyChangedEventArgs eventArgs)
Parameters
eventArgs
DependencyPropertyChangedEventArgs
Event arguments.
Overrides