Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-03-07 17:17:18 +0400
committernulltoken <emeric.fermas@gmail.com>2012-03-07 17:17:18 +0400
commita26e38ffe87bd0f219d6a24c889a9e60d40bba41 (patch)
treea48ccaac3584fdec31fcc8e2ecf25de76d71b94d /LibGit2Sharp
parentd4307c3a2c72c55a9d606be739f8849730d32f47 (diff)
Fix some missing xml doc
Diffstat (limited to 'LibGit2Sharp')
-rw-r--r--LibGit2Sharp/LibGit2Exception.cs15
-rw-r--r--LibGit2Sharp/ReferenceWrapper.cs2
2 files changed, 16 insertions, 1 deletions
diff --git a/LibGit2Sharp/LibGit2Exception.cs b/LibGit2Sharp/LibGit2Exception.cs
index 4445f9e1..1419b799 100644
--- a/LibGit2Sharp/LibGit2Exception.cs
+++ b/LibGit2Sharp/LibGit2Exception.cs
@@ -2,17 +2,32 @@
namespace LibGit2Sharp
{
+ /// <summary>
+ /// The exception that is thrown when an error occurs during application execution.
+ /// </summary>
public class LibGit2Exception : Exception
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref = "LibGit2Exception" /> class.
+ /// </summary>
public LibGit2Exception()
{
}
+ /// <summary>
+ /// Initializes a new instance of the <see cref = "LibGit2Exception" /> class with a specified error message.
+ /// </summary>
+ /// <param name = "message">A message that describes the error. </param>
public LibGit2Exception(string message)
: base(message)
{
}
+ /// <summary>
+ /// Initializes a new instance of the <see cref = "LibGit2Exception" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.
+ /// </summary>
+ /// <param name = "message">The error message that explains the reason for the exception. </param>
+ /// <param name = "innerException">The exception that is the cause of the current exception. If the <paramref name = "innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
public LibGit2Exception(string message, Exception innerException) : base(message, innerException)
{
}
diff --git a/LibGit2Sharp/ReferenceWrapper.cs b/LibGit2Sharp/ReferenceWrapper.cs
index 95b0674d..487cc1a7 100644
--- a/LibGit2Sharp/ReferenceWrapper.cs
+++ b/LibGit2Sharp/ReferenceWrapper.cs
@@ -55,7 +55,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the <typeparam name = "TObject" /> this <see cref = "ReferenceWrapper{TObject}" /> points to.
+ /// Gets the <typeparamref name="TObject"/> this <see cref = "ReferenceWrapper{TObject}" /> points to.
/// </summary>
protected TObject TargetObject
{