Imported Upstream version 5.14.0.125

Former-commit-id: 436f655dff8d8f7c7b0eb3cb3c65e14ccf98b295
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-06-07 18:52:37 +00:00
parent 54c0c51795
commit 413682e1ba
45 changed files with 89 additions and 319 deletions

View File

@ -308,5 +308,19 @@ public const string XmlMaxStringContentLengthExceeded = @"XML max string content
public const string XmlObjectAssignedToIncompatibleInterface = @"Object of type '{0}' is assigned to an incompatible interface '{1}'.";
#endregion
// CoreFX
public const string PlatformNotSupported_SchemaImporter = "The implementation of the function requires System.Runtime.Serialization.SchemaImporter which is not supported on this platform.";
public const string PlatformNotSupported_IDataContractSurrogate = "The implementation of the function requires System.Runtime.Serialization.IDataContractSurrogate which is not supported on this platform.";
internal static string Format(string resourceFormats)
{
return resourceFormats;
}
internal static string Format(string resourceFormat, object p1)
{
return string.Format (CultureInfo.InvariantCulture, resourceFormat, p1);
}
}
}