示例#1
0
 internal static void ThrowArgumentOutOfRangeException()
 {
     throw new ArgumentOutOfRangeException(ThrowHelper.GetArgumentName(ExceptionArgument.index), ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(ExceptionResource.ArgumentOutOfRange_Index)));
 }
示例#2
0
 internal static void ThrowUnauthorizedAccessException(ExceptionResource resource)
 {
     throw new UnauthorizedAccessException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource)));
 }
示例#3
0
 internal static void ThrowObjectDisposedException(string objectName, ExceptionResource resource)
 {
     throw new ObjectDisposedException(objectName, ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource)));
 }
示例#4
0
 internal static void ThrowSecurityException(ExceptionResource resource)
 {
     throw new SecurityException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource)));
 }
示例#5
0
 internal static void ThrowNotSupportedException(ExceptionResource resource)
 {
     throw new NotSupportedException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource)));
 }
示例#6
0
 internal static void ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
 {
     throw new ArgumentOutOfRangeException(ThrowHelper.GetArgumentName(argument), ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource)));
 }
示例#7
0
 internal static void ThrowInvalidOperationException(ExceptionResource resource)
 {
     throw new InvalidOperationException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource)));
 }
示例#8
0
 internal static void ThrowWrongValueTypeArgumentException(object value, Type targetType)
 {
     throw new ArgumentException(ResourceHelper.GetResourceString("Arg_WrongType"));
 }
示例#9
0
 internal static void ThrowArgumentException(ExceptionResource resource, ExceptionArgument argument)
 {
     throw new ArgumentException(ResourceHelper.GetResourceString(ThrowHelper.GetResourceName(resource)), ThrowHelper.GetArgumentName(argument));
 }
示例#10
0
 internal static void ReadNotSupported()
 {
     throw new NotSupportedException(ResourceHelper.GetResourceString("NotSupported_UnreadableStream"));
 }
示例#11
0
 public static void WriteNotSupported()
 {
     throw new NotSupportedException(ResourceHelper.GetResourceString("NotSupported_UnwritableStream"));
 }
示例#12
0
 public static void MemoryStreamNotExpandable()
 {
     throw new NotSupportedException(ResourceHelper.GetResourceString("NotSupported_MemStreamNotExpandable"));
 }
示例#13
0
 public static void StreamIsClosed()
 {
     throw new ObjectDisposedException(null, ResourceHelper.GetResourceString("ObjectDisposed_StreamClosed"));
 }
示例#14
0
 public static void EndOfFile()
 {
     throw new EndOfStreamException(ResourceHelper.GetResourceString("IO.EOF_ReadBeyondEOF"));
 }