C# Class SourceControl.SourceDepot

The implementation of the source depot class.
Inheritance: ISourceControlSystem
Show file Open project: daptiv/Malevich

Public Properties

Property Type Description
Client string
Port string
Proxy string

Private Properties

Property Type Description

Public Methods

Method Description
SourceDepot ( string port, string client, string proxy ) : System

Trivial constructor.

Method Details

SourceDepot() public method

Trivial constructor.
public SourceDepot ( string port, string client, string proxy ) : System
port string The endpoint of the source depot server (servername:tcpport).
client string The name of the client.
proxy string Proxy server, same format as port name. Can be null if proxy is not used.
return System

Property Details

Client public property

The client string.
public string Client
return string

Port public property

The endpoint of the source depot server (servername:tcpport). The name (Port) is a bit misleading, but it is in keeping with the source depot terminology.
public string Port
return string

Proxy public property

The proxy server name. Null if none.
public string Proxy
return string