C# 클래스 ScrewTurn.Wiki.PluginFramework.ComponentInformation

Contains information about a Provider.
파일 보기 프로젝트 열기: mono/ScrewTurnWiki 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
author string
name string
updateUrl string
url string
version string

공개 메소드들

메소드 설명
ComponentInformation ( string name, string author, string version, string url, string updateUrl ) : System

Initializes a new instance of the ComponentInformation class.

메소드 상세

ComponentInformation() 공개 메소드

Initializes a new instance of the ComponentInformation class.
public ComponentInformation ( string name, string author, string version, string url, string updateUrl ) : System
name string The Name of the Component.
author string The Author of the Component.
version string The component version.
url string The info URL of the Component/Author.
updateUrl string The update URL of the component, or null.
리턴 System

프로퍼티 상세

author 보호되어 있는 프로퍼티

The Author of the Component.
protected string author
리턴 string

name 보호되어 있는 프로퍼티

The Name of the Component.
protected string name
리턴 string

updateUrl 보호되어 있는 프로퍼티

The component update URL which should point to a text file containing one or two rows (separated by \r\n or \n): 1. A list of increasing versions separated by pipes, such as "1.0.0|1.0.1|1.0.2" (without quotes) 2. (optional) The absolute HTTP URL of the latest DLL, for example "http://www.server.com/update/MyAssembly.dll" (without quotes) The second row should only be present if the provider can be updated automatically without any type of user intervention, i.e. by simply replacing the DLL and restarting the wiki. If the DLL contains multiple providers, they are all updated (obviously). The new DLL must have the same name of the being-replaced DLL (in other words, a provider must reside in the same DLL forever in order to be updated automatically).
protected string updateUrl
리턴 string

url 보호되어 있는 프로퍼티

The info URL of the Component/Author.
protected string url
리턴 string

version 보호되어 있는 프로퍼티

The component version.
protected string version
리턴 string