Initializes a new CheckinException instance.
Namespace:  Microsoft.TeamFoundation.VersionControl.Client
Assembly:  Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
Public Sub New ( _
    conflicts As CheckinConflict(), _
    isResolvable As Boolean, _
    message As String _
)
public CheckinException(
    CheckinConflict[] conflicts,
    bool isResolvable,
    string message
)
public:
CheckinException(
    array<CheckinConflict^>^ conflicts, 
    bool isResolvable, 
    String^ message
)
new : 
        conflicts:CheckinConflict[] * 
        isResolvable:bool * 
        message:string -> CheckinException
public function CheckinException(
    conflicts : CheckinConflict[], 
    isResolvable : boolean, 
    message : String
)
Parameters
- conflicts 
 Type: array<Microsoft.TeamFoundation.VersionControl.Client.CheckinConflict[]- The conflicts that caused this exception. 
- isResolvable 
 Type: System.Boolean- True if the conflicts can be resolved; otherwise, false. 
- message 
 Type: System.String- A message that states the exception. 
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.