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; }
/// <summary>
/// The value of this <see cref="ImageProperty"/>.
/// Gets the value of this <see cref="ImageProperty"/>.
/// </summary>
public string Value { get; }

8
src/ImageSharp/Numerics/Rectangle.cs

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

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

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

Loading…
Cancel
Save