forked from skyarkhangel/HSK-Launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCaliburn.Micro.Platform.Core.xml
executable file
·249 lines (249 loc) · 12.2 KB
/
Caliburn.Micro.Platform.Core.xml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<?xml version="1.0"?>
<doc>
<assembly>
<name>Caliburn.Micro.Platform.Core</name>
</assembly>
<members>
<member name="T:Caliburn.Micro.AssemblySource">
<summary>
A source of assemblies that are inspectable by the framework.
</summary>
</member>
<member name="F:Caliburn.Micro.AssemblySource.Instance">
<summary>
The singleton instance of the AssemblySource used by the framework.
</summary>
</member>
<member name="M:Caliburn.Micro.AssemblySource.AddRange(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
<summary>
Adds a collection of assemblies to AssemblySource
</summary>
<param name="assemblies">The assemblies to add</param>
</member>
<member name="F:Caliburn.Micro.AssemblySource.FindTypeByNames">
<summary>
Finds a type which matches one of the elements in the sequence of names.
</summary>
</member>
<member name="T:Caliburn.Micro.AssemblySourceCache">
<summary>
A caching subsystem for <see cref="T:Caliburn.Micro.AssemblySource"/>.
</summary>
</member>
<member name="F:Caliburn.Micro.AssemblySourceCache.ExtractTypes">
<summary>
Extracts the types from the spezified assembly for storing in the cache.
</summary>
</member>
<member name="F:Caliburn.Micro.AssemblySourceCache.Install">
<summary>
Installs the caching subsystem.
</summary>
</member>
<member name="T:Caliburn.Micro.ExtensionMethods">
<summary>
Generic extension methods used by the framework.
</summary>
</member>
<member name="M:Caliburn.Micro.ExtensionMethods.GetAssemblyName(System.Reflection.Assembly)">
<summary>
Get's the name of the assembly.
</summary>
<param name="assembly">The assembly.</param>
<returns>The assembly's name.</returns>
</member>
<member name="M:Caliburn.Micro.ExtensionMethods.GetValueOrDefault``2(System.Collections.Generic.IDictionary{``0,``1},``0)">
<summary>
Gets the value for a key. If the key does not exist, return default(TValue);
</summary>
<typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
<typeparam name="TValue">The type of the values in the dictionary.</typeparam>
<param name="dictionary">The dictionary to call this method on.</param>
<param name="key">The key to look up.</param>
<returns>The key value. default(TValue) if this key is not in the dictionary.</returns>
</member>
<member name="T:Caliburn.Micro.NameTransformer">
<summary>
Class for managing the list of rules for doing name transformation.
</summary>
</member>
<member name="P:Caliburn.Micro.NameTransformer.UseEagerRuleSelection">
<summary>
Flag to indicate if transformations from all matched rules are returned. Otherwise, transformations from only the first matched rule are returned.
</summary>
</member>
<member name="M:Caliburn.Micro.NameTransformer.AddRule(System.String,System.String,System.String)">
<summary>
Adds a transform using a single replacement value and a global filter pattern.
</summary>
<param name = "replacePattern">Regular expression pattern for replacing text</param>
<param name = "replaceValue">The replacement value.</param>
<param name = "globalFilterPattern">Regular expression pattern for global filtering</param>
</member>
<member name="M:Caliburn.Micro.NameTransformer.AddRule(System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
<summary>
Adds a transform using a list of replacement values and a global filter pattern.
</summary>
<param name = "replacePattern">Regular expression pattern for replacing text</param>
<param name = "replaceValueList">The list of replacement values</param>
<param name = "globalFilterPattern">Regular expression pattern for global filtering</param>
</member>
<member name="M:Caliburn.Micro.NameTransformer.Transform(System.String)">
<summary>
Gets the list of transformations for a given name.
</summary>
<param name = "source">The name to transform into the resolved name list</param>
<returns>The transformed names.</returns>
</member>
<member name="M:Caliburn.Micro.NameTransformer.Transform(System.String,System.Func{System.String,System.String})">
<summary>
Gets the list of transformations for a given name.
</summary>
<param name = "source">The name to transform into the resolved name list</param>
<param name = "getReplaceString">A function to do a transform on each item in the ReplaceValueList prior to applying the regular expression transform</param>
<returns>The transformed names.</returns>
</member>
<member name="T:Caliburn.Micro.NameTransformer.Rule">
<summary>
A rule that describes a name transform.
</summary>
</member>
<member name="F:Caliburn.Micro.NameTransformer.Rule.GlobalFilterPattern">
<summary>
Regular expression pattern for global filtering
</summary>
</member>
<member name="F:Caliburn.Micro.NameTransformer.Rule.ReplacePattern">
<summary>
Regular expression pattern for replacing text
</summary>
</member>
<member name="F:Caliburn.Micro.NameTransformer.Rule.ReplacementValues">
<summary>
The list of replacement values
</summary>
</member>
<member name="P:Caliburn.Micro.NameTransformer.Rule.GlobalFilterPatternRegex">
<summary>
Regular expression for global filtering
</summary>
</member>
<member name="P:Caliburn.Micro.NameTransformer.Rule.ReplacePatternRegex">
<summary>
Regular expression for replacing text
</summary>
</member>
<member name="T:Caliburn.Micro.RegExHelper">
<summary>
Helper class for encoding strings to regular expression patterns
</summary>
</member>
<member name="F:Caliburn.Micro.RegExHelper.NameRegEx">
<summary>
Regular expression pattern for valid name
</summary>
</member>
<member name="F:Caliburn.Micro.RegExHelper.SubNamespaceRegEx">
<summary>
Regular expression pattern for subnamespace (including dot)
</summary>
</member>
<member name="F:Caliburn.Micro.RegExHelper.NamespaceRegEx">
<summary>
Regular expression pattern for namespace or namespace fragment
</summary>
</member>
<member name="M:Caliburn.Micro.RegExHelper.GetCaptureGroup(System.String,System.String)">
<summary>
Creates a named capture group with the specified regular expression
</summary>
<param name="groupName">Name of capture group to create</param>
<param name="regEx">Regular expression pattern to capture</param>
<returns>Regular expression capture group with the specified group name</returns>
</member>
<member name="M:Caliburn.Micro.RegExHelper.NamespaceToRegEx(System.String)">
<summary>
Converts a namespace (including wildcards) to a regular expression string
</summary>
<param name="srcNamespace">Source namespace to convert to regular expression</param>
<returns>Namespace converted to a regular expression</returns>
</member>
<member name="M:Caliburn.Micro.RegExHelper.GetNameCaptureGroup(System.String)">
<summary>
Creates a capture group for a valid name regular expression pattern
</summary>
<param name="groupName">Name of capture group to create</param>
<returns>Regular expression capture group with the specified group name</returns>
</member>
<member name="M:Caliburn.Micro.RegExHelper.GetNamespaceCaptureGroup(System.String)">
<summary>
Creates a capture group for a namespace regular expression pattern
</summary>
<param name="groupName">Name of capture group to create</param>
<returns>Regular expression capture group with the specified group name</returns>
</member>
<member name="T:Caliburn.Micro.StringSplitter">
<summary>
Helper class when splitting strings
</summary>
</member>
<member name="M:Caliburn.Micro.StringSplitter.Split(System.String,System.Char)">
<summary>
Splits a string with a chosen separator.
If a substring is contained in [...] it will not be splitted.
</summary>
<param name="message">The message to split</param>
<param name="separator">The separator to use when splitting</param>
<returns></returns>
</member>
<member name="M:Caliburn.Micro.StringSplitter.SplitParameters(System.String)">
<summary>
Splits a string with , as separator.
Does not split within {},[],()
</summary>
<param name="parameters">The string to split</param>
<returns></returns>
</member>
<member name="T:Caliburn.Micro.TypeMappingConfiguration">
<summary>
Class to specify settings for configuring type mappings by the ViewLocator or ViewModelLocator
</summary>
</member>
<member name="P:Caliburn.Micro.TypeMappingConfiguration.DefaultSubNamespaceForViews">
<summary>
The default subnamespace for Views. Used for creating default subnamespace mappings. Defaults to "Views".
</summary>
</member>
<member name="P:Caliburn.Micro.TypeMappingConfiguration.DefaultSubNamespaceForViewModels">
<summary>
The default subnamespace for ViewModels. Used for creating default subnamespace mappings. Defaults to "ViewModels".
</summary>
</member>
<member name="P:Caliburn.Micro.TypeMappingConfiguration.UseNameSuffixesInMappings">
<summary>
Flag to indicate whether or not the name of the Type should be transformed when adding a type mapping. Defaults to true.
</summary>
</member>
<member name="P:Caliburn.Micro.TypeMappingConfiguration.NameFormat">
<summary>
The format string used to compose the name of a type from base name and name suffix
</summary>
</member>
<member name="P:Caliburn.Micro.TypeMappingConfiguration.IncludeViewSuffixInViewModelNames">
<summary>
Flag to indicate if ViewModel names should include View suffixes (i.e. CustomerPageViewModel vs. CustomerViewModel)
</summary>
</member>
<member name="P:Caliburn.Micro.TypeMappingConfiguration.ViewSuffixList">
<summary>
List of View suffixes for which default type mappings should be created. Applies only when UseNameSuffixesInMappings = true.
Default values are "View", "Page"
</summary>
</member>
<member name="P:Caliburn.Micro.TypeMappingConfiguration.ViewModelSuffix">
<summary>
The name suffix for ViewModels. Applies only when UseNameSuffixesInMappings = true. The default is "ViewModel".
</summary>
</member>
</members>
</doc>