C# 클래스 MapAround.DataProviders.RasterProviderManager

Represents a registry of raster providers.
파일 보기 프로젝트 열기: gkrsu/maparound.core

공개 메소드들

메소드 설명
GetProvider ( string providerName ) : IRasterProvider

Creates and initializes a new instance of the raster provider.

GetProvider ( string providerName, string>.Dictionary parameters ) : IRasterProvider

Creates and initializes a new instance of the raster provider.

GetProviderParameterNames ( string providerName ) : string[]

Gets a list containing names of the initialization parameters of the raster provider.

RegisterProvider ( IRasterProviderHolder holder, bool forceUpdate ) : void

Registers a raster provider.

Registered ( string providerName ) : bool

Determines whether the raster provider is registered.

ReleaseProviderIfNeeded ( string providerName, IRasterProvider provider ) : void

Performs an actions need to be done for finalization of the raster provider.

Holders can provide various scenarious of disposing resources for raster providers of the same class.

UnRegisterProvider ( string providerName ) : void

Removes registration info.

메소드 상세

GetProvider() 공개 메소드

Creates and initializes a new instance of the raster provider.
public GetProvider ( string providerName ) : IRasterProvider
providerName string A name of the spatial data provider
리턴 IRasterProvider

GetProvider() 공개 메소드

Creates and initializes a new instance of the raster provider.
public GetProvider ( string providerName, string>.Dictionary parameters ) : IRasterProvider
providerName string A name of the raster provide
parameters string>.Dictionary A dictionary instance containing initialization parameter values
리턴 IRasterProvider

GetProviderParameterNames() 공개 메소드

Gets a list containing names of the initialization parameters of the raster provider.
public GetProviderParameterNames ( string providerName ) : string[]
providerName string A name of the raster provider
리턴 string[]

RegisterProvider() 공개 메소드

Registers a raster provider.
public RegisterProvider ( IRasterProviderHolder holder, bool forceUpdate ) : void
holder IRasterProviderHolder A holder of raster provider
forceUpdate bool A value indicating whether an existing registration info /// will be updated
리턴 void

Registered() 공개 메소드

Determines whether the raster provider is registered.
public Registered ( string providerName ) : bool
providerName string A name of the raster provider
리턴 bool

ReleaseProviderIfNeeded() 공개 메소드

Performs an actions need to be done for finalization of the raster provider.

Holders can provide various scenarious of disposing resources for raster providers of the same class.

public ReleaseProviderIfNeeded ( string providerName, IRasterProvider provider ) : void
providerName string A name of the raster provider
provider IRasterProvider A provider instance for finalization
리턴 void

UnRegisterProvider() 공개 메소드

Removes registration info.
public UnRegisterProvider ( string providerName ) : void
providerName string A name of the raster provider
리턴 void