-
Notifications
You must be signed in to change notification settings - Fork 14
/
RuntimeSingleConvertExceptionEventArgs.cs
56 lines (47 loc) · 1.54 KB
/
RuntimeSingleConvertExceptionEventArgs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QuickConverter
{
public class RuntimeSingleConvertExceptionEventArgs : QuickConverterEventArgs
{
public override QuickConverterEventType Type { get { return QuickConverterEventType.RuntimeCodeException; } }
public object P { get; private set; }
public object V0 { get; private set; }
public object V1 { get; private set; }
public object V2 { get; private set; }
public object V3 { get; private set; }
public object V4 { get; private set; }
public object V5 { get; private set; }
public object V6 { get; private set; }
public object V7 { get; private set; }
public object V8 { get; private set; }
public object V9 { get; private set; }
public object Value { get; private set; }
public object Parameter { get; private set; }
public DynamicSingleConverter Converter { get; private set; }
public Exception Exception { get; private set; }
public string DebugView { get; private set; }
internal RuntimeSingleConvertExceptionEventArgs(string expression, string debugView, object p, object value, object[] values, object parameter, DynamicSingleConverter converter, Exception exception)
: base(expression)
{
DebugView = debugView;
P = p;
V0 = values[0];
V1 = values[1];
V2 = values[2];
V3 = values[3];
V4 = values[4];
V5 = values[5];
V6 = values[6];
V7 = values[7];
V8 = values[8];
V9 = values[9];
Value = value;
Parameter = parameter;
Converter = converter;
Exception = exception;
}
}
}