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