Fixed XML doc issues

pull/83/head
David Hall 2019-08-27 14:55:55 -06:00
parent f9429f6dd9
commit 8d318e0312
2 changed files with 7 additions and 9 deletions

View File

@ -774,12 +774,10 @@ namespace Vanara.PInvoke
}
}
/// <summary>Ends the asynchronous call to <see cref="BeginDeviceIoControl{TIn, TOut}(HFILE, uint, TIn?, TOut?, AsyncCallback)"/>.</summary>
/// <summary>Ends the asynchronous call to <c>BeginDeviceIoControl&lt;TIn, TOut&gt;(HFILE, uint, TIn?, TOut?, AsyncCallback)</c>.</summary>
/// <typeparam name="TIn">The type of the input value.</typeparam>
/// <typeparam name="TOut">The type of the output value.</typeparam>
/// <param name="asyncResult">
/// The asynchronous result returned from <see cref="BeginDeviceIoControl{TIn, TOut}(HFILE, uint, TIn?, TOut?, AsyncCallback)"/>.
/// </param>
/// <param name="asyncResult">The asynchronous result returned from <c>BeginDeviceIoControl&gt;TIn, TOut&lt;(HFILE, uint, TIn?, TOut?, AsyncCallback)</c>.</param>
/// <returns>The output value, if exists; <c>null</c> otherwise.</returns>
[PInvokeData("Winbase.h", MSDNShortId = "aa363216")]
public static TOut? EndDeviceIoControl<TIn, TOut>(IAsyncResult asyncResult) where TIn : struct where TOut : struct
@ -788,9 +786,9 @@ namespace Vanara.PInvoke
return Unpack<TIn, TOut>(ret as byte[]).Item2;
}
/// <summary>Ends the asynchronous call to <see cref="BeginDeviceIoControl{TIn, TOut}(HFILE, uint, TIn?, TOut?, AsyncCallback)"/>.</summary>
/// <summary>Ends the asynchronous call to <c>BeginDeviceIoControl&lt;TIn, TOut&gt;(HFILE, uint, TIn?, TOut?, AsyncCallback)</c>.</summary>
/// <param name="asyncResult">
/// The asynchronous result returned from <see cref="BeginDeviceIoControl{TIn, TOut}(HFILE, uint, TIn?, TOut?, AsyncCallback)"/>.
/// The asynchronous result returned from <c>BeginDeviceIoControl&lt;TIn, TOut&gt;(HFILE, uint, TIn?, TOut?, AsyncCallback)</c>.
/// </param>
/// <returns>The output buffer, if exists; <c>null</c> otherwise.</returns>
[PInvokeData("Winbase.h", MSDNShortId = "aa363216")]

View File

@ -207,7 +207,7 @@ namespace Vanara.PInvoke
/// </summary>
DST_TEXT = 0x0001,
/// <summary>The image is text that may contain an accelerator mnemonic. DrawState interprets the ampersand (&) prefix character
/// <summary>The image is text that may contain an accelerator mnemonic. DrawState interprets the ampersand (&amp;) prefix character
/// as a directive to underscore the character that follows. The lData parameter is a pointer to the string, and the wData
/// parameter specifies the length. If wData is zero, the string must be null-terminated.</summary>
DST_PREFIXTEXT = 0x0002,
@ -233,11 +233,11 @@ namespace Vanara.PInvoke
/// <summary>Draws the image using the brush specified by the hbr parameter.</summary>
DSS_MONO = 0x0080,
/// <summary>Ignores the ampersand (&) prefix character in the text, thus the letter that follows will not be underlined. This
/// <summary>Ignores the ampersand (&amp;) prefix character in the text, thus the letter that follows will not be underlined. This
/// must be used with DST_PREFIXTEXT.</summary>
DSS_HIDEPREFIX = 0x0200,
/// <summary>Draws only the underline at the position of the letter after the ampersand (&) prefix character. No text in the
/// <summary>Draws only the underline at the position of the letter after the ampersand (&amp;) prefix character. No text in the
/// string is drawn. This must be used with DST_PREFIXTEXT.</summary>
DSS_PREFIXONLY = 0x0400,