Imported Upstream version 6.0.0.172

Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-04-12 14:10:50 +00:00
parent 8016999e4d
commit 64ac736ec5
32155 changed files with 3981439 additions and 75368 deletions

View File

@ -12,15 +12,15 @@ partial class SR
public const string PlatformNotSupported_Serialization = "This instance contains state that cannot be serialized and deserialized on this platform.";
public const string PrivilegeNotHeld_Default = "The process does not possess some privilege required for this operation.";
public const string PrivilegeNotHeld_Named = "The process does not possess the '{0}' privilege which is required for this operation.";
public const string CountdownEvent_Decrement_BelowZero = "CountdownEvent_Decrement_BelowZero";
public const string CountdownEvent_Increment_AlreadyZero = "CountdownEvent_Increment_AlreadyZero";
public const string CountdownEvent_Increment_AlreadyMax = "CountdownEvent_Increment_AlreadyMax";
public const string ArrayWithOffsetOverflow = "ArrayWithOffsetOverflow";
public const string Arg_NotIsomorphic = "Arg_NotIsomorphic";
public const string StructArrayTooLarge = "StructArrayTooLarge";
public const string IO_DriveNotFound = "IO_DriveNotFound";
public const string Argument_MustSupplyParent = "Argument_MustSupplyParent";
public const string Argument_MemberAndArray = "Argument_MemberAndArray";
public const string Argument_MustSupplyContainer = "Argument_MustSupplyContainer";
public const string Serialization_NoID = "Serialization_NoID";
public const string CountdownEvent_Decrement_BelowZero = "Invalid attempt made to decrement the event's count below zero.";
public const string CountdownEvent_Increment_AlreadyZero = "The event is already signaled and cannot be incremented.";
public const string CountdownEvent_Increment_AlreadyMax = "The increment operation would cause the CurrentCount to overflow.";
public const string ArrayWithOffsetOverflow = "ArrayWithOffset: offset exceeds array size.";
public const string Arg_NotIsomorphic = "Object contains non-primitive or non-blittable data.";
public const string StructArrayTooLarge = "Array size exceeds addressing limitations.";
public const string IO_DriveNotFound = "Could not find the drive. The drive might not be ready or might not be mapped.";
public const string Argument_MustSupplyParent = "When supplying the ID of a containing object, the FieldInfo that identifies the current field within that object must also be supplied.";
public const string Argument_MemberAndArray = "Cannot supply both a MemberInfo and an Array to indicate the parent of a value type.";
public const string Argument_MustSupplyContainer = "When supplying a FieldInfo for fixing up a nested type, a valid ID for that containing object must also be supplied.";
public const string Serialization_NoID = "Object has never been assigned an objectID";
}