C# Class SourceControl.Perforce

The implementation of the perforce class.
Inheritance: ISourceControlSystem
Mostrar archivo Open project: daptiv/Malevich

Public Properties

Property Type Description
Client string
Passwd string
Port string
User string

Private Properties

Property Type Description

Public Methods

Method Description
Perforce ( string port, string client, string user, string passwd ) : System

Trivial constructor.

Method Details

Perforce() public method

Trivial constructor.
public Perforce ( string port, string client, string user, string passwd ) : System
port string The endpoint of the source perforce server (servername:tcpport).
client string The name of the client.
user string Perforce user name, can be null.
passwd string Perforce password, can be null.
return System

Property Details

Client public_oe property

The client string.
public string Client
return string

Passwd public_oe property

Perforce password. Can be null.
public string Passwd
return string

Port public_oe property

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

User public_oe property

Perforce user name. Can be null.
public string User
return string