summaryrefslogtreecommitdiff
path: root/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.xml')
-rwxr-xr-x.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.xml355
1 files changed, 355 insertions, 0 deletions
diff --git a/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.xml b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.xml
new file mode 100755
index 0000000000..2d8a18a16f
--- /dev/null
+++ b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.xml
@@ -0,0 +1,355 @@
+<?xml version="1.0" encoding="utf-8"?><span>
+<doc>
+ <assembly>
+ <name>System.Diagnostics.Debug</name>
+ </assembly>
+ <members>
+ <member name="T:System.Diagnostics.Debug">
+ <summary>Provides a set of methods and properties that help debug your code.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Assert(System.Boolean)">
+ <summary>Checks for a condition; if the condition is false, displays a message box that shows the call stack.</summary>
+ <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>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Assert(System.Boolean,System.String)">
+ <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>
+ <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>
+ <param name="message">The message to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Assert(System.Boolean,System.String,System.String)">
+ <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>
+ <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>
+ <param name="message">The message to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection.</param>
+ <param name="detailMessage">The detailed message to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Assert(System.Boolean,System.String,System.String,System.Object[])">
+ <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>
+ <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>
+ <param name="message">The message to send to the <see cref="P:System.Diagnostics.Trace.Listeners"></see> collection.</param>
+ <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>
+ <param name="args">An object array that contains zero or more objects to format.</param>
+ </member>
+ <member name="P:System.Diagnostics.Debug.AutoFlush">
+ <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>
+ <returns>true if <see cref="M:System.Diagnostics.Debug.Flush"></see> is called on the <see cref="P:System.Diagnostics.Debug.Listeners"></see> after every write; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Close">
+ <summary>Flushes the output buffer and then calls the Close method on each of the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Fail(System.String)">
+ <summary>Emits the specified error message.</summary>
+ <param name="message">A message to emit.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Fail(System.String,System.String)">
+ <summary>Emits an error message and a detailed error message.</summary>
+ <param name="message">A message to emit.</param>
+ <param name="detailMessage">A detailed message to emit.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Flush">
+ <summary>Flushes the output buffer and causes buffered data to write to the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Indent">
+ <summary>Increases the current <see cref="P:System.Diagnostics.Debug.IndentLevel"></see> by one.</summary>
+ </member>
+ <member name="P:System.Diagnostics.Debug.IndentLevel">
+ <summary>Gets or sets the indent level.</summary>
+ <returns>The indent level. The default is 0.</returns>
+ </member>
+ <member name="P:System.Diagnostics.Debug.IndentSize">
+ <summary>Gets or sets the number of spaces in an indent.</summary>
+ <returns>The number of spaces in an indent. The default is four.</returns>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Print(System.String)">
+ <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>
+ <param name="message">The message to write.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Print(System.String,System.Object[])">
+ <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>
+ <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>
+ <param name="args">An object array containing zero or more objects to format.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is invalid. -or- 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>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Unindent">
+ <summary>Decreases the current <see cref="P:System.Diagnostics.Debug.IndentLevel"></see> by one.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Write(System.String,System.String)">
+ <summary>Writes a category name and message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
+ <param name="message">A message to write.</param>
+ <param name="category">A category name used to organize the output.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Write(System.Object,System.String)">
+ <summary>Writes a category name and the value of the object'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>
+ <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
+ <param name="category">A category name used to organize the output.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Write(System.Object)">
+ <summary>Writes the value of the object'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>
+ <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.Write(System.String)">
+ <summary>Writes a message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
+ <param name="message">A message to write.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Object)">
+ <summary>Writes the value of the object'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>
+ <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>
+ <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.String)">
+ <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>
+ <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>
+ <param name="message">A message to write.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.Object,System.String)">
+ <summary>Writes a category name and the value of the object'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>
+ <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>
+ <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
+ <param name="category">A category name used to organize the output.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteIf(System.Boolean,System.String,System.String)">
+ <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>
+ <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>
+ <param name="message">A message to write.</param>
+ <param name="category">A category name used to organize the output.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLine(System.Object)">
+ <summary>Writes the value of the object'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>
+ <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLine(System.String)">
+ <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>
+ <param name="message">A message to write.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLine(System.Object,System.String)">
+ <summary>Writes a category name and the value of the object'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>
+ <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
+ <param name="category">A category name used to organize the output.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLine(System.String,System.Object[])">
+ <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>
+ <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>
+ <param name="args">An object array that contains zero or more objects to format.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLine(System.String,System.String)">
+ <summary>Writes a category name and message to the trace listeners in the <see cref="P:System.Diagnostics.Debug.Listeners"></see> collection.</summary>
+ <param name="message">A message to write.</param>
+ <param name="category">A category name used to organize the output.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Object,System.String)">
+ <summary>Writes a category name and the value of the object'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>
+ <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>
+ <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
+ <param name="category">A category name used to organize the output.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.Object)">
+ <summary>Writes the value of the object'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>
+ <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>
+ <param name="value">An object whose name is sent to the <see cref="P:System.Diagnostics.Debug.Listeners"></see>.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.String)">
+ <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>
+ <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>
+ <param name="message">A message to write.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debug.WriteLineIf(System.Boolean,System.String,System.String)">
+ <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>
+ <param name="condition">true to cause a message to be written; otherwise, false.</param>
+ <param name="message">A message to write.</param>
+ <param name="category">A category name used to organize the output.</param>
+ </member>
+ <member name="T:System.Diagnostics.Debugger">
+ <summary>Enables communication with a debugger. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Debugger.Break">
+ <summary>Signals a breakpoint to an attached debugger.</summary>
+ <exception cref="T:System.Security.SecurityException">The <see cref="T:System.Security.Permissions.UIPermission"></see> is not set to break into the debugger.</exception>
+ </member>
+ <member name="F:System.Diagnostics.Debugger.DefaultCategory">
+ <summary>Represents the default category of message with a constant.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Diagnostics.Debugger.IsAttached">
+ <summary>Gets a value that indicates whether a debugger is attached to the process.</summary>
+ <returns>true if a debugger is attached; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Diagnostics.Debugger.IsLogging">
+ <summary>Checks to see if logging is enabled by an attached debugger.</summary>
+ <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 <see cref="~/docs/framework/debug-trace-profile/enabling-jit-attach-debugging.md">Enabling JIT-Attach Debugging</see>.</returns>
+ </member>
+ <member name="M:System.Diagnostics.Debugger.Launch">
+ <summary>Launches and attaches a debugger to the process.</summary>
+ <returns>true if the startup is successful or if the debugger is already attached; otherwise, false.</returns>
+ <exception cref="T:System.Security.SecurityException">The <see cref="T:System.Security.Permissions.UIPermission"></see> is not set to start the debugger.</exception>
+ </member>
+ <member name="M:System.Diagnostics.Debugger.Log(System.Int32,System.String,System.String)">
+ <summary>Posts a message for the attached debugger.</summary>
+ <param name="level">A description of the importance of the message.</param>
+ <param name="category">The category of the message.</param>
+ <param name="message">The message to show.</param>
+ </member>
+ <member name="M:System.Diagnostics.Debugger.NotifyOfCrossThreadDependency">
+ <summary>Notifies a debugger that execution is about to enter a path that involves a cross-thread dependency.</summary>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerBrowsableAttribute">
+ <summary>Determines if and how a member is displayed in the debugger variable windows. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerBrowsableAttribute.#ctor(System.Diagnostics.DebuggerBrowsableState)">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerBrowsableAttribute"></see> class.</summary>
+ <param name="state">One of the <see cref="T:System.Diagnostics.DebuggerBrowsableState"></see> values that specifies how to display the member.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="state">state</paramref> is not one of the <see cref="T:System.Diagnostics.DebuggerBrowsableState"></see> values.</exception>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerBrowsableAttribute.State">
+ <summary>Gets the display state for the attribute.</summary>
+ <returns>One of the <see cref="T:System.Diagnostics.DebuggerBrowsableState"></see> values.</returns>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerBrowsableState">
+ <summary>Provides display instructions for the debugger.</summary>
+ </member>
+ <member name="F:System.Diagnostics.DebuggerBrowsableState.Collapsed">
+ <summary>Show the element as collapsed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Diagnostics.DebuggerBrowsableState.Never">
+ <summary>Never show the element.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Diagnostics.DebuggerBrowsableState.RootHidden">
+ <summary>Do not display the root element; display the child elements if the element is a collection or array of items.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerDisplayAttribute">
+ <summary>Determines how a class or field is displayed in the debugger variable windows.</summary>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerDisplayAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerDisplayAttribute"></see> class.</summary>
+ <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>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Name">
+ <summary>Gets or sets the name to display in the debugger variable windows.</summary>
+ <returns>The name to display in the debugger variable windows.</returns>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Target">
+ <summary>Gets or sets the type of the attribute's target.</summary>
+ <returns>The attribute's target type.</returns>
+ <exception cref="T:System.ArgumentNullException"><see cref="P:System.Diagnostics.DebuggerDisplayAttribute.Target"></see> is set to null.</exception>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerDisplayAttribute.TargetTypeName">
+ <summary>Gets or sets the type name of the attribute's target.</summary>
+ <returns>The name of the attribute's target type.</returns>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Type">
+ <summary>Gets or sets the string to display in the type column of the debugger variable windows.</summary>
+ <returns>The string to display in the type column of the debugger variable windows.</returns>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerDisplayAttribute.Value">
+ <summary>Gets the string to display in the value column of the debugger variable windows.</summary>
+ <returns>The string to display in the value column of the debugger variable.</returns>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerHiddenAttribute">
+ <summary>Specifies the <see cref="T:System.Diagnostics.DebuggerHiddenAttribute"></see>. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerHiddenAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerHiddenAttribute"></see> class.</summary>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerNonUserCodeAttribute">
+ <summary>Identifies a type or member that is not part of the user code for an application.</summary>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerNonUserCodeAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerNonUserCodeAttribute"></see> class.</summary>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerStepperBoundaryAttribute">
+ <summary>Indicates the code following the attribute is to be executed in run, not step, mode.</summary>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerStepperBoundaryAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerStepperBoundaryAttribute"></see> class.</summary>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerStepThroughAttribute">
+ <summary>Instructs the debugger to step through the code instead of stepping into the code. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerStepThroughAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerStepThroughAttribute"></see> class.</summary>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerTypeProxyAttribute">
+ <summary>Specifies the display proxy for a type.</summary>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerTypeProxyAttribute"></see> class using the type name of the proxy.</summary>
+ <param name="typeName">The type name of the proxy type.</param>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerTypeProxyAttribute.#ctor(System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerTypeProxyAttribute"></see> class using the type of the proxy.</summary>
+ <param name="type">The proxy type.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="type">type</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.ProxyTypeName">
+ <summary>Gets the type name of the proxy type.</summary>
+ <returns>The type name of the proxy type.</returns>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.Target">
+ <summary>Gets or sets the target type for the attribute.</summary>
+ <returns>The target type for the attribute.</returns>
+ <exception cref="T:System.ArgumentNullException"><see cref="P:System.Diagnostics.DebuggerTypeProxyAttribute.Target"></see> is set to null.</exception>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerTypeProxyAttribute.TargetTypeName">
+ <summary>Gets or sets the name of the target type.</summary>
+ <returns>The name of the target type.</returns>
+ </member>
+ <member name="T:System.Diagnostics.DebuggerVisualizerAttribute">
+ <summary>Specifies that the type has a visualizer. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute"></see> class, specifying the type name of the visualizer.</summary>
+ <param name="visualizerTypeName">The fully qualified type name of the visualizer.</param>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DebuggerVisualizerAttribute"></see> class, specifying the type of the visualizer.</summary>
+ <param name="visualizer">The type of the visualizer.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="visualizer">visualizer</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.String)">
+ <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>
+ <param name="visualizerTypeName">The fully qualified type name of the visualizer.</param>
+ <param name="visualizerObjectSourceTypeName">The fully qualified type name of the visualizer object source.</param>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.String,System.Type)">
+ <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>
+ <param name="visualizerTypeName">The fully qualified type name of the visualizer.</param>
+ <param name="visualizerObjectSource">The type of the visualizer object source.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="visualizerObjectSource">visualizerObjectSource</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.String)">
+ <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>
+ <param name="visualizer">The type of the visualizer.</param>
+ <param name="visualizerObjectSourceTypeName">The fully qualified type name of the visualizer object source.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="visualizer">visualizer</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Diagnostics.DebuggerVisualizerAttribute.#ctor(System.Type,System.Type)">
+ <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>
+ <param name="visualizer">The type of the visualizer.</param>
+ <param name="visualizerObjectSource">The type of the visualizer object source.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="visualizerObjectSource">visualizerObjectSource</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.Description">
+ <summary>Gets or sets the description of the visualizer.</summary>
+ <returns>The description of the visualizer.</returns>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.Target">
+ <summary>Gets or sets the target type when the attribute is applied at the assembly level.</summary>
+ <returns>The type that is the target of the visualizer.</returns>
+ <exception cref="T:System.ArgumentNullException">The value cannot be set because it is null.</exception>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.TargetTypeName">
+ <summary>Gets or sets the fully qualified type name when the attribute is applied at the assembly level.</summary>
+ <returns>The fully qualified type name of the target type.</returns>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.VisualizerObjectSourceTypeName">
+ <summary>Gets the fully qualified type name of the visualizer object source.</summary>
+ <returns>The fully qualified type name of the visualizer object source.</returns>
+ </member>
+ <member name="P:System.Diagnostics.DebuggerVisualizerAttribute.VisualizerTypeName">
+ <summary>Gets the fully qualified type name of the visualizer.</summary>
+ <returns>The fully qualified visualizer type name.</returns>
+ </member>
+ </members>
+</doc></span> \ No newline at end of file