Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SystemInformation documentation #305

Merged
merged 4 commits into from
Feb 10, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/helpers/SystemInformation.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
title: SystemInformation
author: nmetulev
description: The SystemInformation class is a static utility class that provides properties with some system, application and device information.
description: The SystemInformation class is an utility class that provides properties with some system, application and device information.
vgromfeld marked this conversation as resolved.
Show resolved Hide resolved
keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, SystemInformation
---

# SystemInformation

The [SystemInformation](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.uwp.helpers.systeminformation?view=uwp-toolkit-dotnet) class is a static utility class that provides properties with some system, application and device information.
The [SystemInformation](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.uwp.helpers.systeminformation?view=uwp-toolkit-dotnet) class is an utility class that provides properties with some system, application and device information.
vgromfeld marked this conversation as resolved.
Show resolved Hide resolved

> [!div class="nextstepaction"]
> [Try it in the sample app](uwpct://Helpers?sample=SystemInformation)
Expand All @@ -26,6 +26,7 @@ The [SystemInformation](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.
| DeviceModel | string | Gets the model of the device as a `string`. The value will be empty if the device model couldn't be determined (ex: when running in a virtual machine). |
| FirstUseTime | DateTime | Gets the DateTime (in UTC) that the app as first used. |
| FirstVersionInstalled | [PackageVersion](https://docs.microsoft.com/uwp/api/Windows.ApplicationModel.PackageVersion) | Gets the first version of the app that was installed. |
| Instance | SystemInformation | Gets public singleton property. |
| IsFirstRun | bool | Gets a value indicating whether the app is being used for the first time since it was installed. |
| IsAppUpdated | bool | Gets a value indicating whether the app is being used for the first time since being upgraded from an older version. |
| LastLaunchTime | DateTime | Gets the DateTime (in UTC) that this was previously launched. |
Expand Down