Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

43 lines
1.4 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="MergeFailedEvent.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">[....]</owner>
// <owner current="true" primary="false">[....]</owner>
// <owner current="false" primary="false">[....]</owner>
//------------------------------------------------------------------------------
namespace System.Data {
using System;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public class MergeFailedEventArgs : EventArgs {
private DataTable table;
private string conflict;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public MergeFailedEventArgs(DataTable table, string conflict) {
this.table = table;
this.conflict = conflict;
}
/// <devdoc>
/// <para>Gets the name of the <see cref='System.Data.DataTable'/>.</para>
/// </devdoc>
public DataTable Table {
get { return table; }
}
/// <devdoc>
/// <para>Gets a description of the merge conflict.</para>
/// </devdoc>
public string Conflict {
get { return conflict; }
}
}
}