Doc comment cleanup on GetApplicationUniqueIdentifier
This commit is contained in:
parent
82d92064c5
commit
0966e37d94
|
|
@ -88,10 +88,17 @@ namespace Microsoft.AspNet.DataProtection
|
||||||
/// <returns>A unique application identifier, or null if <paramref name="services"/> is null
|
/// <returns>A unique application identifier, or null if <paramref name="services"/> is null
|
||||||
/// or cannot provide a unique application identifier.</returns>
|
/// or cannot provide a unique application identifier.</returns>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
|
/// <para>
|
||||||
/// The returned identifier should be stable for repeated runs of this same application on
|
/// The returned identifier should be stable for repeated runs of this same application on
|
||||||
/// this machine. Additionally, the identifier is only unique within the scope of a single
|
/// this machine. Additionally, the identifier is only unique within the scope of a single
|
||||||
/// machine, e.g., two different applications on two different machines may return the same
|
/// machine, e.g., two different applications on two different machines may return the same
|
||||||
/// value.
|
/// value.
|
||||||
|
/// </para>
|
||||||
|
/// <para>
|
||||||
|
/// This identifier may contain security-sensitive information such as physical file paths,
|
||||||
|
/// configuration settings, or other machine-specific information. Callers should take
|
||||||
|
/// special care not to disclose this information to untrusted entities.
|
||||||
|
/// </para>
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||||
public static string GetApplicationUniqueIdentifier(this IServiceProvider services)
|
public static string GetApplicationUniqueIdentifier(this IServiceProvider services)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue