//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
// [....]
// [....]
//------------------------------------------------------------------------------
namespace System.Data {
using System;
///
/// [To be supplied.]
///
public class MergeFailedEventArgs : EventArgs {
private DataTable table;
private string conflict;
///
/// [To be supplied.]
///
public MergeFailedEventArgs(DataTable table, string conflict) {
this.table = table;
this.conflict = conflict;
}
///
/// Gets the name of the .
///
public DataTable Table {
get { return table; }
}
///
/// Gets a description of the merge conflict.
///
public string Conflict {
get { return conflict; }
}
}
}