Delegate used for detailed Resolve

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

Syntax

C#
public delegate P4ClientMerge..::..MergeStatus ResolveFileDelegate(
	FileResolveRecord resolveRecord,
	Client..::..AutoResolveDelegate AutoResolve,
	string sourcePath,
	string targetPath,
	string basePath,
	string resultsPath
)
Visual Basic
Public Delegate Function ResolveFileDelegate ( _
	resolveRecord As FileResolveRecord, _
	AutoResolve As Client..::..AutoResolveDelegate, _
	sourcePath As String, _
	targetPath As String, _
	basePath As String, _
	resultsPath As String _
) As P4ClientMerge..::..MergeStatus
Visual C++
public delegate P4ClientMerge..::..MergeStatus ResolveFileDelegate(
	FileResolveRecord^ resolveRecord, 
	Client..::..AutoResolveDelegate^ AutoResolve, 
	String^ sourcePath, 
	String^ targetPath, 
	String^ basePath, 
	String^ resultsPath
)

Parameters

resolveRecord
Type: Perforce.P4..::..FileResolveRecord
Instructions for the resolve
AutoResolve
Type: Perforce.P4..::..Client..::..AutoResolveDelegate
Delegate for AutoResolve
sourcePath
Type: System..::..String
source path
targetPath
Type: System..::..String
target path
basePath
Type: System..::..String
base path
resultsPath
Type: System..::..String
results path

Return Value

A MergeStatus enum

See Also