1 <?xml version="1.0" encoding="utf-8"?><doc>
3 <name>System.Diagnostics.Debug</name>
6 <member name="T:System.Diagnostics.Debug">
7 <summary>Provides a set of methods and properties that help debug your code.</summary>
9 <member name="M:System.Diagnostics.Debug.Assert(System.Boolean)">
10 <summary>Checks for a condition; if the condition is false, displays a message box that shows the call stack.</summary>
11 <param name="condition">The conditional expression to evaluate. If the condition is true, a failure message is not sent and the message box is not displayed.</param>
13 <member name="M:System.Diagnostics.Debug.Assert(System.Boolean,System.String)">
14 <summary>Checks for a condition; if the condition is false, outputs a specified message and displays a message box that shows the call stack.</summary>
15 <param name="condition">The conditional expression to evaluate. If the condition is true, the specified message is not sent and the message box is not displayed.</param>
16 <param name="message">The message to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection.</param>
18 <member name="M:System.Diagnostics.Debug.Assert(System.Boolean,System.String,System.String)">
19 <summary>Checks for a condition; if the condition is false, outputs two specified messages and displays a message box that shows the call stack.</summary>
20 <param name="condition">The conditional expression to evaluate. If the condition is true, the specified messages are not sent and the message box is not displayed.</param>
21 <param name="message">The message to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection.</param>
22 <param name="detailMessage">The detailed message to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection.</param>
24 <member name="M:System.Diagnostics.Debug.Assert(System.Boolean,System.String,System.String,System.Object[])">
25 <summary>Checks for a condition; if the condition is false, outputs two messages (simple and formatted) and displays a message box that shows the call stack.</summary>
26 <param name="condition">The conditional expression to evaluate. If the condition is true, the specified messages are not sent and the message box is not displayed.</param>
27 <param name="message">The message to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection.</param>
28 <param name="detailMessageFormat">The composite format string to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection. This message contains text intermixed with zero or more format items, which correspond to objects in the args array.</param>
29 <param name="args">An object array that contains zero or more objects to format.</param>
31 <member name="P:System.Diagnostics.Debug.AutoFlush">
32 <summary>Gets or sets a value indicating whether <see cref="M:System.Diagnostics.Debug.Flush"></see> should be called on the <see cref="P:System.Diagnostics.Debug.Listeners"></see> after every write.</summary>
33 <returns>true if <see cref="System.Diagnostics.Debug.Flush"></see> is called on the <see cref="System.Diagnostics.Debug.Listeners"></see> after every write; otherwise, false.</returns>
35 <member name="M:System.Diagnostics.Debug.Close">
36 <summary>Flushes the output buffer and then calls the Close method on each of the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</summary>
38 <member name="M:System.Diagnostics.Debug.Fail(System.String)">
39 <summary>Emits the specified error message.</summary>
40 <param name="message">A message to emit.</param>
42 <member name="M:System.Diagnostics.Debug.Fail(System.String,System.String)">
43 <summary>Emits an error message and a detailed error message.</summary>
44 <param name="message">A message to emit.</param>
45 <param name="detailMessage">A detailed message to emit.</param>
47 <member name="M:System.Diagnostics.Debug.Flush">
48 <summary>Flushes the output buffer and causes buffered data to write to the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
50 <member name="M:System.Diagnostics.Debug.Indent">
51 <summary>Increases the current <see cref="P:System.Diagnostics.Debug.IndentLevel"></see> by one.</summary>
53 <member name="P:System.Diagnostics.Debug.IndentLevel">
54 <summary>Gets or sets the indent level.</summary>
55 <returns>The indent level. The default is 0.</returns>
57 <member name="P:System.Diagnostics.Debug.IndentSize">
58 <summary>Gets or sets the number of spaces in an indent.</summary>
59 <returns>The number of spaces in an indent. The default is four.</returns>
61 <member name="M:System.Diagnostics.Debug.Print(System.String)">
62 <summary>Writes a message followed by a line terminator to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
63 <param name="message">The message to write.</param>
65 <member name="M:System.Diagnostics.Debug.Print(System.String,System.Object[])">
66 <summary>Writes a formatted string followed by a line terminator to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
67 <param name="format">A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the args array.</param>
68 <param name="args">An object array containing zero or more objects to format.</param>
69 <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
70 <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is invalid.
72 The number that indicates an argument to format is less than zero, or greater than or equal to the number of specified objects to format.</exception>
74 <member name="M:System.Diagnostics.Debug.Unindent">
75 <summary>Decreases the current <see cref="P:System.Diagnostics.Debug.IndentLevel"></see> by one.</summary>
77 <member name="M:System.Diagnostics.Debug.Write(System.String,System.String)">
78 <summary>Writes a category name and message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
79 <param name="message">A message to write.</param>
80 <param name="category">A category name used to organize the output.</param>
82 <member name="M:System.Diagnostics.Debug.Write(System.Object,System.String)">
83 <summary>Writes a category name and the value of the object&#39;s <see cref="M:System.Object.ToString"></see> method to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
84 <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
85 <param name="category">A category name used to organize the output.</param>
87 <member name="M:System.Diagnostics.Debug.Write(System.Object)">
88 <summary>Writes the value of the object&#39;s <see cref="M:System.Object.ToString"></see> method to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
89 <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
91 <member name="M:System.Diagnostics.Debug.Write(System.String)">
92 <summary>Writes a message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
93 <param name="message">A message to write.</param>
95 <member name="M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Object)">
96 <summary>Writes the value of the object&#39;s <see cref="M:System.Object.ToString"></see> method to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection if a condition is true.</summary>
97 <param name="condition">The conditional expression to evaluate. If the condition is true, the value is written to the trace listeners in the collection.</param>
98 <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
100 <member name="M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.String)">
101 <summary>Writes a message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection if a condition is true.</summary>
102 <param name="condition">The conditional expression to evaluate. If the condition is true, the message is written to the trace listeners in the collection.</param>
103 <param name="message">A message to write.</param>
105 <member name="M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Object,System.String)">
106 <summary>Writes a category name and the value of the object&#39;s <see cref="M:System.Object.ToString"></see> method to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection if a condition is true.</summary>
107 <param name="condition">The conditional expression to evaluate. If the condition is true, the category name and value are written to the trace listeners in the collection.</param>
108 <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
109 <param name="category">A category name used to organize the output.</param>
111 <member name="M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.String,System.String)">
112 <summary>Writes a category name and message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection if a condition is true.</summary>
113 <param name="condition">The conditional expression to evaluate. If the condition is true, the category name and message are written to the trace listeners in the collection.</param>
114 <param name="message">A message to write.</param>
115 <param name="category">A category name used to organize the output.</param>
117 <member name="M:System.Diagnostics.Debug.WriteLine(System.Object)">
118 <summary>Writes the value of the object&#39;s <see cref="M:System.Object.ToString"></see> method to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
119 <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
121 <member name="M:System.Diagnostics.Debug.WriteLine(System.String)">
122 <summary>Writes a message followed by a line terminator to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
123 <param name="message">A message to write.</param>
125 <member name="M:System.Diagnostics.Debug.WriteLine(System.Object,System.String)">
126 <summary>Writes a category name and the value of the object&#39;s <see cref="M:System.Object.ToString"></see> method to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
127 <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
128 <param name="category">A category name used to organize the output.</param>
130 <member name="M:System.Diagnostics.Debug.WriteLine(System.String,System.Object[])">
131 <summary>Writes a formatted message followed by a line terminator to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
132 <param name="format">A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the args array.</param>
133 <param name="args">An object array that contains zero or more objects to format.</param>
135 <member name="M:System.Diagnostics.Debug.WriteLine(System.String,System.String)">
136 <summary>Writes a category name and message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
137 <param name="message">A message to write.</param>
138 <param name="category">A category name used to organize the output.</param>
140 <member name="M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Object,System.String)">
141 <summary>Writes a category name and the value of the object&#39;s <see cref="M:System.Object.ToString"></see> method to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection if a condition is true.</summary>
142 <param name="condition">The conditional expression to evaluate. If the condition is true, the category name and value are written to the trace listeners in the collection.</param>
143 <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
144 <param name="category">A category name used to organize the output.</param>
146 <member name="M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Object)">
147 <summary>Writes the value of the object&#39;s <see cref="M:System.Object.ToString"></see> method to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection if a condition is true.</summary>
148 <param name="condition">The conditional expression to evaluate. If the condition is true, the value is written to the trace listeners in the collection.</param>
149 <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
151 <member name="M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.String)">
152 <summary>Writes a message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection if a condition is true.</summary>
153 <param name="condition">The conditional expression to evaluate. If the condition is true, the message is written to the trace listeners in the collection.</param>
154 <param name="message">A message to write.</param>
156 <member name="M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.String,System.String)">
157 <summary>Writes a category name and message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection if a condition is true.</summary>
158 <param name="condition">true to cause a message to be written; otherwise, false.</param>
159 <param name="message">A message to write.</param>
160 <param name="category">A category name used to organize the output.</param>
162 <member name="T:System.Diagnostics.Debugger">
163 <summary>Enables communication with a debugger. This class cannot be inherited.</summary>
165 <member name="M:System.Diagnostics.Debugger.Break">
166 <summary>Signals a breakpoint to an attached debugger.</summary>
167 <exception cref="T:System.Security.SecurityException">The <see cref="System.Security.Permissions.UIPermission"></see> is not set to break into the debugger.</exception>
169 <member name="F:System.Diagnostics.Debugger.DefaultCategory">
170 <summary>Represents the default category of message with a constant.</summary>
173 <member name="P:System.Diagnostics.Debugger.IsAttached">
174 <summary>Gets a value that indicates whether a debugger is attached to the process.</summary>
175 <returns>true if a debugger is attached; otherwise, false.</returns>
177 <member name="M:System.Diagnostics.Debugger.IsLogging">
178 <summary>Checks to see if logging is enabled by an attached debugger.</summary>
179 <returns>true if a debugger is attached and logging is enabled; otherwise, false. The attached debugger is the registered managed debugger in the DbgManagedDebugger registry key. For more information on this key, see Enabling JIT-Attach Debugging.</returns>
181 <member name="M:System.Diagnostics.Debugger.Launch">
182 <summary>Launches and attaches a debugger to the process.</summary>
183 <returns>true if the startup is successful or if the debugger is already attached; otherwise, false.</returns>
184 <exception cref="T:System.Security.SecurityException">The <see cref="System.Security.Permissions.UIPermission"></see> is not set to start the debugger.</exception>
186 <member name="M:System.Diagnostics.Debugger.Log(System.Int32,System.String,System.String)">
187 <summary>Posts a message for the attached debugger.</summary>
188 <param name="level">A description of the importance of the message.</param>
189 <param name="category">The category of the message.</param>
190 <param name="message">The message to show.</param>
192 <member name="M:System.Diagnostics.Debugger.NotifyOfCrossThreadDependency">
193 <summary>Notifies a debugger that execution is about to enter a path that involves a cross-thread dependency.</summary>
195 <member name="T:System.Diagnostics.DebuggerBrowsableAttribute">
196 <summary>Determines if and how a member is displayed in the debugger variable windows. This class cannot be inherited.</summary>
198 <member name="M:System.Diagnostics.DebuggerBrowsableAttribute.#ctor(System.Diagnostics.DebuggerBrowsableState)">
199 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerBrowsableAttribute"></see> class.</summary>
200 <param name="state">One of the <see cref="T:System.Diagnostics.DebuggerBrowsableState"></see> values that specifies how to display the member.</param>
201 <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="state">state</paramref> is not one of the <see cref="System.Diagnostics.DebuggerBrowsableState"></see> values.</exception>
203 <member name="P:System.Diagnostics.DebuggerBrowsableAttribute.State">
204 <summary>Gets the display state for the attribute.</summary>
205 <returns>One of the <see cref="System.Diagnostics.DebuggerBrowsableState"></see> values.</returns>
207 <member name="T:System.Diagnostics.DebuggerBrowsableState">
208 <summary>Provides display instructions for the debugger.</summary>
210 <member name="F:System.Diagnostics.DebuggerBrowsableState.Collapsed">
211 <summary>Show the element as collapsed.</summary>
214 <member name="F:System.Diagnostics.DebuggerBrowsableState.Never">
215 <summary>Never show the element.</summary>
218 <member name="F:System.Diagnostics.DebuggerBrowsableState.RootHidden">
219 <summary>Do not display the root element; display the child elements if the element is a collection or array of items.</summary>
222 <member name="T:System.Diagnostics.DebuggerDisplayAttribute">
223 <summary>Determines how a class or field is displayed in the debugger variable windows.</summary>
225 <member name="M:System.Diagnostics.DebuggerDisplayAttribute.#ctor(System.String)">
226 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerDisplayAttribute"></see> class.</summary>
227 <param name="value">The string to be displayed in the value column for instances of the type; an empty string (&quot;&quot;) causes the value column to be hidden.</param>
229 <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Name">
230 <summary>Gets or sets the name to display in the debugger variable windows.</summary>
231 <returns>The name to display in the debugger variable windows.</returns>
233 <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Target">
234 <summary>Gets or sets the type of the attribute&#39;s target.</summary>
235 <returns>The attribute&#39;s target type.</returns>
236 <exception cref="T:System.ArgumentNullException"><see cref="System.Diagnostics.DebuggerDisplayAttribute.Target"></see> is set to null.</exception>
238 <member name="P:System.Diagnostics.DebuggerDisplayAttribute.TargetTypeName">
239 <summary>Gets or sets the type name of the attribute&#39;s target.</summary>
240 <returns>The name of the attribute&#39;s target type.</returns>
242 <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Type">
243 <summary>Gets or sets the string to display in the type column of the debugger variable windows.</summary>
244 <returns>The string to display in the type column of the debugger variable windows.</returns>
246 <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Value">
247 <summary>Gets the string to display in the value column of the debugger variable windows.</summary>
248 <returns>The string to display in the value column of the debugger variable.</returns>
250 <member name="T:System.Diagnostics.DebuggerHiddenAttribute">
251 <summary>Specifies the <see cref="T:System.Diagnostics.DebuggerHiddenAttribute"></see>. This class cannot be inherited.</summary>
253 <member name="M:System.Diagnostics.DebuggerHiddenAttribute.#ctor">
254 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerHiddenAttribute"></see> class.</summary>
256 <member name="T:System.Diagnostics.DebuggerNonUserCodeAttribute">
257 <summary>Identifies a type or member that is not part of the user code for an application.</summary>
259 <member name="M:System.Diagnostics.DebuggerNonUserCodeAttribute.#ctor">
260 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerNonUserCodeAttribute"></see> class.</summary>
262 <member name="T:System.Diagnostics.DebuggerStepperBoundaryAttribute">
263 <summary>Indicates the code following the attribute is to be executed in run, not step, mode.</summary>
265 <member name="M:System.Diagnostics.DebuggerStepperBoundaryAttribute.#ctor">
266 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerStepperBoundaryAttribute"></see> class.</summary>
268 <member name="T:System.Diagnostics.DebuggerStepThroughAttribute">
269 <summary>Instructs the debugger to step through the code instead of stepping into the code. This class cannot be inherited.</summary>
271 <member name="M:System.Diagnostics.DebuggerStepThroughAttribute.#ctor">
272 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerStepThroughAttribute"></see> class.</summary>
274 <member name="T:System.Diagnostics.DebuggerTypeProxyAttribute">
275 <summary>Specifies the display proxy for a type.</summary>
277 <member name="M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.String)">
278 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerTypeProxyAttribute"></see> class using the type name of the proxy.</summary>
279 <param name="typeName">The type name of the proxy type.</param>
281 <member name="M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.Type)">
282 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerTypeProxyAttribute"></see> class using the type of the proxy.</summary>
283 <param name="type">The proxy type.</param>
284 <exception cref="T:System.ArgumentNullException"><paramref name="type">type</paramref> is null.</exception>
286 <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.ProxyTypeName">
287 <summary>Gets the type name of the proxy type.</summary>
288 <returns>The type name of the proxy type.</returns>
290 <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.Target">
291 <summary>Gets or sets the target type for the attribute.</summary>
292 <returns>The target type for the attribute.</returns>
293 <exception cref="T:System.ArgumentNullException"><see cref="System.Diagnostics.DebuggerTypeProxyAttribute.Target"></see> is set to null.</exception>
295 <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.TargetTypeName">
296 <summary>Gets or sets the name of the target type.</summary>
297 <returns>The name of the target type.</returns>
299 <member name="T:System.Diagnostics.DebuggerVisualizerAttribute">
300 <summary>Specifies that the type has a visualizer. This class cannot be inherited.</summary>
302 <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String)">
303 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute"></see> class, specifying the type name of the visualizer.</summary>
304 <param name="visualizerTypeName">The fully qualified type name of the visualizer.</param>
306 <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type)">
307 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute"></see> class, specifying the type of the visualizer.</summary>
308 <param name="visualizer">The type of the visualizer.</param>
309 <exception cref="T:System.ArgumentNullException"><paramref name="visualizer">visualizer</paramref> is null.</exception>
311 <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.String)">
312 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute"></see> class, specifying the type name of the visualizer and the type name of the visualizer object source.</summary>
313 <param name="visualizerTypeName">The fully qualified type name of the visualizer.</param>
314 <param name="visualizerObjectSourceTypeName">The fully qualified type name of the visualizer object source.</param>
316 <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.Type)">
317 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute"></see> class, specifying the type name of the visualizer and the type of the visualizer object source.</summary>
318 <param name="visualizerTypeName">The fully qualified type name of the visualizer.</param>
319 <param name="visualizerObjectSource">The type of the visualizer object source.</param>
320 <exception cref="T:System.ArgumentNullException"><paramref name="visualizerObjectSource">visualizerObjectSource</paramref> is null.</exception>
322 <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.String)">
323 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute"></see> class, specifying the type of the visualizer and the type name of the visualizer object source.</summary>
324 <param name="visualizer">The type of the visualizer.</param>
325 <param name="visualizerObjectSourceTypeName">The fully qualified type name of the visualizer object source.</param>
326 <exception cref="T:System.ArgumentNullException"><paramref name="visualizer">visualizer</paramref> is null.</exception>
328 <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.Type)">
329 <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute"></see> class, specifying the type of the visualizer and the type of the visualizer object source.</summary>
330 <param name="visualizer">The type of the visualizer.</param>
331 <param name="visualizerObjectSource">The type of the visualizer object source.</param>
332 <exception cref="T:System.ArgumentNullException"><paramref name="visualizerObjectSource">visualizerObjectSource</paramref> is null.</exception>
334 <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.Description">
335 <summary>Gets or sets the description of the visualizer.</summary>
336 <returns>The description of the visualizer.</returns>
338 <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.Target">
339 <summary>Gets or sets the target type when the attribute is applied at the assembly level.</summary>
340 <returns>The type that is the target of the visualizer.</returns>
341 <exception cref="T:System.ArgumentNullException">The value cannot be set because it is null.</exception>
343 <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.TargetTypeName">
344 <summary>Gets or sets the fully qualified type name when the attribute is applied at the assembly level.</summary>
345 <returns>The fully qualified type name of the target type.</returns>
347 <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.VisualizerObjectSourceTypeName">
348 <summary>Gets the fully qualified type name of the visualizer object source.</summary>
349 <returns>The fully qualified type name of the visualizer object source.</returns>
351 <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.VisualizerTypeName">
352 <summary>Gets the fully qualified type name of the visualizer.</summary>
353 <returns>The fully qualified visualizer type name.</returns>