Doc comment cleanup on GetApplicationUniqueIdentifier

This commit is contained in:
Levi B 2015-03-14 15:43:39 -07:00
Родитель 82d92064c5
Коммит 0966e37d94
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -88,10 +88,17 @@ namespace Microsoft.AspNet.DataProtection
/// <returns>A unique application identifier, or null if <paramref name="services"/> is null
/// or cannot provide a unique application identifier.</returns>
/// <remarks>
/// <para>
/// 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
/// machine, e.g., two different applications on two different machines may return the same
/// 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>
[EditorBrowsable(EditorBrowsableState.Never)]
public static string GetApplicationUniqueIdentifier(this IServiceProvider services)