Skip to content

Commit

Permalink
Updated PSID.ToString(string) docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dahall committed Jan 6, 2020
1 parent ee98f15 commit 34ee12d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PInvoke/Security/AdvApi32/PSID.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,11 @@ public override bool Equals(object obj)
/// <summary>Converts the value of this security identifier (SID) to its equivalent string representation according to the provided format specifier.</summary>
/// <param name="format">
/// A single format specifier that indicates how to format the value of this security identifier (SID). The format parameter can be
/// "B", "D", "N", or "P". If format is null or an empty string (""), "D" is used.
/// "B" (binary), "D" (sddl), "N" (name), or "P" (upn). If format is null or an empty string (""), "D" is used.
/// </param>
/// <returns>The value of this security identifier (SID), in the specified format.</returns>
/// <exception cref="ArgumentException">SID value is not a valid SID. - pSid</exception>
/// <exception cref="FormatException">The value of format is not null, an empty string (""), "B", "D", "N", or "P".</exception>
/// <exception cref="FormatException">The value of format is not null, an empty string (""), "B" (binary), "D" (sddl), "N" (name), or "P" (upn).</exception>
/// <remarks>
/// <para>The following table shows the accepted format specifiers for the format parameter.</para>
/// <list type="table">
Expand Down Expand Up @@ -401,7 +401,7 @@ public static class PSIDExtensions
/// <param name="pSid">A pointer to a valid SID structure.</param>
/// <param name="format">
/// A single format specifier that indicates how to format the value of this security identifier (SID). The format parameter can be
/// "B", "D", "N", or "P". If format is null or an empty string (""), "D" is used.
/// "B" (binary), "D" (sddl), "N" (name), or "P" (upn). If format is null or an empty string (""), "D" is used.
/// </param>
/// <returns>The value of this security identifier (SID), in the specified format.</returns>
/// <exception cref="ArgumentException">SID value is not a valid SID. - pSid</exception>
Expand Down

0 comments on commit 34ee12d

Please sign in to comment.