Parameterized constructor

Namespace: Perforce.P4
Assembly: p4api.net (in p4api.net.dll) Version: 2017.3.160.836 (2017.3.160.0836)

Syntax

C#
public User(
	string id,
	string fullname,
	string password,
	string emailaddress,
	DateTime updated,
	DateTime accessed,
	string jobview,
	List<string> reviews,
	UserType type,
	FormSpec spec
)
Visual Basic
Public Sub New ( _
	id As String, _
	fullname As String, _
	password As String, _
	emailaddress As String, _
	updated As DateTime, _
	accessed As DateTime, _
	jobview As String, _
	reviews As List(Of String), _
	type As UserType, _
	spec As FormSpec _
)
Visual C++
public:
User(
	String^ id, 
	String^ fullname, 
	String^ password, 
	String^ emailaddress, 
	DateTime updated, 
	DateTime accessed, 
	String^ jobview, 
	List<String^>^ reviews, 
	UserType type, 
	FormSpec^ spec
)

Parameters

id
Type: System..::..String
Perforce user name
fullname
Type: System..::..String
User Full Name
password
Type: System..::..String
password
emailaddress
Type: System..::..String
email address
updated
Type: System..::..DateTime
last user update
accessed
Type: System..::..DateTime
last user access
jobview
Type: System..::..String
Job View String
reviews
Type: System.Collections.Generic..::..List<(Of <(<'String>)>)>
Review Specification
type
Type: Perforce.P4..::..UserType
User type
spec
Type: Perforce.P4..::..FormSpec
User form specificatoin

See Also