Imported Upstream version 4.4.2.4

Former-commit-id: 92904c9c5915c37244316e42ba99e7b934ed7ee2
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-07-21 09:40:10 +00:00
parent 589d484eee
commit 0b4a830db1
343 changed files with 9849 additions and 688 deletions

View File

@@ -0,0 +1,11 @@
// strings taken from corefx
class SR
{
public const string Argument_AlreadyBoundOrSyncHandle = "'handle' has already been bound to the thread pool, or was not opened for asynchronous I/O.";
public const string Argument_InvalidHandle = "'handle' has been disposed or is an invalid handle.";
public const string Argument_NativeOverlappedAlreadyFree = "'overlapped' has already been freed.";
public const string Argument_NativeOverlappedWrongBoundHandle = "'overlapped' was not allocated by this ThreadPoolBoundHandle instance.";
public const string Argument_PreAllocatedAlreadyAllocated = "'preAllocated' is already in use.";
public const string InvalidOperation_NativeOverlappedReused = "NativeOverlapped cannot be reused for multiple operations.";
}