internal static void ThrowArgumentOutOfRangeException() { throw new ArgumentOutOfRangeException(ThrowHelper.GetArgumentName(ExceptionArgument.index), ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(ExceptionResource.ArgumentOutOfRange_Index))); }
internal static void ThrowUnauthorizedAccessException(ExceptionResource resource) { throw new UnauthorizedAccessException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource))); }
internal static void ThrowObjectDisposedException(string objectName, ExceptionResource resource) { throw new ObjectDisposedException(objectName, ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource))); }
internal static void ThrowSecurityException(ExceptionResource resource) { throw new SecurityException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource))); }
internal static void ThrowNotSupportedException(ExceptionResource resource) { throw new NotSupportedException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource))); }
internal static void ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) { throw new ArgumentOutOfRangeException(ThrowHelper.GetArgumentName(argument), ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource))); }
internal static void ThrowInvalidOperationException(ExceptionResource resource) { throw new InvalidOperationException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource))); }
internal static void ThrowWrongValueTypeArgumentException(object value, Type targetType) { throw new ArgumentException(ResourceHelper.GetResourceString("Arg_WrongType")); }
internal static void ThrowArgumentException(ExceptionResource resource, ExceptionArgument argument) { throw new ArgumentException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource)), ThrowHelper.GetArgumentName(argument)); }
internal static void ReadNotSupported() { throw new NotSupportedException(ResourceHelper.GetResourceString("NotSupported_UnreadableStream")); }
public static void WriteNotSupported() { throw new NotSupportedException(ResourceHelper.GetResourceString("NotSupported_UnwritableStream")); }
public static void MemoryStreamNotExpandable() { throw new NotSupportedException(ResourceHelper.GetResourceString("NotSupported_MemStreamNotExpandable")); }
public static void StreamIsClosed() { throw new ObjectDisposedException(null, ResourceHelper.GetResourceString("ObjectDisposed_StreamClosed")); }
public static void EndOfFile() { throw new EndOfStreamException(ResourceHelper.GetResourceString("IO.EOF_ReadBeyondEOF")); }