-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorEx.Format.ps1xml
More file actions
91 lines (91 loc) · 2.73 KB
/
ErrorEx.Format.ps1xml
File metadata and controls
91 lines (91 loc) · 2.73 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<ViewDefinitions>
<!-- Table View -->
<View>
<Name>ErrorEx.Table</Name>
<ViewSelectedBy>
<TypeName>ErrorEx</TypeName>
</ViewSelectedBy>
<TableControl>
<TableHeaders>
<TableColumnHeader>
<Label>ErrorCode</Label>
<Width>10</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>HResult</Label>
<Width>11</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>Severity</Label>
<Width>8</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>Facility</Label>
<Width>15</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>Message</Label>
</TableColumnHeader>
</TableHeaders>
<TableRowEntries>
<TableRowEntry>
<TableColumnItems>
<TableColumnItem>
<PropertyName>ErrorCode</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>HResult</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Severity</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Facility</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Message</PropertyName>
</TableColumnItem>
</TableColumnItems>
</TableRowEntry>
</TableRowEntries>
</TableControl>
</View>
<!-- List View -->
<View>
<Name>ErrorEx.List</Name>
<ViewSelectedBy>
<TypeName>ErrorEx</TypeName>
</ViewSelectedBy>
<ListControl>
<ListEntries>
<ListEntry>
<ListItems>
<ListItem>
<Label>ErrorCode</Label>
<PropertyName>ErrorCode</PropertyName>
</ListItem>
<ListItem>
<Label>HResult</Label>
<PropertyName>HResult</PropertyName>
</ListItem>
<ListItem>
<Label>Severity</Label>
<PropertyName>Severity</PropertyName>
</ListItem>
<ListItem>
<Label>Message</Label>
<PropertyName>Message</PropertyName>
</ListItem>
<ListItem>
<Label>Facility</Label>
<PropertyName>Facility</PropertyName>
</ListItem>
</ListItems>
</ListEntry>
</ListEntries>
</ListControl>
</View>
</ViewDefinitions>
</Configuration>