The types of diffs returned by the server.
Namespace:
Perforce.P4
Assembly:
p4api.net (in p4api.net.dll) Version: 2024.2.269.3570
Syntax [FlagsAttribute]
public enum DiffType
<FlagsAttribute>
Public Enumeration DiffType
[FlagsAttribute]
public enum class DiffType
[<FlagsAttribute>]
type DiffType
Members
| Member name | Value | Description |
---|
| Content | 0 |
File contents are different.
|
| FileType | 1 |
File contents are identical but file types are different.
|
| LeftOnly | 2 |
The left file in the diff has no target file at the
specified name or revision to pair with for a diff.
|
| RightOnly | 4 |
The right file in the diff has no source file at the
specified name or revision to pair with for a diff.
|
| Identical | 8 |
File content and file types are identical.
|
See Also