Updated broken ref in xml doc.

This commit is contained in:
soukoku
2014-05-07 06:53:02 -04:00
parent ade7c32888
commit fb427437d7
2 changed files with 10 additions and 10 deletions

View File

@@ -88,7 +88,7 @@ namespace NTwain
public ItemType ItemType { get; private set; } public ItemType ItemType { get; private set; }
/// <summary> /// <summary>
/// Gets the one value if container is <see cref="NTwain.ContainerType.Array"/>. /// Gets the one value if container is <see cref="NTwain.Data.ContainerType.Array"/>.
/// </summary> /// </summary>
/// <value> /// <value>
/// The one value. /// The one value.
@@ -96,7 +96,7 @@ namespace NTwain
public object OneValue { get; private set; } public object OneValue { get; private set; }
/// <summary> /// <summary>
/// Gets the collection values if container is <see cref="NTwain.ContainerType.Enum"/> or <see cref="NTwain.ContainerType.Range"/> . /// Gets the collection values if container is <see cref="NTwain.Data.ContainerType.Enum"/> or <see cref="NTwain.Data.ContainerType.Range"/> .
/// </summary> /// </summary>
/// <value> /// <value>
/// The collection values. /// The collection values.
@@ -108,11 +108,11 @@ namespace NTwain
#region enum prop #region enum prop
/// <summary> /// <summary>
/// Gets the current value index if container is <see cref="NTwain.ContainerType.Enum"/>. /// Gets the current value index if container is <see cref="NTwain.Data.ContainerType.Enum"/>.
/// </summary> /// </summary>
public int EnumCurrentIndex { get; private set; } public int EnumCurrentIndex { get; private set; }
/// <summary> /// <summary>
/// Gets the default value index if container is <see cref="NTwain.ContainerType.Enum" />. /// Gets the default value index if container is <see cref="NTwain.Data.ContainerType.Enum" />.
/// </summary> /// </summary>
public int EnumDefaultIndex { get; private set; } public int EnumDefaultIndex { get; private set; }
@@ -121,14 +121,14 @@ namespace NTwain
#region range prop #region range prop
/// <summary> /// <summary>
/// Gets the current value if container is <see cref="NTwain.ContainerType.Range" />. /// Gets the current value if container is <see cref="NTwain.Data.ContainerType.Range" />.
/// </summary> /// </summary>
/// <value> /// <value>
/// The range current value. /// The range current value.
/// </value> /// </value>
public object RangeCurrentValue { get; private set; } public object RangeCurrentValue { get; private set; }
/// <summary> /// <summary>
/// Gets the default value if container is <see cref="NTwain.ContainerType.Range" />. /// Gets the default value if container is <see cref="NTwain.Data.ContainerType.Range" />.
/// </summary> /// </summary>
/// <value> /// <value>
/// The range default value. /// The range default value.

View File

@@ -1440,8 +1440,8 @@ namespace NTwain.Data
public FileType FileType { get { return (FileType)_fileType; } set { _fileType = (int)value; } } public FileType FileType { get { return (FileType)_fileType; } set { _fileType = (int)value; } }
/// <summary> /// <summary>
/// If <see cref="NTwain.Values.FileType.Directory"/>, total size of media in bytes. /// If <see cref="NTwain.Data.FileType.Directory"/>, total size of media in bytes.
/// If <see cref="NTwain.Values.FileType.Image"/>, size of image in bytes. /// If <see cref="NTwain.Data.FileType.Image"/>, size of image in bytes.
/// </summary> /// </summary>
/// <value> /// <value>
/// The size. /// The size.
@@ -1470,14 +1470,14 @@ namespace NTwain.Data
/// </summary> /// </summary>
public int NewImageSize { get { return _newImageSize; } set { _newImageSize = value; } } public int NewImageSize { get { return _newImageSize; } set { _newImageSize = value; } }
/// <summary> /// <summary>
/// If applicable, return the number of <see cref="NTwain.Values.FileType.Image"/> files on the file system including those in all sub-directories. /// If applicable, return the number of <see cref="NTwain.Data.FileType.Image"/> files on the file system including those in all sub-directories.
/// </summary> /// </summary>
/// <value> /// <value>
/// The number of files. /// The number of files.
/// </value> /// </value>
public uint NumberOfFiles { get { return _numberOfFiles; } set { _numberOfFiles = value; } } public uint NumberOfFiles { get { return _numberOfFiles; } set { _numberOfFiles = value; } }
/// <summary> /// <summary>
/// The number of audio snippets associated with a file of type <see cref="NTwain.Values.FileType.Image"/>. /// The number of audio snippets associated with a file of type <see cref="NTwain.Data.FileType.Image"/>.
/// </summary> /// </summary>
/// <value> /// <value>
/// The number of snippets. /// The number of snippets.