Browse Source

Documentation changes.

pull/23/head
dirk 10 years ago
parent
commit
23982be7de
  1. 2
      src/ImageSharp/Image/ImageProperty.cs
  2. 8
      src/ImageSharp/Numerics/Rectangle.cs
  3. 8
      src/ImageSharp/Profiles/Exif/ExifValue.cs

2
src/ImageSharp/Image/ImageProperty.cs

@ -38,7 +38,7 @@ namespace ImageSharp
public string Name { get; } public string Name { get; }
/// <summary> /// <summary>
/// The value of this <see cref="ImageProperty"/>. /// Gets the value of this <see cref="ImageProperty"/>.
/// </summary> /// </summary>
public string Value { get; } public string Value { get; }

8
src/ImageSharp/Numerics/Rectangle.cs

@ -64,7 +64,7 @@ namespace ImageSharp
} }
/// <summary> /// <summary>
/// The x-coordinate of this <see cref="Rectangle"/>. /// Gets or sets the x-coordinate of this <see cref="Rectangle"/>.
/// </summary> /// </summary>
public int X public int X
{ {
@ -80,7 +80,7 @@ namespace ImageSharp
} }
/// <summary> /// <summary>
/// The y-coordinate of this <see cref="Rectangle"/>. /// Gets or sets the y-coordinate of this <see cref="Rectangle"/>.
/// </summary> /// </summary>
public int Y public int Y
{ {
@ -96,7 +96,7 @@ namespace ImageSharp
} }
/// <summary> /// <summary>
/// The width of this <see cref="Rectangle"/>. /// Gets or sets the width of this <see cref="Rectangle"/>.
/// </summary> /// </summary>
public int Width public int Width
{ {
@ -112,7 +112,7 @@ namespace ImageSharp
} }
/// <summary> /// <summary>
/// The height of this <see cref="Rectangle"/>. /// Gets or sets the height of this <see cref="Rectangle"/>.
/// </summary> /// </summary>
public int Height public int Height
{ {

8
src/ImageSharp/Profiles/Exif/ExifValue.cs

@ -42,7 +42,7 @@ namespace ImageSharp
} }
/// <summary> /// <summary>
/// The data type of the exif value. /// Gets the data type of the exif value.
/// </summary> /// </summary>
public ExifDataType DataType public ExifDataType DataType
{ {
@ -50,7 +50,7 @@ namespace ImageSharp
} }
/// <summary> /// <summary>
/// Returns true if the value is an array. /// Gets a value indicating whether the value is an array.
/// </summary> /// </summary>
public bool IsArray public bool IsArray
{ {
@ -58,7 +58,7 @@ namespace ImageSharp
} }
/// <summary> /// <summary>
/// The tag of the exif value. /// Gets the tag of the exif value.
/// </summary> /// </summary>
public ExifTag Tag public ExifTag Tag
{ {
@ -66,7 +66,7 @@ namespace ImageSharp
} }
/// <summary> /// <summary>
/// The value. /// Gets or sets the value.
/// </summary> /// </summary>
public object Value public object Value
{ {

Loading…
Cancel
Save