Xamarin Public Jenkins c042cd0c52 Imported Upstream version 4.2.0.179
Former-commit-id: 4610231f55806d2a05ed69e5ff3faa7336cc1479
2015-11-10 15:03:43 +00:00

28 lines
1.0 KiB
C#

namespace System.Data.DataSetExtensions
{
static class Strings
{
public const string DataSetLinq_CannotCompareDeletedRow = "DataSetLinq_CannotCompareDeletedRow";
public const string DataSetLinq_CannotLoadDeletedRow = "DataSetLinq_CannotLoadDeletedRow";
public const string DataSetLinq_CannotLoadDetachedRow = "DataSetLinq_CannotLoadDetachedRow";
public const string DataSetLinq_EmptyDataRowSource = "DataSetLinq_EmptyDataRowSource";
public const string DataSetLinq_NullDataRow = "DataSetLinq_NullDataRow";
public const string LDVRowStateError = "LDVRowStateError";
public const string ToLDVUnsupported = "ToLDVUnsupported";
public static string DataSetLinq_InvalidEnumerationValue (params object[] args)
{
return SR.GetString ("DataSetLinq_InvalidEnumerationValue", args);
}
public static string DataSetLinq_NonNullableCast (object arg)
{
return SR.GetString ("DataSetLinq_NonNullableCast", arg);
}
public static string LDV_InvalidNumOfKeys (params object[] args)
{
return SR.GetString ("LDV_InvalidNumOfKeys", args);
}
}
}