C# 클래스 Subtext.Extensibility.Providers.ImportProvider

Provider for classes that implement an import process from another system.
상속: System.Configuration.Provider.ProviderBase
파일 보기 프로젝트 열기: ayende/Subtext 1 사용 예제들

공개 메소드들

메소드 설명
GatherImportInformation ( ) : Control

This method is called by the import engine in order to ask the provider what pieces of information it needs from the user in order to proceed with the import.

This method returns a Control used to gather the required installation information. This control will be returned back to the provider after the user provides the information.

Import ( Control populatedControl ) : void

Provides the import information as provided by the user back into the import provider and begins the import. The control passed in should be the same as that provided in GatherImportInformation, but with user values supplied within it.

Instance ( ) : ImportProvider

Returns the currently configured ImportProvider.

ValidateImportInformation ( Control control ) : string

Validates the installation information provided by the user. Returns a string with an explanation of why it is incorrect.

메소드 상세

GatherImportInformation() 공개 추상적인 메소드

This method is called by the import engine in order to ask the provider what pieces of information it needs from the user in order to proceed with the import.

This method returns a Control used to gather the required installation information. This control will be returned back to the provider after the user provides the information.

public abstract GatherImportInformation ( ) : Control
리턴 System.Web.UI.Control

Import() 공개 추상적인 메소드

Provides the import information as provided by the user back into the import provider and begins the import. The control passed in should be the same as that provided in GatherImportInformation, but with user values supplied within it.
public abstract Import ( Control populatedControl ) : void
populatedControl System.Web.UI.Control Populated control.
리턴 void

Instance() 공개 정적인 메소드

Returns the currently configured ImportProvider.
public static Instance ( ) : ImportProvider
리턴 ImportProvider

ValidateImportInformation() 공개 추상적인 메소드

Validates the installation information provided by the user. Returns a string with an explanation of why it is incorrect.
public abstract ValidateImportInformation ( Control control ) : string
control System.Web.UI.Control control used to provide information.
리턴 string