Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Review changes
  • Loading branch information
ChrisMaddock authored May 15, 2018
commit 6b550c47bd6b084099bde57fda2e6198c6c174db
20 changes: 10 additions & 10 deletions xml/System/ArgumentException.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@

|Property|Value|
|--------------|-----------|
|<xref:System.Exception.InnerException%2A>|A null reference (`Nothing` in Visual Basic).|
|<xref:System.Exception.Message%2A>|The localized error message string.|
|<xref:System.ArgumentException.InnerException%2A>|A null reference (`Nothing` in Visual Basic).|
|<xref:System.ArgumentException.Message%2A>|The localized error message string.|

]]></format>
</remarks>
Expand Down Expand Up @@ -167,7 +167,7 @@

|Property|Value|
|--------------|-----------|
|<xref:System.Exception.InnerException%2A>|A null reference (`Nothing` in Visual Basic).|
|<xref:System.ArgumentException.InnerException%2A>|A null reference (`Nothing` in Visual Basic).|
|<xref:System.ArgumentException.Message%2A>|The error message string.|

]]></format>
Expand Down Expand Up @@ -252,14 +252,14 @@
## Remarks
This constructor initializes the <xref:System.ArgumentException.Message%2A> property of the new instance using the value of the `message` parameter. The content of the `message` parameter is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the <xref:System.Exception.InnerException%2A> property. The <xref:System.Exception.InnerException%2A> property returns the same value that is passed into the constructor, or `null` if the <xref:System.Exception.InnerException%2A> property does not supply the inner exception value to the constructor.
An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the <xref:System.ArgumentException.InnerException%2A> property. The <xref:System.ArgumentException.InnerException%2A> property returns the same value that is passed into the constructor, or `null` if the <xref:System.ArgumentException.InnerException%2A> property does not supply the inner exception value to the constructor.

The following table shows the initial property values for an instance of <xref:System.ArgumentException>.

|Property|Value|
|--------------|-----------|
|<xref:System.Exception.InnerException%2A>|The inner exception reference.|
|<xref:System.Exception.Message%2A>|The localized error message string.|
|<xref:System.ArgumentException.InnerException%2A>|The inner exception reference.|
|<xref:System.ArgumentException.Message%2A>|The localized error message string.|

]]></format>
</remarks>
Expand Down Expand Up @@ -369,15 +369,15 @@

This constructor initializes the <xref:System.ArgumentException.ParamName%2A> property of the new instance using `paramName`. The content of `paramName` is intended to be understood by humans.

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the <xref:System.Exception.InnerException%2A> property. The <xref:System.Exception.InnerException%2A> property returns the same value that is passed into the constructor, or `null` if the <xref:System.Exception.InnerException%2A> property does not supply the inner exception value to the constructor.
An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the <xref:System.ArgumentException.InnerException%2A> property. The <xref:System.ArgumentException.InnerException%2A> property returns the same value that is passed into the constructor, or `null` if the <xref:System.ArgumentException.InnerException%2A> property does not supply the inner exception value to the constructor.

The following table shows the initial property values for an instance of <xref:System.ArgumentException>.

|Property|Value|
|--------------|-----------|
|<xref:System.Exception.InnerException%2A>|The inner exception reference.|
|<xref:System.Exception.Message%2A>|The localized error message string.|
|<xref:System.Exception.ParamName%2A>|The parameter name string.|
|<xref:System.ArgumentException.InnerException%2A>|The inner exception reference.|
|<xref:System.ArgumentException.Message%2A>|The localized error message string.|
|<xref:System.ArgumentException.ParamName%2A>|The parameter name string.|

]]></format>
</remarks>
Expand Down