diff --git a/.github/workflows/generate-types-autopr.yml b/.github/workflows/generate-types-autopr.yml new file mode 100644 index 0000000..240322e --- /dev/null +++ b/.github/workflows/generate-types-autopr.yml @@ -0,0 +1,54 @@ +name: Weekly Type Generation and Auto PR + +on: + schedule: + - cron: '0 3 * * 1' # Every Monday at 03:00 UTC + workflow_dispatch: + +permissions: + contents: write # Needed for PR creation and branch pushes + +jobs: + generate-and-pr: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Setup .NET 9 + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '9.0.x' + + - name: Restore dependencies + run: dotnet restore + + - name: Run generator + run: dotnet run --project Generator/System.Management.Generator.csproj + + - name: Check for changes + id: git-check + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git add Types/**/*.g.cs || true + if git diff --cached --quiet; then + echo "no_changes=true" >> $GITHUB_OUTPUT + else + echo "no_changes=false" >> $GITHUB_OUTPUT + fi + + - name: Create Pull Request + if: steps.git-check.outputs.no_changes == 'false' + uses: peter-evans/create-pull-request@v6 + with: + commit-message: "chore(types): update generated types" + branch: "auto/generated-types-update" + title: "chore(types): update generated types" + body: | + Automated update of generated types from learn.microsoft.com. + This PR was created by a scheduled GitHub Action. + delete-branch: true \ No newline at end of file diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml index 2cb24ba..6309f2a 100644 --- a/.github/workflows/nuget-publish.yml +++ b/.github/workflows/nuget-publish.yml @@ -3,11 +3,9 @@ name: Build and Publish NuGet Packages on: push: branches: [ master ] - pull_request: - branches: [ master ] jobs: - build: + build-and-publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -30,7 +28,6 @@ jobs: run: dotnet pack Linq/System.Management.Linq.csproj --configuration Release --output ./nupkgs - name: Publish to NuGet - if: github.event_name == 'push' run: | set -e for pkg in ./nupkgs/*.nupkg; do diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml new file mode 100644 index 0000000..7c94b00 --- /dev/null +++ b/.github/workflows/pr-build.yml @@ -0,0 +1,22 @@ +name: Build (PR) + +on: + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '9.0.x' + + - name: Restore dependencies + run: dotnet restore + + - name: Build + run: dotnet build --configuration Release --no-restore \ No newline at end of file diff --git a/.github/workflows/pr-generator.yml b/.github/workflows/pr-generator.yml new file mode 100644 index 0000000..ecbb6ff --- /dev/null +++ b/.github/workflows/pr-generator.yml @@ -0,0 +1,70 @@ +name: PR Type Generation + +on: + pull_request: + paths: + - 'Generator/*.*' + - 'Types/**/*.g.cs' + - '.github/workflows/pr-generator.yml' + +jobs: + generate-and-commit: + runs-on: ubuntu-latest + + permissions: + contents: write # Needed to allow push with GITHUB_TOKEN + + steps: + - name: Checkout PR branch + uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: ${{ github.head_ref }} + + - name: Check last commit author + id: last-commit + run: | + AUTHOR=$(git log -1 --pretty=format:'%an') + echo "author=$AUTHOR" >> $GITHUB_OUTPUT + + - name: Setup .NET 9 + if: steps.last-commit.outputs.author != 'github-actions[bot]' + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '9.0.x' + + - name: Restore dependencies + if: steps.last-commit.outputs.author != 'github-actions[bot]' + run: dotnet restore + + - name: Run generator + if: steps.last-commit.outputs.author != 'github-actions[bot]' + run: dotnet run --project Generator/System.Management.Generator.csproj + + - name: Check for changes + if: steps.last-commit.outputs.author != 'github-actions[bot]' + id: git-check + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git add Types/**/*.g.cs || true + if git diff --cached --quiet; then + echo "no_changes=true" >> $GITHUB_OUTPUT + else + echo "no_changes=false" >> $GITHUB_OUTPUT + fi + + - name: Set up authentication for push + if: steps.last-commit.outputs.author != 'github-actions[bot]' && steps.git-check.outputs.no_changes == 'false' + run: | + git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Commit and push changes to PR branch + if: steps.last-commit.outputs.author != 'github-actions[bot]' && steps.git-check.outputs.no_changes == 'false' + run: | + git commit -m "chore(types): update generated types (PR auto-update)" + git push + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 9491a2f..9b88c5f 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,10 @@ bld/ [Ll]og/ [Ll]ogs/ +#Allow Win32 generated files to be committed +!Types/Win32/ +!Types/Win32/** + # Visual Studio 2015/2017 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot diff --git a/Generator/CodeGenerator.cs b/Generator/CodeGenerator.cs index 1478cea..aa98107 100644 --- a/Generator/CodeGenerator.cs +++ b/Generator/CodeGenerator.cs @@ -4,19 +4,27 @@ namespace System.Management.Generator; public class CodeGenerator { private static readonly HashSet _excludedFolders = new(StringComparer.OrdinalIgnoreCase) { "bin", "obj" }; - public const string DefaultTargetDirectory = "..\\..\\..\\..\\Types\\"; + + private static DirectoryInfo FindTypesDirectory() + { + var dir = new DirectoryInfo(Environment.CurrentDirectory); + while (dir != null) + { + var typesDir = new DirectoryInfo(Path.Combine(dir.FullName, "Types")); + if (typesDir.Exists) + return typesDir; + dir = dir.Parent; + } + throw new DirectoryNotFoundException("Could not find 'Types' directory in any parent directory."); + } + private readonly Dictionary _classDefinitions; private readonly DirectoryInfo _targetDirectory; - public CodeGenerator(IEnumerable classDefinitions, string targetDirectory = DefaultTargetDirectory) + public CodeGenerator(IEnumerable classDefinitions) { _classDefinitions = classDefinitions.ToDictionary(t => t.ClassName, t => t, StringComparer.InvariantCultureIgnoreCase); - _targetDirectory = new DirectoryInfo(targetDirectory); - - if (!_targetDirectory.Exists) - { - _targetDirectory.Create(); - } + _targetDirectory = FindTypesDirectory(); } public void GenerateCode() diff --git a/Generator/DefinitionLoader.cs b/Generator/DefinitionLoader.cs index d37946c..1f89d85 100644 --- a/Generator/DefinitionLoader.cs +++ b/Generator/DefinitionLoader.cs @@ -38,12 +38,23 @@ internal partial class DefinitionLoader(IEnumerable classNames) private string? CheckClass(string? className) { + if (className == null) + { + return null; + } + if ("Win32_LogicalElement".Equals(className)) { return CheckClass("CIM_LogicalElement"); } - if (className != null && !_classDefinitions.ContainsKey(className)) + + if (!_classDefinitions.ContainsKey(className)) { + if (className.IndexOf('_') == -1) + { + return CheckClass($"__{className}"); + } + _classDefinitions.Add(className, default); Console.WriteLine($"Met new class {className}."); } @@ -359,30 +370,31 @@ private static string TrimHTML(string source) /// Specifies the list of drives to schedule for Autochk at the next reboot. The string syntax consists of the drive letter followed by a colon for the logical disk, for example: "C:" /// /// Returns a value of 0 (zero) if successful, and some other value if any other error occurs. Values are listed in the following list. - private static async Task> ParseMethods(Uri classUri, string methodBlock) + private static Task> ParseMethods(Uri classUri, string methodBlock) { List result = []; - var tBodyIndex = methodBlock.IndexOf(" cells = [..TableCellRegex.Matches(methodRow.Groups[1].Value).Select(c => c.Groups[1].Value)]; - if (cells.Count != 2) - { - ErrorReporter.Report($"Found unexpected number({cells.Count}) of cells in method Row."); - } - - var nameCell = cells[0]; - var linkMatch = LinkRegex.Match(nameCell); - if (!linkMatch.Success) - { - continue; - } - - var name = TrimHTML(nameCell); - var description = TrimHTML(cells[1]); - var methodPageContent = await GetPageContentsAsync(new Uri(classUri, linkMatch.Groups[1].Value)); - } - - return result; + // TODO: Implement method parsing logic + //var tBodyIndex = methodBlock.IndexOf(" cells = [..TableCellRegex.Matches(methodRow.Groups[1].Value).Select(c => c.Groups[1].Value)]; + // if (cells.Count != 2) + // { + // ErrorReporter.Report($"Found unexpected number({cells.Count}) of cells in method Row."); + // } + + // var nameCell = cells[0]; + // var linkMatch = LinkRegex.Match(nameCell); + // if (!linkMatch.Success) + // { + // continue; + // } + + // var name = TrimHTML(nameCell); + // var description = TrimHTML(cells[1]); + // var methodPageContent = await GetPageContentsAsync(new Uri(classUri, linkMatch.Groups[1].Value)); + //} + + return Task.FromResult(result); } } diff --git a/Types/Base/_ACE.g.cs b/Types/Base/_ACE.g.cs index 1777b4a..ef8420f 100644 --- a/Types/Base/_ACE.g.cs +++ b/Types/Base/_ACE.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; -#nullable enable public partial record class _ACE(ManagementObject ManagementObject) : _SecurityRelatedClass(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class _ACE(ManagementObject ManagementObject) : _SecurityR /// public _Trustee? Trustee => (_Trustee)ManagementObject[nameof(Trustee)]; } -#nullable disable diff --git a/Types/Base/_AbsoluteTimerInstruction.g.cs b/Types/Base/_AbsoluteTimerInstruction.g.cs new file mode 100644 index 0000000..022a2ac --- /dev/null +++ b/Types/Base/_AbsoluteTimerInstruction.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _AbsoluteTimerInstruction(ManagementObject ManagementObject) : _TimerInstruction(ManagementObject) +{ + /// + /// Fixed-length string in DMTF format that specifies when the timer fires. + /// + public DateTimeOffset? EventDateTime => ManagementObject.GetDateTimePropertyValue(nameof(EventDateTime)); +} diff --git a/Types/Base/_AggregateEvent.g.cs b/Types/Base/_AggregateEvent.g.cs new file mode 100644 index 0000000..65818cb --- /dev/null +++ b/Types/Base/_AggregateEvent.g.cs @@ -0,0 +1,20 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _AggregateEvent(ManagementObject ManagementObject) : _IndicationRelated(ManagementObject) +{ + /// + /// Number of events combined to produce this single summary event. + /// + public uint? NumberOfEvents => (uint?)ManagementObject[nameof(NumberOfEvents)]; + /// + /// Copy of one of the events delivered within the aggregation interval. For example, if a consumer has registered for registry key change events from the Registry Event provider, Representative would hold an instance of the RegistryKeyChangeEvent class. + /// + public object? Representative => (object)ManagementObject[nameof(Representative)]; +} diff --git a/Types/Base/_ArbitratorConfiguration.g.cs b/Types/Base/_ArbitratorConfiguration.g.cs new file mode 100644 index 0000000..92420f1 --- /dev/null +++ b/Types/Base/_ArbitratorConfiguration.g.cs @@ -0,0 +1,96 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ArbitratorConfiguration(ManagementObject ManagementObject) : _SystemClass(ManagementObject) +{ + /// + /// Unused. Total number of outstanding tasks at any time. + /// + public uint? OutstandingTasksTotal => (uint?)ManagementObject[nameof(OutstandingTasksTotal)]; + /// + /// Unused. Number of outstanding user initiated tasks at any one time. + /// + public uint? OutstandingTasksPerUser => (uint?)ManagementObject[nameof(OutstandingTasksPerUser)]; + /// + /// Unused. Maximum number of task threads. + /// + public uint? TaskThreadsTotal => (uint?)ManagementObject[nameof(TaskThreadsTotal)]; + /// + /// Unused. Maximum number of task threads associated with a particular user t any one time. + /// + public uint? TaskThreadsPerUser => (uint?)ManagementObject[nameof(TaskThreadsPerUser)]; + /// + /// Unused. Number of quota violations permitted before a task is canceled. + /// + public uint? QuotaRetryCount => (uint?)ManagementObject[nameof(QuotaRetryCount)]; + /// + /// Unused. Delay introduced into the task execution on each quota violation. + /// + public uint? QuotaRetryWaitInterval => (uint?)ManagementObject[nameof(QuotaRetryWaitInterval)]; + /// + /// Unused. Maximum number of connected users. + /// + public uint? TotalUsers => (uint?)ManagementObject[nameof(TotalUsers)]; + /// + /// Unused. Total memory cache associated with a particular task at any one time. + /// + public uint? TotalCacheMemoryPerTask => (uint?)ManagementObject[nameof(TotalCacheMemoryPerTask)]; + /// + /// Unused. Total memory cache associated with a particular user at anyone time. + /// + public uint? TotalCacheMemoryPerUser => (uint?)ManagementObject[nameof(TotalCacheMemoryPerUser)]; + /// + /// Unused. Total memory cache associated with all users at any one time. + /// + public uint? TotalCacheMemory => (uint?)ManagementObject[nameof(TotalCacheMemory)]; + /// + /// Unused. Total disk cache associated with a particular task at any one time. + /// + public uint? TotalCacheDiskPerTask => (uint?)ManagementObject[nameof(TotalCacheDiskPerTask)]; + /// + /// Unused. Total disk cache associated with a particular user at any one time. + /// + public uint? TotalCacheDiskPerUser => (uint?)ManagementObject[nameof(TotalCacheDiskPerUser)]; + /// + /// Unused. Total disk cache associated with all users at any one time. + /// + public uint? TotalCacheDisk => (uint?)ManagementObject[nameof(TotalCacheDisk)]; + /// + /// Number of temporary subscriptions allowed for a particular user at any one time. + /// + public uint? TemporarySubscriptionsPerUser => (uint?)ManagementObject[nameof(TemporarySubscriptionsPerUser)]; + /// + /// Number of permanent subscriptions allowed for a particular user at any one time. + /// + public uint? PermanentSubscriptionsPerUser => (uint?)ManagementObject[nameof(PermanentSubscriptionsPerUser)]; + /// + /// Number of polling event queries allowed for a particular user at any one time. + /// + public uint? PollingInstructionsPerUser => (uint?)ManagementObject[nameof(PollingInstructionsPerUser)]; + /// + /// Amount of memory polling event queries, issued by a particular user, can consume at any one time. + /// + public uint? PollingMemoryPerUser => (uint?)ManagementObject[nameof(PollingMemoryPerUser)]; + /// + /// Total number of temporary subscriptions allowed for all users at any one time. + /// + public uint? TemporarySubscriptionsTotal => (uint?)ManagementObject[nameof(TemporarySubscriptionsTotal)]; + /// + /// Total number of permanent subscriptions allowed for all users at any one time. + /// + public uint? PermanentSubscriptionsTotal => (uint?)ManagementObject[nameof(PermanentSubscriptionsTotal)]; + /// + /// Total number of polling instructions allowed for all users at any one time. + /// + public uint? PollingInstructionsTotal => (uint?)ManagementObject[nameof(PollingInstructionsTotal)]; + /// + /// Total amount of memory that polling event queries, for all users combined, can consumer at any one time. + /// + public uint? PollingMemoryTotal => (uint?)ManagementObject[nameof(PollingMemoryTotal)]; +} diff --git a/Types/Base/_CIMOMIdentification.g.cs b/Types/Base/_CIMOMIdentification.g.cs new file mode 100644 index 0000000..8416e20 --- /dev/null +++ b/Types/Base/_CIMOMIdentification.g.cs @@ -0,0 +1,28 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _CIMOMIdentification(ManagementObject ManagementObject) : _SystemClass(ManagementObject) +{ + /// + /// Date and time of installation. This property is empty after the operating system is installed for the first time. + /// + public string? SetupDateTime => (string)ManagementObject[nameof(SetupDateTime)]; + /// + /// "1.00.183.0000" + /// + public string? VersionCurrentlyRunning => (string)ManagementObject[nameof(VersionCurrentlyRunning)]; + /// + /// "1.00.183.0000" + /// + public string? VersionUsedToCreateDB => (string)ManagementObject[nameof(VersionUsedToCreateDB)]; + /// + /// Installation directory. + /// + public string? WorkingDirectory => (string)ManagementObject[nameof(WorkingDirectory)]; +} diff --git a/Types/Base/_CacheControl.g.cs b/Types/Base/_CacheControl.g.cs new file mode 100644 index 0000000..b11825a --- /dev/null +++ b/Types/Base/_CacheControl.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _CacheControl(ManagementObject ManagementObject) : _SystemClass(ManagementObject) +{ +} diff --git a/Types/Base/_ClassCreationEvent.g.cs b/Types/Base/_ClassCreationEvent.g.cs new file mode 100644 index 0000000..66d4cf0 --- /dev/null +++ b/Types/Base/_ClassCreationEvent.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ClassCreationEvent(ManagementObject ManagementObject) : _ClassOperationEvent(ManagementObject) +{ +} diff --git a/Types/Base/_ClassDeletionEvent.g.cs b/Types/Base/_ClassDeletionEvent.g.cs new file mode 100644 index 0000000..8d45d5a --- /dev/null +++ b/Types/Base/_ClassDeletionEvent.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ClassDeletionEvent(ManagementObject ManagementObject) : _ClassOperationEvent(ManagementObject) +{ +} diff --git a/Types/Base/_ClassModificationEvent.g.cs b/Types/Base/_ClassModificationEvent.g.cs new file mode 100644 index 0000000..3ddcfe2 --- /dev/null +++ b/Types/Base/_ClassModificationEvent.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ClassModificationEvent(ManagementObject ManagementObject) : _ClassOperationEvent(ManagementObject) +{ + /// + /// Copy of the original version of the class. + /// + public object? PreviousClass => (object)ManagementObject[nameof(PreviousClass)]; +} diff --git a/Types/Base/_ClassOperationEvent.g.cs b/Types/Base/_ClassOperationEvent.g.cs new file mode 100644 index 0000000..9db049f --- /dev/null +++ b/Types/Base/_ClassOperationEvent.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ClassOperationEvent(ManagementObject ManagementObject) : _Event(ManagementObject) +{ + /// + /// Class affected by the event. For creation events, this is the newly created class. For modification events, this is the new version of the changed class. For deletion events, this is the deleted class. + /// + public object? TargetClass => (object)ManagementObject[nameof(TargetClass)]; +} diff --git a/Types/Base/_ClassProviderRegistration.g.cs b/Types/Base/_ClassProviderRegistration.g.cs new file mode 100644 index 0000000..c157dea --- /dev/null +++ b/Types/Base/_ClassProviderRegistration.g.cs @@ -0,0 +1,44 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ClassProviderRegistration(ManagementObject ManagementObject) : _ObjectProviderRegistration(ManagementObject) +{ + /// + /// Not used. + /// + public DateTimeOffset? CacheRefreshInterval => ManagementObject.GetDateTimePropertyValue(nameof(CacheRefreshInterval)); + /// + /// Not used. + /// + public bool? PerUserSchema => (bool?)ManagementObject[nameof(PerUserSchema)]; + /// + /// One or more queries that describe the set of referenced classes that a class provider supports. Providers that can supply association classes must include at least one query in this property. + /// + public string[]? ReferencedSetQueries => (string[])ManagementObject[nameof(ReferencedSetQueries)]; + /// + /// One or more queries that describe the set of all classes that can be supplied by the class provider, or a superset of those classes. This property never specifies a subset of supported classes. + /// + public string[]? ResultSetQueries => (string[])ManagementObject[nameof(ResultSetQueries)]; + /// + /// Not used. + /// + public bool? ReSynchroniseOnNamespaceOpen => (bool?)ManagementObject[nameof(ReSynchroniseOnNamespaceOpen)]; + /// + /// Not used. + /// + public bool? SuppportsBatching => (bool?)ManagementObject[nameof(SuppportsBatching)]; + /// + /// One or more queries that describe the set of classes that the class provider does not support. Use this property to subtract from the set of classes implied by ResultSetQueries. + /// + public string[]? UnsupportedQueries => (string[])ManagementObject[nameof(UnsupportedQueries)]; + /// + /// Version of this class provider. + /// + public uint? Version => (uint?)ManagementObject[nameof(Version)]; +} diff --git a/Types/Base/_ConsumerFailureEvent.g.cs b/Types/Base/_ConsumerFailureEvent.g.cs new file mode 100644 index 0000000..c33bf0b --- /dev/null +++ b/Types/Base/_ConsumerFailureEvent.g.cs @@ -0,0 +1,24 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ConsumerFailureEvent(ManagementObject ManagementObject) : _EventDroppedEvent(ManagementObject) +{ + /// + /// Error code returned by the consumer. + /// + public uint? ErrorCode => (uint?)ManagementObject[nameof(ErrorCode)]; + /// + /// Extended error code description, if available. + /// + public string? ErrorDescription => (string)ManagementObject[nameof(ErrorDescription)]; + /// + /// Object in error. + /// + public object? ErrorObject => (object)ManagementObject[nameof(ErrorObject)]; +} diff --git a/Types/Base/_Event.g.cs b/Types/Base/_Event.g.cs index 36b8bc5..512a0b4 100644 --- a/Types/Base/_Event.g.cs +++ b/Types/Base/_Event.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; -#nullable enable public partial record class _Event(ManagementObject ManagementObject) : _IndicationRelated(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class _Event(ManagementObject ManagementObject) : _Indicat /// public ulong? TIME_CREATED => (ulong?)ManagementObject[nameof(TIME_CREATED)]; } -#nullable disable diff --git a/Types/Base/_EventConsumer.g.cs b/Types/Base/_EventConsumer.g.cs new file mode 100644 index 0000000..236b32e --- /dev/null +++ b/Types/Base/_EventConsumer.g.cs @@ -0,0 +1,24 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventConsumer(ManagementObject ManagementObject) : _IndicationRelated(ManagementObject) +{ + /// + /// Security identifier (SID) that uniquely identifies the user who creates a filter. WMI stores the SID of the user who creates an instance of __EventConsumer or the Administrator SID, depending on the operating system. For more information, see Binding an Event Filter with a Logical Consumer and Monitoring and Responding to Events with Standard Consumers. + /// + public byte[]? CreatorSID => (byte[])ManagementObject[nameof(CreatorSID)]; + /// + /// Name of the computer to which Windows Management Instrumentation (WMI) sends events. + /// + public string? MachineName => (string)ManagementObject[nameof(MachineName)]; + /// + /// Maximum queue for a specific consumer, in bytes. + /// + public uint? MaximumQueueSize => (uint?)ManagementObject[nameof(MaximumQueueSize)]; +} diff --git a/Types/Base/_EventConsumerProviderCacheControl.g.cs b/Types/Base/_EventConsumerProviderCacheControl.g.cs new file mode 100644 index 0000000..d800366 --- /dev/null +++ b/Types/Base/_EventConsumerProviderCacheControl.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventConsumerProviderCacheControl(ManagementObject ManagementObject) : _CacheControl(ManagementObject) +{ + /// + /// Time interval after which WMI releases an event consumer provider. It may take up to twice the interval specified to unload the provider. The time is in interval format. + /// + public DateTimeOffset? ClearAfter => ManagementObject.GetDateTimePropertyValue(nameof(ClearAfter)); +} diff --git a/Types/Base/_EventConsumerProviderRegistration.g.cs b/Types/Base/_EventConsumerProviderRegistration.g.cs new file mode 100644 index 0000000..97d582b --- /dev/null +++ b/Types/Base/_EventConsumerProviderRegistration.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventConsumerProviderRegistration(ManagementObject ManagementObject) : _ProviderRegistration(ManagementObject) +{ + /// + /// Array of names of the logical consumer classes that the event consumer provider supports. + /// + public string[]? ConsumerClassNames => (string[])ManagementObject[nameof(ConsumerClassNames)]; +} diff --git a/Types/Base/_EventDroppedEvent.g.cs b/Types/Base/_EventDroppedEvent.g.cs new file mode 100644 index 0000000..3133202 --- /dev/null +++ b/Types/Base/_EventDroppedEvent.g.cs @@ -0,0 +1,20 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventDroppedEvent(ManagementObject ManagementObject) : _SystemEvent(ManagementObject) +{ + /// + /// Event that is dropped. + /// + public _Event? Event => (_Event)ManagementObject[nameof(Event)]; + /// + /// Reference to an instance of __EventConsumer that represents the permanent consumer you identify to receive an event. Different permanent consumers that subscribe to an event can continue to receive the event. + /// + public _EventConsumer? IntendedConsumer => (_EventConsumer)ManagementObject[nameof(IntendedConsumer)]; +} diff --git a/Types/Base/_EventFilter.g.cs b/Types/Base/_EventFilter.g.cs new file mode 100644 index 0000000..b6b1a0c --- /dev/null +++ b/Types/Base/_EventFilter.g.cs @@ -0,0 +1,32 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventFilter(ManagementObject ManagementObject) : _IndicationRelated(ManagementObject) +{ + /// + /// You can configure an event access security descriptor to allow an event to be delivered only when the local system account generates the event. For more information about creating security descriptor and authorizing access, see Access Control. + /// + public string? EventAccess => (string)ManagementObject[nameof(EventAccess)]; + /// + /// Namespace of the event instance used for cross-namespace subscriptions. + /// + public string? EventNamespace => (string)ManagementObject[nameof(EventNamespace)]; + /// + /// Unique identifier of an event filter. Because an event filter is only used internally by WMI, it is recommended that you set this property to a globally unique identifier (GUID) converted to a string. However, consumers can use any private scheme for a filter name as long as there is not a conflict with other filters. + /// + public string? Name => (string)ManagementObject[nameof(Name)]; + /// + /// Windows Management Instrumentation Query Language (WQL) event query that specifies the set of events for consumer notification, and the specific conditions for notification. + /// + public string? Query => (string)ManagementObject[nameof(Query)]; + /// + /// Language used for the query. Because WMI currently supports only WMI Query Language (WQL) as a query language, this property must be set to "WQL". + /// + public string? QueryLanguage => (string)ManagementObject[nameof(QueryLanguage)]; +} diff --git a/Types/Base/_EventGenerator.g.cs b/Types/Base/_EventGenerator.g.cs new file mode 100644 index 0000000..48fd155 --- /dev/null +++ b/Types/Base/_EventGenerator.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventGenerator(ManagementObject ManagementObject) : _IndicationRelated(ManagementObject) +{ +} diff --git a/Types/Base/_EventProviderCacheControl.g.cs b/Types/Base/_EventProviderCacheControl.g.cs new file mode 100644 index 0000000..beea4d4 --- /dev/null +++ b/Types/Base/_EventProviderCacheControl.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventProviderCacheControl(ManagementObject ManagementObject) : _CacheControl(ManagementObject) +{ + /// + /// Time interval after Windows Management Instrumentation (WMI) releases an event provider. The time is in interval format. It may take up to twice the interval specified to unload the provider. + /// + public DateTimeOffset? ClearAfter => ManagementObject.GetDateTimePropertyValue(nameof(ClearAfter)); +} diff --git a/Types/Base/_EventProviderRegistration.g.cs b/Types/Base/_EventProviderRegistration.g.cs new file mode 100644 index 0000000..00259ba --- /dev/null +++ b/Types/Base/_EventProviderRegistration.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventProviderRegistration(ManagementObject ManagementObject) : _ProviderRegistration(ManagementObject) +{ + /// + /// One or more Windows Management Instrumentation Query Language (WQL) queries that describe the events that the event provider supports. + /// + public string[]? EventQueryList => (string[])ManagementObject[nameof(EventQueryList)]; +} diff --git a/Types/Base/_EventQueueOverflowEvent.g.cs b/Types/Base/_EventQueueOverflowEvent.g.cs new file mode 100644 index 0000000..9a4993e --- /dev/null +++ b/Types/Base/_EventQueueOverflowEvent.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventQueueOverflowEvent(ManagementObject ManagementObject) : _EventDroppedEvent(ManagementObject) +{ + /// + /// Current queue size, in bytes. This property defaults to 10 MB for all queues combined. + /// + public uint? CurrentQueueSize => (uint?)ManagementObject[nameof(CurrentQueueSize)]; +} diff --git a/Types/Base/_EventSinkCacheControl.g.cs b/Types/Base/_EventSinkCacheControl.g.cs new file mode 100644 index 0000000..e5f45a7 --- /dev/null +++ b/Types/Base/_EventSinkCacheControl.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _EventSinkCacheControl(ManagementObject ManagementObject) : _CacheControl(ManagementObject) +{ + /// + /// Time interval after which WMI releases an event provider. It can take up to twice the interval specified to unload the provider. The time is in interval format. + /// + public DateTimeOffset? ClearAfter => ManagementObject.GetDateTimePropertyValue(nameof(ClearAfter)); +} diff --git a/Types/Base/_ExtendedStatus.g.cs b/Types/Base/_ExtendedStatus.g.cs index 2a2d6fa..ea2217e 100644 --- a/Types/Base/_ExtendedStatus.g.cs +++ b/Types/Base/_ExtendedStatus.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; -#nullable enable public partial record class _ExtendedStatus(ManagementObject ManagementObject) : _NotifyStatus(ManagementObject) { /// @@ -24,4 +23,3 @@ public partial record class _ExtendedStatus(ManagementObject ManagementObject) : /// public string? ProviderName => (string)ManagementObject[nameof(ProviderName)]; } -#nullable disable diff --git a/Types/Base/_ExtrinsicEvent.g.cs b/Types/Base/_ExtrinsicEvent.g.cs index adeb829..95550c2 100644 --- a/Types/Base/_ExtrinsicEvent.g.cs +++ b/Types/Base/_ExtrinsicEvent.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; diff --git a/Types/Base/_FilterToConsumerBinding.g.cs b/Types/Base/_FilterToConsumerBinding.g.cs new file mode 100644 index 0000000..0cf2c84 --- /dev/null +++ b/Types/Base/_FilterToConsumerBinding.g.cs @@ -0,0 +1,40 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _FilterToConsumerBinding(ManagementObject ManagementObject) : _IndicationRelated(ManagementObject) +{ + /// + /// Reference to an instance of __EventConsumer that represents the object path to a logical consumer, the recipient of an event. A logical consumer is an instance of a class derived from __EventConsumer. + /// + public _EventConsumer? Consumer => (_EventConsumer)ManagementObject[nameof(Consumer)]; + /// + /// Security identifier (SID) that uniquely identifies the user who created the binding. Depending on the operating system, WMI stores the Administrator SID or the SID of the user that creates an instance of __FilterToConsumerBinding. For more information, see Binding an Event Filter with a Logical Consumer and Monitoring and Responding to Events with Standard Consumers. + /// + public byte[]? CreatorSID => (byte[])ManagementObject[nameof(CreatorSID)]; + /// + /// Obsolete. Instead use the DeliveryQoS property in place of this property, because if DeliverSynchronously is set to True it overrides the setting of the DeliveryQoS property. + /// + public bool? DeliverSynchronously => (bool?)ManagementObject[nameof(DeliverSynchronously)]; + /// + /// Quality of service for a subscription. If the DeliverSynchronously property is set to True, it overrides the setting of the DeliveryQoS property. + /// + public uint? DeliveryQoS => (uint?)ManagementObject[nameof(DeliveryQoS)]; + /// + /// Reference to an instance of __EventFilter that represents the object path to an event filter which is a query that specifies the type of event to be received. + /// + public _EventFilter? Filter => (_EventFilter)ManagementObject[nameof(Filter)]; + /// + /// If True, the events are delivered in the same security context that the provider was in when it provided them. + /// + public bool? MaintainSecurityContext => (bool?)ManagementObject[nameof(MaintainSecurityContext)]; + /// + /// If True, providers are slowed down if this consumer cannot keep up. + /// + public bool? SlowDownProviders => (bool?)ManagementObject[nameof(SlowDownProviders)]; +} diff --git a/Types/Base/_IndicationRelated.g.cs b/Types/Base/_IndicationRelated.g.cs index a1e9154..0a6c29a 100644 --- a/Types/Base/_IndicationRelated.g.cs +++ b/Types/Base/_IndicationRelated.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; diff --git a/Types/Base/_InstanceCreationEvent.g.cs b/Types/Base/_InstanceCreationEvent.g.cs new file mode 100644 index 0000000..7278fc5 --- /dev/null +++ b/Types/Base/_InstanceCreationEvent.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _InstanceCreationEvent(ManagementObject ManagementObject) : _InstanceOperationEvent(ManagementObject) +{ +} diff --git a/Types/Base/_InstanceDeletionEvent.g.cs b/Types/Base/_InstanceDeletionEvent.g.cs new file mode 100644 index 0000000..31f994f --- /dev/null +++ b/Types/Base/_InstanceDeletionEvent.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _InstanceDeletionEvent(ManagementObject ManagementObject) : _InstanceOperationEvent(ManagementObject) +{ +} diff --git a/Types/Base/_InstanceModificationEvent.g.cs b/Types/Base/_InstanceModificationEvent.g.cs new file mode 100644 index 0000000..14a75ed --- /dev/null +++ b/Types/Base/_InstanceModificationEvent.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _InstanceModificationEvent(ManagementObject ManagementObject) : _InstanceOperationEvent(ManagementObject) +{ + /// + /// Copy of the instance prior to modification. + /// + public object? PreviousInstance => (object)ManagementObject[nameof(PreviousInstance)]; +} diff --git a/Types/Base/_InstanceOperationEvent.g.cs b/Types/Base/_InstanceOperationEvent.g.cs new file mode 100644 index 0000000..44b948f --- /dev/null +++ b/Types/Base/_InstanceOperationEvent.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _InstanceOperationEvent(ManagementObject ManagementObject) : _Event(ManagementObject) +{ + /// + /// Instance affected by the event. For creation events, this is the newly created instance. For modification events, this is the new version of the changed instance. For deletion events, this is the deleted instance. + /// + public object? TargetInstance => (object)ManagementObject[nameof(TargetInstance)]; +} diff --git a/Types/Base/_InstanceProviderRegistration.g.cs b/Types/Base/_InstanceProviderRegistration.g.cs new file mode 100644 index 0000000..08a6bd4 --- /dev/null +++ b/Types/Base/_InstanceProviderRegistration.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _InstanceProviderRegistration(ManagementObject ManagementObject) : _ObjectProviderRegistration(ManagementObject) +{ + /// + /// Indicates that a class or instance provider supplies data, or retrieves data from WMI and the Common Information Model (CIM) repository. Pull providers support dynamic access to their data; and push providers store their data in the CIM repository, and use WMI to provide access to it. For more information, see Determining Push or Pull Status. The default value is 0 (zero). + /// + public new int? InteractionType => (int?)ManagementObject[nameof(InteractionType)]; +} diff --git a/Types/Base/_IntervalTimerInstruction.g.cs b/Types/Base/_IntervalTimerInstruction.g.cs new file mode 100644 index 0000000..744202d --- /dev/null +++ b/Types/Base/_IntervalTimerInstruction.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _IntervalTimerInstruction(ManagementObject ManagementObject) : _TimerInstruction(ManagementObject) +{ + /// + /// Number of milliseconds between event firings. + /// + public uint? IntervalBetweenEvents => (uint?)ManagementObject[nameof(IntervalBetweenEvents)]; +} diff --git a/Types/Base/_MethodInvocationEvent.g.cs b/Types/Base/_MethodInvocationEvent.g.cs new file mode 100644 index 0000000..6552794 --- /dev/null +++ b/Types/Base/_MethodInvocationEvent.g.cs @@ -0,0 +1,24 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _MethodInvocationEvent(ManagementObject ManagementObject) : _InstanceOperationEvent(ManagementObject) +{ + /// + /// Method invoked to trigger the event. + /// + public string? Method => (string)ManagementObject[nameof(Method)]; + /// + /// Reference to an instance that represents the input and output parameters of the method call. + /// + public _PARAMETERS? Parameters => (_PARAMETERS)ManagementObject[nameof(Parameters)]; + /// + /// If TRUE, the event is raised before the method is called. + /// + public bool? PreCall => (bool?)ManagementObject[nameof(PreCall)]; +} diff --git a/Types/Base/_MethodProviderRegistration.g.cs b/Types/Base/_MethodProviderRegistration.g.cs new file mode 100644 index 0000000..562e91b --- /dev/null +++ b/Types/Base/_MethodProviderRegistration.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _MethodProviderRegistration(ManagementObject ManagementObject) : _ProviderRegistration(ManagementObject) +{ +} diff --git a/Types/Base/_NTLMUser9X.g.cs b/Types/Base/_NTLMUser9X.g.cs new file mode 100644 index 0000000..9d63950 --- /dev/null +++ b/Types/Base/_NTLMUser9X.g.cs @@ -0,0 +1,32 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _NTLMUser9X(ManagementObject ManagementObject) : _SecurityRelatedClass(ManagementObject) +{ + /// + /// Domain to which a user name applies. + /// + public string? Authority => (string)ManagementObject[nameof(Authority)]; + /// + /// Inheritance flags. + /// + public int? Flags => (int?)ManagementObject[nameof(Flags)]; + /// + /// Bitmask that specifies access rights to the namespace in the Windows Management Instrumentation (WMI) repository. For bit values, see Namespace Access Rights Constants. + /// + public int? Mask => (int?)ManagementObject[nameof(Mask)]; + /// + /// User name. + /// + public string? Name => (string)ManagementObject[nameof(Name)]; + /// + /// Access allowed. + /// + public int? Type => (int?)ManagementObject[nameof(Type)]; +} diff --git a/Types/Base/_Namespace.g.cs b/Types/Base/_Namespace.g.cs new file mode 100644 index 0000000..072313a --- /dev/null +++ b/Types/Base/_Namespace.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _Namespace(ManagementObject ManagementObject) : _SystemClass(ManagementObject) +{ + /// + /// Namespace name. + /// + public string? Name => (string)ManagementObject[nameof(Name)]; +} diff --git a/Types/Base/_NamespaceCreationEvent.g.cs b/Types/Base/_NamespaceCreationEvent.g.cs new file mode 100644 index 0000000..b67c8f8 --- /dev/null +++ b/Types/Base/_NamespaceCreationEvent.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _NamespaceCreationEvent(ManagementObject ManagementObject) : _NamespaceOperationEvent(ManagementObject) +{ +} diff --git a/Types/Base/_NamespaceDeletionEvent.g.cs b/Types/Base/_NamespaceDeletionEvent.g.cs new file mode 100644 index 0000000..e14e755 --- /dev/null +++ b/Types/Base/_NamespaceDeletionEvent.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _NamespaceDeletionEvent(ManagementObject ManagementObject) : _NamespaceOperationEvent(ManagementObject) +{ +} diff --git a/Types/Base/_NamespaceModificationEvent.g.cs b/Types/Base/_NamespaceModificationEvent.g.cs new file mode 100644 index 0000000..714b6fb --- /dev/null +++ b/Types/Base/_NamespaceModificationEvent.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _NamespaceModificationEvent(ManagementObject ManagementObject) : _NamespaceOperationEvent(ManagementObject) +{ + /// + /// Copy of the original version of a __Namespace instance. The Name property of this instance identifies the namespace that is modified. + /// + public _Namespace? PreviousNamespace => (_Namespace)ManagementObject[nameof(PreviousNamespace)]; +} diff --git a/Types/Base/_NamespaceOperationEvent.g.cs b/Types/Base/_NamespaceOperationEvent.g.cs new file mode 100644 index 0000000..d2fae53 --- /dev/null +++ b/Types/Base/_NamespaceOperationEvent.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _NamespaceOperationEvent(ManagementObject ManagementObject) : _Event(ManagementObject) +{ + /// + /// Namespace affected by the event. For creation events, this is the newly created namespace. For modification events, this is the changed namespace. For deletion events, this is the deleted namespace. + /// + public _Namespace? TargetNamespace => (_Namespace)ManagementObject[nameof(TargetNamespace)]; +} diff --git a/Types/Base/_NotifyStatus.g.cs b/Types/Base/_NotifyStatus.g.cs index fabfa1a..6b701a3 100644 --- a/Types/Base/_NotifyStatus.g.cs +++ b/Types/Base/_NotifyStatus.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; diff --git a/Types/Base/_ObjectProviderCacheControl.g.cs b/Types/Base/_ObjectProviderCacheControl.g.cs new file mode 100644 index 0000000..78cfdc1 --- /dev/null +++ b/Types/Base/_ObjectProviderCacheControl.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ObjectProviderCacheControl(ManagementObject ManagementObject) : _CacheControl(ManagementObject) +{ + /// + /// Time interval after which WMI releases an instance, class, or method provider. The time is in interval format. + /// + public DateTimeOffset? ClearAfter => ManagementObject.GetDateTimePropertyValue(nameof(ClearAfter)); +} diff --git a/Types/Base/_ObjectProviderRegistration.g.cs b/Types/Base/_ObjectProviderRegistration.g.cs new file mode 100644 index 0000000..0fc514f --- /dev/null +++ b/Types/Base/_ObjectProviderRegistration.g.cs @@ -0,0 +1,41 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ObjectProviderRegistration(ManagementObject ManagementObject) : _ProviderRegistration(ManagementObject) +{ + /// + /// Indicates whether or not the class or instance provider supplies its own data, or relies on WMI and the Common Information Model (CIM) repository. Pull providers support dynamic access to their data, and push providers store their data in the CIM repository, and rely on WMI to provide access to it. For more information, see Determining Push or Pull Status. The default value is 0 (zero). + /// + public int? InteractionType => (int?)ManagementObject[nameof(InteractionType)]; + public string[]? QuerySupportLevels => (string[])ManagementObject[nameof(QuerySupportLevels)]; + /// + /// Not used. + /// + public bool? SupportsBatching => (bool?)ManagementObject[nameof(SupportsBatching)]; + /// + /// If True, the provider supports data deletion. + /// + public bool? SupportsDelete => (bool?)ManagementObject[nameof(SupportsDelete)]; + /// + /// If True, the provider supports data enumeration. + /// + public bool? SupportsEnumeration => (bool?)ManagementObject[nameof(SupportsEnumeration)]; + /// + /// If True, the class or instance provider supports data retrieval. + /// + public bool? SupportsGet => (bool?)ManagementObject[nameof(SupportsGet)]; + /// + /// If True, the class or instance provider supports data modification. + /// + public bool? SupportsPut => (bool?)ManagementObject[nameof(SupportsPut)]; + /// + /// Not used. + /// + public bool? SupportsTransactions => (bool?)ManagementObject[nameof(SupportsTransactions)]; +} diff --git a/Types/Base/_PARAMETERS.g.cs b/Types/Base/_PARAMETERS.g.cs new file mode 100644 index 0000000..1de9e9f --- /dev/null +++ b/Types/Base/_PARAMETERS.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _PARAMETERS(ManagementObject ManagementObject) : _Object(ManagementObject) +{ +} diff --git a/Types/Base/_PropertyProviderCacheControl.g.cs b/Types/Base/_PropertyProviderCacheControl.g.cs new file mode 100644 index 0000000..1e0cdb7 --- /dev/null +++ b/Types/Base/_PropertyProviderCacheControl.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _PropertyProviderCacheControl(ManagementObject ManagementObject) : _Object(ManagementObject) +{ + /// + /// Time interval after WMI releases a property provider. The time is in the interval format. + /// + public DateTimeOffset? ClearAfter => ManagementObject.GetDateTimePropertyValue(nameof(ClearAfter)); +} diff --git a/Types/Base/_PropertyProviderRegistration.g.cs b/Types/Base/_PropertyProviderRegistration.g.cs new file mode 100644 index 0000000..e5071cd --- /dev/null +++ b/Types/Base/_PropertyProviderRegistration.g.cs @@ -0,0 +1,20 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _PropertyProviderRegistration(ManagementObject ManagementObject) : _ProviderRegistration(ManagementObject) +{ + /// + /// Describes whether the class or instance provider supports data modification. + /// + public bool? SupportsPut => (bool?)ManagementObject[nameof(SupportsPut)]; + /// + /// Describes whether the class or instance provider supports data retrieval. + /// + public bool? SupportsGet => (bool?)ManagementObject[nameof(SupportsGet)]; +} diff --git a/Types/Base/_Provider.g.cs b/Types/Base/_Provider.g.cs index eb791e9..06ec504 100644 --- a/Types/Base/_Provider.g.cs +++ b/Types/Base/_Provider.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; -#nullable enable public partial record class _Provider(ManagementObject ManagementObject) : _SystemClass(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class _Provider(ManagementObject ManagementObject) : _Syst /// public string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Base/_ProviderHostQuotaConfiguration.g.cs b/Types/Base/_ProviderHostQuotaConfiguration.g.cs new file mode 100644 index 0000000..f41a547 --- /dev/null +++ b/Types/Base/_ProviderHostQuotaConfiguration.g.cs @@ -0,0 +1,32 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ProviderHostQuotaConfiguration(ManagementObject ManagementObject) : _SystemClass(ManagementObject) +{ + /// + /// Number of threads owned by any one host. + /// + public uint? ThreadsPerHost => (uint?)ManagementObject[nameof(ThreadsPerHost)]; + /// + /// Number of kernel object handles each host can have. + /// + public uint? HandlesPerHost => (uint?)ManagementObject[nameof(HandlesPerHost)]; + /// + /// Total number of host processes that can be executing concurrently. + /// + public uint? ProcessLimitAllHosts => (uint?)ManagementObject[nameof(ProcessLimitAllHosts)]; + /// + /// Amount of private memory that can be held by each host. + /// + public ulong? MemoryPerHost => (ulong?)ManagementObject[nameof(MemoryPerHost)]; + /// + /// Combined amount of private memory in bytes that can be held by all hosts. + /// + public ulong? MemoryAllHosts => (ulong?)ManagementObject[nameof(MemoryAllHosts)]; +} diff --git a/Types/Base/_ProviderRegistration.g.cs b/Types/Base/_ProviderRegistration.g.cs new file mode 100644 index 0000000..648d5df --- /dev/null +++ b/Types/Base/_ProviderRegistration.g.cs @@ -0,0 +1,16 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _ProviderRegistration(ManagementObject ManagementObject) : _SystemClass(ManagementObject) +{ + /// + /// Reference to an instance of __Provider representing the object path to the provider. + /// + public _Provider? provider => (_Provider)ManagementObject[nameof(provider)]; +} diff --git a/Types/Base/_SecurityDescriptor.g.cs b/Types/Base/_SecurityDescriptor.g.cs index f203593..0bd0b87 100644 --- a/Types/Base/_SecurityDescriptor.g.cs +++ b/Types/Base/_SecurityDescriptor.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; -#nullable enable public partial record class _SecurityDescriptor(ManagementObject ManagementObject) : _Object(ManagementObject) { /// @@ -35,4 +34,3 @@ public partial record class _SecurityDescriptor(ManagementObject ManagementObjec /// public ulong? TIME_CREATED => (ulong?)ManagementObject[nameof(TIME_CREATED)]; } -#nullable disable diff --git a/Types/Base/_SecurityRelatedClass.g.cs b/Types/Base/_SecurityRelatedClass.g.cs index 49d1e2d..b08d114 100644 --- a/Types/Base/_SecurityRelatedClass.g.cs +++ b/Types/Base/_SecurityRelatedClass.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; diff --git a/Types/Base/_SystemClass.g.cs b/Types/Base/_SystemClass.g.cs index cc4bdf5..0e42e44 100644 --- a/Types/Base/_SystemClass.g.cs +++ b/Types/Base/_SystemClass.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; diff --git a/Types/Base/_SystemEvent.g.cs b/Types/Base/_SystemEvent.g.cs new file mode 100644 index 0000000..6bf5837 --- /dev/null +++ b/Types/Base/_SystemEvent.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _SystemEvent(ManagementObject ManagementObject) : _ExtrinsicEvent(ManagementObject) +{ +} diff --git a/Types/Base/_SystemSecurity.g.cs b/Types/Base/_SystemSecurity.g.cs new file mode 100644 index 0000000..9edd18f --- /dev/null +++ b/Types/Base/_SystemSecurity.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _SystemSecurity(ManagementObject ManagementObject) : _Object(ManagementObject) +{ +} diff --git a/Types/Base/_TimerEvent.g.cs b/Types/Base/_TimerEvent.g.cs new file mode 100644 index 0000000..6ffe137 --- /dev/null +++ b/Types/Base/_TimerEvent.g.cs @@ -0,0 +1,20 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _TimerEvent(ManagementObject ManagementObject) : _Event(ManagementObject) +{ + /// + /// Number of times the event occurred before a notification was delivered to the consumer. + /// + public uint? NumFirings => (uint?)ManagementObject[nameof(NumFirings)]; + /// + /// Instance of the __TimerInstruction subclass that caused WMI to fire this event. Consumers specify a timer identification in the TimerId property of the __TimerInstruction subclass that they create to register. + /// + public string? TimerId => (string)ManagementObject[nameof(TimerId)]; +} diff --git a/Types/Base/_TimerInstruction.g.cs b/Types/Base/_TimerInstruction.g.cs new file mode 100644 index 0000000..4cafc8b --- /dev/null +++ b/Types/Base/_TimerInstruction.g.cs @@ -0,0 +1,20 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _TimerInstruction(ManagementObject ManagementObject) : _EventGenerator(ManagementObject) +{ + /// + /// Describes whether a notification event will be generated and receive when a consumer becomes available. + /// + public bool? SkipIfPassed => (bool?)ManagementObject[nameof(SkipIfPassed)]; + /// + /// Unique user-assigned string that identifies this particular timer event. To avoid naming conflicts with other timer identifiers, the string form of a distributed computer environment (DCE)-style GUID can be used. This property is part of the __TimerEvent instance that represents the event. + /// + public string? TimerId => (string)ManagementObject[nameof(TimerId)]; +} diff --git a/Types/Base/_TimerNextFiring.g.cs b/Types/Base/_TimerNextFiring.g.cs new file mode 100644 index 0000000..27897e9 --- /dev/null +++ b/Types/Base/_TimerNextFiring.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _TimerNextFiring(ManagementObject ManagementObject) : _Object(ManagementObject) +{ +} diff --git a/Types/Base/_Trustee.g.cs b/Types/Base/_Trustee.g.cs index 3161f61..a78fcfd 100644 --- a/Types/Base/_Trustee.g.cs +++ b/Types/Base/_Trustee.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; -#nullable enable public partial record class _Trustee(ManagementObject ManagementObject) : _Object(ManagementObject) { /// @@ -35,4 +34,3 @@ public partial record class _Trustee(ManagementObject ManagementObject) : _Objec /// public ulong? TIME_CREATED => (ulong?)ManagementObject[nameof(TIME_CREATED)]; } -#nullable disable diff --git a/Types/Base/_Win32Provider.g.cs b/Types/Base/_Win32Provider.g.cs index aace07a..c07cff6 100644 --- a/Types/Base/_Win32Provider.g.cs +++ b/Types/Base/_Win32Provider.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Base; -#nullable enable public partial record class _Win32Provider(ManagementObject ManagementObject) : _Provider(ManagementObject) { /// @@ -104,4 +103,3 @@ public partial record class _Win32Provider(ManagementObject ManagementObject) : /// public uint? Version => (uint?)ManagementObject[nameof(Version)]; } -#nullable disable diff --git a/Types/Base/_thisNAMESPACE.g.cs b/Types/Base/_thisNAMESPACE.g.cs new file mode 100644 index 0000000..bbcdcbb --- /dev/null +++ b/Types/Base/_thisNAMESPACE.g.cs @@ -0,0 +1,12 @@ +/************************************************************** + * * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * + * * + **************************************************************/ +namespace System.Management.Types.Base; + +public partial record class _thisNAMESPACE(ManagementObject ManagementObject) : _SystemClass(ManagementObject) +{ +} diff --git a/Types/CIM/AllocatedResource.g.cs b/Types/CIM/AllocatedResource.g.cs index 6402273..7b43888 100644 --- a/Types/CIM/AllocatedResource.g.cs +++ b/Types/CIM/AllocatedResource.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class AllocatedResource(ManagementObject ManagementObject) : Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class AllocatedResource(ManagementObject ManagementObject) /// public new SystemResource? Antecedent => (SystemResource)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/CIM/AssociatedMemory.g.cs b/Types/CIM/AssociatedMemory.g.cs index 4bc9382..e8f204d 100644 --- a/Types/CIM/AssociatedMemory.g.cs +++ b/Types/CIM/AssociatedMemory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class AssociatedMemory(ManagementObject ManagementObject) : Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class AssociatedMemory(ManagementObject ManagementObject) /// public new Memory? Antecedent => (Memory)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/CIM/AssociatedProcessorMemory.g.cs b/Types/CIM/AssociatedProcessorMemory.g.cs index 7e5633e..3e0ed34 100644 --- a/Types/CIM/AssociatedProcessorMemory.g.cs +++ b/Types/CIM/AssociatedProcessorMemory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class AssociatedProcessorMemory(ManagementObject ManagementObject) : AssociatedMemory(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class AssociatedProcessorMemory(ManagementObject Managemen /// public uint? BusSpeed => (uint?)ManagementObject[nameof(BusSpeed)]; } -#nullable disable diff --git a/Types/CIM/BIOSElement.g.cs b/Types/CIM/BIOSElement.g.cs index b212bde..b57f9be 100644 --- a/Types/CIM/BIOSElement.g.cs +++ b/Types/CIM/BIOSElement.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class BIOSElement(ManagementObject ManagementObject) : SoftwareElement(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class BIOSElement(ManagementObject ManagementObject) : Sof /// public bool? PrimaryBIOS => (bool?)ManagementObject[nameof(PrimaryBIOS)]; } -#nullable disable diff --git a/Types/CIM/BasedOn.g.cs b/Types/CIM/BasedOn.g.cs index ac63214..5d0e210 100644 --- a/Types/CIM/BasedOn.g.cs +++ b/Types/CIM/BasedOn.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class BasedOn(ManagementObject ManagementObject) : Dependency(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class BasedOn(ManagementObject ManagementObject) : Depende /// public ulong? StartingAddress => (ulong?)ManagementObject[nameof(StartingAddress)]; } -#nullable disable diff --git a/Types/CIM/Battery.g.cs b/Types/CIM/Battery.g.cs index 2cb0116..f3c9a40 100644 --- a/Types/CIM/Battery.g.cs +++ b/Types/CIM/Battery.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Battery(ManagementObject ManagementObject) : LogicalDevice(ManagementObject) { /// @@ -59,4 +58,3 @@ public partial record class Battery(ManagementObject ManagementObject) : Logical /// public uint? TimeToFullCharge => (uint?)ManagementObject[nameof(TimeToFullCharge)]; } -#nullable disable diff --git a/Types/CIM/CDROMDrive.g.cs b/Types/CIM/CDROMDrive.g.cs index 317e5ea..aef4d92 100644 --- a/Types/CIM/CDROMDrive.g.cs +++ b/Types/CIM/CDROMDrive.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/CacheMemory.g.cs b/Types/CIM/CacheMemory.g.cs index 126040a..6aa4ebc 100644 --- a/Types/CIM/CacheMemory.g.cs +++ b/Types/CIM/CacheMemory.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/Card.g.cs b/Types/CIM/Card.g.cs index 4765758..4f0fab0 100644 --- a/Types/CIM/Card.g.cs +++ b/Types/CIM/Card.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Card(ManagementObject ManagementObject) : PhysicalPackage(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class Card(ManagementObject ManagementObject) : PhysicalPa /// public bool? SpecialRequirements => (bool?)ManagementObject[nameof(SpecialRequirements)]; } -#nullable disable diff --git a/Types/CIM/Chassis.g.cs b/Types/CIM/Chassis.g.cs index a564020..388e609 100644 --- a/Types/CIM/Chassis.g.cs +++ b/Types/CIM/Chassis.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Chassis(ManagementObject ManagementObject) : PhysicalFrame(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class Chassis(ManagementObject ManagementObject) : Physica /// public string[]? TypeDescriptions => (string[])ManagementObject[nameof(TypeDescriptions)]; } -#nullable disable diff --git a/Types/CIM/Chip.g.cs b/Types/CIM/Chip.g.cs index eada5fb..08050a0 100644 --- a/Types/CIM/Chip.g.cs +++ b/Types/CIM/Chip.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/Component.g.cs b/Types/CIM/Component.g.cs index dfbe9f2..56f08bf 100644 --- a/Types/CIM/Component.g.cs +++ b/Types/CIM/Component.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Component(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class Component(ManagementObject ManagementObject) : Base. /// public ManagedSystemElement? PartComponent => (ManagedSystemElement)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/CIM/ComputerSystem.g.cs b/Types/CIM/ComputerSystem.g.cs index d32db05..1167ef0 100644 --- a/Types/CIM/ComputerSystem.g.cs +++ b/Types/CIM/ComputerSystem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class ComputerSystem(ManagementObject ManagementObject) : System(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class ComputerSystem(ManagementObject ManagementObject) : /// public new string? NameFormat => (string)ManagementObject[nameof(NameFormat)]; } -#nullable disable diff --git a/Types/CIM/ComputerSystemResource.g.cs b/Types/CIM/ComputerSystemResource.g.cs index c0d8a04..0eaf375 100644 --- a/Types/CIM/ComputerSystemResource.g.cs +++ b/Types/CIM/ComputerSystemResource.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class ComputerSystemResource(ManagementObject ManagementObject) : SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ComputerSystemResource(ManagementObject ManagementOb /// public new ComputerSystem? GroupComponent => (ComputerSystem)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/CIM/Container.g.cs b/Types/CIM/Container.g.cs index 5e3b65e..107e17c 100644 --- a/Types/CIM/Container.g.cs +++ b/Types/CIM/Container.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Container(ManagementObject ManagementObject) : Component(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class Container(ManagementObject ManagementObject) : Compo /// public string? LocationWithinContainer => (string)ManagementObject[nameof(LocationWithinContainer)]; } -#nullable disable diff --git a/Types/CIM/ControlledBy.g.cs b/Types/CIM/ControlledBy.g.cs index 4f3c11c..a2684f0 100644 --- a/Types/CIM/ControlledBy.g.cs +++ b/Types/CIM/ControlledBy.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class ControlledBy(ManagementObject ManagementObject) : DeviceConnection(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class ControlledBy(ManagementObject ManagementObject) : De /// public uint? NumberOfSoftResets => (uint?)ManagementObject[nameof(NumberOfSoftResets)]; } -#nullable disable diff --git a/Types/CIM/Controller.g.cs b/Types/CIM/Controller.g.cs index ed82d4e..270541c 100644 --- a/Types/CIM/Controller.g.cs +++ b/Types/CIM/Controller.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/CoolingDevice.g.cs b/Types/CIM/CoolingDevice.g.cs index 63fe3d0..b79243f 100644 --- a/Types/CIM/CoolingDevice.g.cs +++ b/Types/CIM/CoolingDevice.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/CurrentSensor.g.cs b/Types/CIM/CurrentSensor.g.cs index ced1273..bf53d60 100644 --- a/Types/CIM/CurrentSensor.g.cs +++ b/Types/CIM/CurrentSensor.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/DMA.g.cs b/Types/CIM/DMA.g.cs index ca9d134..92766cd 100644 --- a/Types/CIM/DMA.g.cs +++ b/Types/CIM/DMA.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class DMA(ManagementObject ManagementObject) : SystemResource(ManagementObject) { /// @@ -63,4 +62,3 @@ public partial record class DMA(ManagementObject ManagementObject) : SystemResou /// public ushort? WordMode => (ushort?)ManagementObject[nameof(WordMode)]; } -#nullable disable diff --git a/Types/CIM/DataFile.g.cs b/Types/CIM/DataFile.g.cs index 19a4b75..bc795b7 100644 --- a/Types/CIM/DataFile.g.cs +++ b/Types/CIM/DataFile.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class DataFile(ManagementObject ManagementObject) : LogicalFile(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class DataFile(ManagementObject ManagementObject) : Logica /// public string? Version => (string)ManagementObject[nameof(Version)]; } -#nullable disable diff --git a/Types/CIM/Dependency.g.cs b/Types/CIM/Dependency.g.cs index f0deef2..98b1434 100644 --- a/Types/CIM/Dependency.g.cs +++ b/Types/CIM/Dependency.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Dependency(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class Dependency(ManagementObject ManagementObject) : Base /// public ManagedSystemElement? Dependent => (ManagedSystemElement)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/CIM/DesktopMonitor.g.cs b/Types/CIM/DesktopMonitor.g.cs index ef4d76f..af9413a 100644 --- a/Types/CIM/DesktopMonitor.g.cs +++ b/Types/CIM/DesktopMonitor.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/DeviceConnection.g.cs b/Types/CIM/DeviceConnection.g.cs index ba68568..329ede6 100644 --- a/Types/CIM/DeviceConnection.g.cs +++ b/Types/CIM/DeviceConnection.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class DeviceConnection(ManagementObject ManagementObject) : Dependency(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class DeviceConnection(ManagementObject ManagementObject) /// public ulong? NegotiatedSpeed => (ulong?)ManagementObject[nameof(NegotiatedSpeed)]; } -#nullable disable diff --git a/Types/CIM/Directory.g.cs b/Types/CIM/Directory.g.cs index 1166e88..199d5a3 100644 --- a/Types/CIM/Directory.g.cs +++ b/Types/CIM/Directory.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/DiskDrive.g.cs b/Types/CIM/DiskDrive.g.cs index 3b76c9f..1b78d96 100644 --- a/Types/CIM/DiskDrive.g.cs +++ b/Types/CIM/DiskDrive.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/DiskPartition.g.cs b/Types/CIM/DiskPartition.g.cs index 3cc4bd9..00d6396 100644 --- a/Types/CIM/DiskPartition.g.cs +++ b/Types/CIM/DiskPartition.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/DisketteDrive.g.cs b/Types/CIM/DisketteDrive.g.cs index 6374d94..531aad7 100644 --- a/Types/CIM/DisketteDrive.g.cs +++ b/Types/CIM/DisketteDrive.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/Display.g.cs b/Types/CIM/Display.g.cs index 32f627b..7ee442c 100644 --- a/Types/CIM/Display.g.cs +++ b/Types/CIM/Display.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/ElementSetting.g.cs b/Types/CIM/ElementSetting.g.cs index e24acbb..ffcba04 100644 --- a/Types/CIM/ElementSetting.g.cs +++ b/Types/CIM/ElementSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class ElementSetting(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ElementSetting(ManagementObject ManagementObject) : /// public Setting? Setting => (Setting)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/CIM/Fan.g.cs b/Types/CIM/Fan.g.cs index 1b53268..43caf76 100644 --- a/Types/CIM/Fan.g.cs +++ b/Types/CIM/Fan.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/HeatPipe.g.cs b/Types/CIM/HeatPipe.g.cs index 12839ba..8561393 100644 --- a/Types/CIM/HeatPipe.g.cs +++ b/Types/CIM/HeatPipe.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/IRQ.g.cs b/Types/CIM/IRQ.g.cs index 2162e0f..d057b1c 100644 --- a/Types/CIM/IRQ.g.cs +++ b/Types/CIM/IRQ.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class IRQ(ManagementObject ManagementObject) : SystemResource(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class IRQ(ManagementObject ManagementObject) : SystemResou /// public ushort? TriggerType => (ushort?)ManagementObject[nameof(TriggerType)]; } -#nullable disable diff --git a/Types/CIM/InfraredController.g.cs b/Types/CIM/InfraredController.g.cs index d532a5e..5d95786 100644 --- a/Types/CIM/InfraredController.g.cs +++ b/Types/CIM/InfraredController.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/InstalledOS.g.cs b/Types/CIM/InstalledOS.g.cs index 080f1c1..c6fe3ad 100644 --- a/Types/CIM/InstalledOS.g.cs +++ b/Types/CIM/InstalledOS.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class InstalledOS(ManagementObject ManagementObject) : SystemComponent(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class InstalledOS(ManagementObject ManagementObject) : Sys /// public bool? PrimaryOS => (bool?)ManagementObject[nameof(PrimaryOS)]; } -#nullable disable diff --git a/Types/CIM/Job.g.cs b/Types/CIM/Job.g.cs index 1cc7928..aaddb50 100644 --- a/Types/CIM/Job.g.cs +++ b/Types/CIM/Job.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Job(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class Job(ManagementObject ManagementObject) : LogicalElem /// public DateTimeOffset? UntilTime => ManagementObject.GetDateTimePropertyValue(nameof(UntilTime)); } -#nullable disable diff --git a/Types/CIM/Keyboard.g.cs b/Types/CIM/Keyboard.g.cs index 88fd170..b74353c 100644 --- a/Types/CIM/Keyboard.g.cs +++ b/Types/CIM/Keyboard.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Keyboard(ManagementObject ManagementObject) : UserDevice(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class Keyboard(ManagementObject ManagementObject) : UserDe /// public ushort? Password => (ushort?)ManagementObject[nameof(Password)]; } -#nullable disable diff --git a/Types/CIM/LogicalDevice.g.cs b/Types/CIM/LogicalDevice.g.cs index 24ce4a9..be81aa5 100644 --- a/Types/CIM/LogicalDevice.g.cs +++ b/Types/CIM/LogicalDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class LogicalDevice(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -67,4 +66,3 @@ public partial record class LogicalDevice(ManagementObject ManagementObject) : L /// public string? SystemName => (string)ManagementObject[nameof(SystemName)]; } -#nullable disable diff --git a/Types/CIM/LogicalDisk.g.cs b/Types/CIM/LogicalDisk.g.cs index 6a355a4..4a8c779 100644 --- a/Types/CIM/LogicalDisk.g.cs +++ b/Types/CIM/LogicalDisk.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/LogicalDiskBasedOnPartition.g.cs b/Types/CIM/LogicalDiskBasedOnPartition.g.cs index 48178ae..879a038 100644 --- a/Types/CIM/LogicalDiskBasedOnPartition.g.cs +++ b/Types/CIM/LogicalDiskBasedOnPartition.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class LogicalDiskBasedOnPartition(ManagementObject ManagementObject) : BasedOn(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LogicalDiskBasedOnPartition(ManagementObject Managem /// public new DiskPartition? Antecedent => (DiskPartition)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/CIM/LogicalElement.g.cs b/Types/CIM/LogicalElement.g.cs index 8379d32..01de482 100644 --- a/Types/CIM/LogicalElement.g.cs +++ b/Types/CIM/LogicalElement.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/LogicalFile.g.cs b/Types/CIM/LogicalFile.g.cs index ff7043e..594f290 100644 --- a/Types/CIM/LogicalFile.g.cs +++ b/Types/CIM/LogicalFile.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class LogicalFile(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -100,4 +99,3 @@ public partial record class LogicalFile(ManagementObject ManagementObject) : Log /// public bool? Writeable => (bool?)ManagementObject[nameof(Writeable)]; } -#nullable disable diff --git a/Types/CIM/ManagedSystemElement.g.cs b/Types/CIM/ManagedSystemElement.g.cs index 70d1e4a..826d374 100644 --- a/Types/CIM/ManagedSystemElement.g.cs +++ b/Types/CIM/ManagedSystemElement.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class ManagedSystemElement(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class ManagedSystemElement(ManagementObject ManagementObje /// public string? Status => (string)ManagementObject[nameof(Status)]; } -#nullable disable diff --git a/Types/CIM/MediaAccessDevice.g.cs b/Types/CIM/MediaAccessDevice.g.cs index 91a96cc..6ff4f67 100644 --- a/Types/CIM/MediaAccessDevice.g.cs +++ b/Types/CIM/MediaAccessDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class MediaAccessDevice(ManagementObject ManagementObject) : LogicalDevice(ManagementObject) { /// @@ -48,4 +47,3 @@ public partial record class MediaAccessDevice(ManagementObject ManagementObject) /// public uint? NumberOfMediaSupported => (uint?)ManagementObject[nameof(NumberOfMediaSupported)]; } -#nullable disable diff --git a/Types/CIM/MediaPresent.g.cs b/Types/CIM/MediaPresent.g.cs index bec8b69..b1c41e8 100644 --- a/Types/CIM/MediaPresent.g.cs +++ b/Types/CIM/MediaPresent.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class MediaPresent(ManagementObject ManagementObject) : Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class MediaPresent(ManagementObject ManagementObject) : De /// public new MediaAccessDevice? Antecedent => (MediaAccessDevice)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/CIM/Memory.g.cs b/Types/CIM/Memory.g.cs index d09b2bf..05b5133 100644 --- a/Types/CIM/Memory.g.cs +++ b/Types/CIM/Memory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Memory(ManagementObject ManagementObject) : StorageExtent(ManagementObject) { /// @@ -71,4 +70,3 @@ public partial record class Memory(ManagementObject ManagementObject) : StorageE /// public bool? SystemLevelAddress => (bool?)ManagementObject[nameof(SystemLevelAddress)]; } -#nullable disable diff --git a/Types/CIM/MemoryMappedIO.g.cs b/Types/CIM/MemoryMappedIO.g.cs index 3ea33aa..3d24234 100644 --- a/Types/CIM/MemoryMappedIO.g.cs +++ b/Types/CIM/MemoryMappedIO.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class MemoryMappedIO(ManagementObject ManagementObject) : SystemResource(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class MemoryMappedIO(ManagementObject ManagementObject) : /// public ulong? StartingAddress => (ulong?)ManagementObject[nameof(StartingAddress)]; } -#nullable disable diff --git a/Types/CIM/NetworkAdapter.g.cs b/Types/CIM/NetworkAdapter.g.cs index c3a36c5..821a39e 100644 --- a/Types/CIM/NetworkAdapter.g.cs +++ b/Types/CIM/NetworkAdapter.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class NetworkAdapter(ManagementObject ManagementObject) : LogicalDevice(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class NetworkAdapter(ManagementObject ManagementObject) : /// public ulong? Speed => (ulong?)ManagementObject[nameof(Speed)]; } -#nullable disable diff --git a/Types/CIM/NumericSensor.g.cs b/Types/CIM/NumericSensor.g.cs index fc8788e..6057c73 100644 --- a/Types/CIM/NumericSensor.g.cs +++ b/Types/CIM/NumericSensor.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/OperatingSystem.g.cs b/Types/CIM/OperatingSystem.g.cs index d2665c7..42c6a97 100644 --- a/Types/CIM/OperatingSystem.g.cs +++ b/Types/CIM/OperatingSystem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class OperatingSystem(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -99,4 +98,3 @@ public partial record class OperatingSystem(ManagementObject ManagementObject) : /// public string? Version => (string)ManagementObject[nameof(Version)]; } -#nullable disable diff --git a/Types/CIM/PCMCIAController.g.cs b/Types/CIM/PCMCIAController.g.cs index d3ff661..b0612be 100644 --- a/Types/CIM/PCMCIAController.g.cs +++ b/Types/CIM/PCMCIAController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class PCMCIAController(ManagementObject ManagementObject) : Controller(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PCMCIAController(ManagementObject ManagementObject) /// public string? Manufacturer => (string)ManagementObject[nameof(Manufacturer)]; } -#nullable disable diff --git a/Types/CIM/PCVideoController.g.cs b/Types/CIM/PCVideoController.g.cs index 4adfb6b..41d43d8 100644 --- a/Types/CIM/PCVideoController.g.cs +++ b/Types/CIM/PCVideoController.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/PackagedComponent.g.cs b/Types/CIM/PackagedComponent.g.cs index 33ab222..8a0e3a6 100644 --- a/Types/CIM/PackagedComponent.g.cs +++ b/Types/CIM/PackagedComponent.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class PackagedComponent(ManagementObject ManagementObject) : Container(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class PackagedComponent(ManagementObject ManagementObject) /// public new PhysicalPackage? GroupComponent => (PhysicalPackage)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/CIM/ParallelController.g.cs b/Types/CIM/ParallelController.g.cs index 31d716d..c1ba408 100644 --- a/Types/CIM/ParallelController.g.cs +++ b/Types/CIM/ParallelController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class ParallelController(ManagementObject ManagementObject) : Controller(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class ParallelController(ManagementObject ManagementObject /// public bool? DMASupport => (bool?)ManagementObject[nameof(DMASupport)]; } -#nullable disable diff --git a/Types/CIM/PhysicalComponent.g.cs b/Types/CIM/PhysicalComponent.g.cs index 1cb8bcd..3970dc5 100644 --- a/Types/CIM/PhysicalComponent.g.cs +++ b/Types/CIM/PhysicalComponent.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/PhysicalConnector.g.cs b/Types/CIM/PhysicalConnector.g.cs index 43ce3a9..c092029 100644 --- a/Types/CIM/PhysicalConnector.g.cs +++ b/Types/CIM/PhysicalConnector.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class PhysicalConnector(ManagementObject ManagementObject) : PhysicalElement(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class PhysicalConnector(ManagementObject ManagementObject) /// public ushort[]? ConnectorType => (ushort[])ManagementObject[nameof(ConnectorType)]; } -#nullable disable diff --git a/Types/CIM/PhysicalElement.g.cs b/Types/CIM/PhysicalElement.g.cs index 66959fd..d4a3d5f 100644 --- a/Types/CIM/PhysicalElement.g.cs +++ b/Types/CIM/PhysicalElement.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class PhysicalElement(ManagementObject ManagementObject) : ManagedSystemElement(ManagementObject) { /// @@ -51,4 +50,3 @@ public partial record class PhysicalElement(ManagementObject ManagementObject) : /// public string? Version => (string)ManagementObject[nameof(Version)]; } -#nullable disable diff --git a/Types/CIM/PhysicalFrame.g.cs b/Types/CIM/PhysicalFrame.g.cs index f109757..32649ec 100644 --- a/Types/CIM/PhysicalFrame.g.cs +++ b/Types/CIM/PhysicalFrame.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class PhysicalFrame(ManagementObject ManagementObject) : PhysicalPackage(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class PhysicalFrame(ManagementObject ManagementObject) : P /// public bool? VisibleAlarm => (bool?)ManagementObject[nameof(VisibleAlarm)]; } -#nullable disable diff --git a/Types/CIM/PhysicalMemory.g.cs b/Types/CIM/PhysicalMemory.g.cs index 40a0d78..97643a2 100644 --- a/Types/CIM/PhysicalMemory.g.cs +++ b/Types/CIM/PhysicalMemory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class PhysicalMemory(ManagementObject ManagementObject) : Chip(ManagementObject) { /// @@ -40,4 +39,3 @@ public partial record class PhysicalMemory(ManagementObject ManagementObject) : /// public ushort? TotalWidth => (ushort?)ManagementObject[nameof(TotalWidth)]; } -#nullable disable diff --git a/Types/CIM/PhysicalPackage.g.cs b/Types/CIM/PhysicalPackage.g.cs index 3997153..eb1fd00 100644 --- a/Types/CIM/PhysicalPackage.g.cs +++ b/Types/CIM/PhysicalPackage.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/PointingDevice.g.cs b/Types/CIM/PointingDevice.g.cs index 8bd806e..8ef8ce9 100644 --- a/Types/CIM/PointingDevice.g.cs +++ b/Types/CIM/PointingDevice.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/PotsModem.g.cs b/Types/CIM/PotsModem.g.cs index 9e99134..178202b 100644 --- a/Types/CIM/PotsModem.g.cs +++ b/Types/CIM/PotsModem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class PotsModem(ManagementObject ManagementObject) : LogicalDevice(ManagementObject) { /// @@ -79,4 +78,3 @@ public partial record class PotsModem(ManagementObject ManagementObject) : Logic /// public DateTimeOffset? TimeOfLastReset => ManagementObject.GetDateTimePropertyValue(nameof(TimeOfLastReset)); } -#nullable disable diff --git a/Types/CIM/Printer.g.cs b/Types/CIM/Printer.g.cs index 8c94512..57c0443 100644 --- a/Types/CIM/Printer.g.cs +++ b/Types/CIM/Printer.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Printer(ManagementObject ManagementObject) : LogicalDevice(ManagementObject) { /// @@ -139,4 +138,3 @@ public partial record class Printer(ManagementObject ManagementObject) : Logical /// public uint? VerticalResolution => (uint?)ManagementObject[nameof(VerticalResolution)]; } -#nullable disable diff --git a/Types/CIM/Process.g.cs b/Types/CIM/Process.g.cs index 6c11c89..f9a4f94 100644 --- a/Types/CIM/Process.g.cs +++ b/Types/CIM/Process.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Process(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -63,4 +62,3 @@ public partial record class Process(ManagementObject ManagementObject) : Logical /// public ulong? WorkingSetSize => (ulong?)ManagementObject[nameof(WorkingSetSize)]; } -#nullable disable diff --git a/Types/CIM/Processor.g.cs b/Types/CIM/Processor.g.cs index eeb68a4..8156387 100644 --- a/Types/CIM/Processor.g.cs +++ b/Types/CIM/Processor.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Processor(ManagementObject ManagementObject) : LogicalDevice(ManagementObject) { /// @@ -51,4 +50,3 @@ public partial record class Processor(ManagementObject ManagementObject) : Logic /// public ushort? UpgradeMethod => (ushort?)ManagementObject[nameof(UpgradeMethod)]; } -#nullable disable diff --git a/Types/CIM/Product.g.cs b/Types/CIM/Product.g.cs index 59609b4..15c237b 100644 --- a/Types/CIM/Product.g.cs +++ b/Types/CIM/Product.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Product(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -39,4 +38,3 @@ public partial record class Product(ManagementObject ManagementObject) : Base._O /// public string? Version => (string)ManagementObject[nameof(Version)]; } -#nullable disable diff --git a/Types/CIM/Realizes.g.cs b/Types/CIM/Realizes.g.cs index 112b03e..f0bbfcb 100644 --- a/Types/CIM/Realizes.g.cs +++ b/Types/CIM/Realizes.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Realizes(ManagementObject ManagementObject) : Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class Realizes(ManagementObject ManagementObject) : Depend /// public new PhysicalElement? Antecedent => (PhysicalElement)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/CIM/Refrigeration.g.cs b/Types/CIM/Refrigeration.g.cs index ab21b1f..3ca6db4 100644 --- a/Types/CIM/Refrigeration.g.cs +++ b/Types/CIM/Refrigeration.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/SCSIController.g.cs b/Types/CIM/SCSIController.g.cs index 44ea358..7a3e19a 100644 --- a/Types/CIM/SCSIController.g.cs +++ b/Types/CIM/SCSIController.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/Sensor.g.cs b/Types/CIM/Sensor.g.cs index c48cc5a..1e9e76c 100644 --- a/Types/CIM/Sensor.g.cs +++ b/Types/CIM/Sensor.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/SerialController.g.cs b/Types/CIM/SerialController.g.cs index 24ad249..7b98113 100644 --- a/Types/CIM/SerialController.g.cs +++ b/Types/CIM/SerialController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class SerialController(ManagementObject ManagementObject) : Controller(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class SerialController(ManagementObject ManagementObject) /// public uint? MaxBaudRate => (uint?)ManagementObject[nameof(MaxBaudRate)]; } -#nullable disable diff --git a/Types/CIM/Service.g.cs b/Types/CIM/Service.g.cs index 5a0ddc8..a4e1a0f 100644 --- a/Types/CIM/Service.g.cs +++ b/Types/CIM/Service.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Service(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -35,4 +34,3 @@ public partial record class Service(ManagementObject ManagementObject) : Logical /// public string? SystemName => (string)ManagementObject[nameof(SystemName)]; } -#nullable disable diff --git a/Types/CIM/ServiceAccessPoint.g.cs b/Types/CIM/ServiceAccessPoint.g.cs index d786019..f45e922 100644 --- a/Types/CIM/ServiceAccessPoint.g.cs +++ b/Types/CIM/ServiceAccessPoint.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class ServiceAccessPoint(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class ServiceAccessPoint(ManagementObject ManagementObject /// public uint? Type => (uint?)ManagementObject[nameof(Type)]; } -#nullable disable diff --git a/Types/CIM/ServiceServiceDependency.g.cs b/Types/CIM/ServiceServiceDependency.g.cs index 9197d99..a226f11 100644 --- a/Types/CIM/ServiceServiceDependency.g.cs +++ b/Types/CIM/ServiceServiceDependency.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class ServiceServiceDependency(ManagementObject ManagementObject) : Dependency(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class ServiceServiceDependency(ManagementObject Management /// public ushort? TypeOfDependency => (ushort?)ManagementObject[nameof(TypeOfDependency)]; } -#nullable disable diff --git a/Types/CIM/Setting.g.cs b/Types/CIM/Setting.g.cs index 4aca5bb..cca0d82 100644 --- a/Types/CIM/Setting.g.cs +++ b/Types/CIM/Setting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Setting(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class Setting(ManagementObject ManagementObject) : Base._O /// public string? SettingID => (string)ManagementObject[nameof(SettingID)]; } -#nullable disable diff --git a/Types/CIM/Slot.g.cs b/Types/CIM/Slot.g.cs index 0f13a64..4c63124 100644 --- a/Types/CIM/Slot.g.cs +++ b/Types/CIM/Slot.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Slot(ManagementObject ManagementObject) : PhysicalConnector(ManagementObject) { /// @@ -51,4 +50,3 @@ public partial record class Slot(ManagementObject ManagementObject) : PhysicalCo /// public ushort[]? VppMixedVoltageSupport => (ushort[])ManagementObject[nameof(VppMixedVoltageSupport)]; } -#nullable disable diff --git a/Types/CIM/SoftwareElement.g.cs b/Types/CIM/SoftwareElement.g.cs index f9fdebd..d530977 100644 --- a/Types/CIM/SoftwareElement.g.cs +++ b/Types/CIM/SoftwareElement.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class SoftwareElement(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -55,4 +54,3 @@ public partial record class SoftwareElement(ManagementObject ManagementObject) : /// public string? Version => (string)ManagementObject[nameof(Version)]; } -#nullable disable diff --git a/Types/CIM/StatisticalInformation.g.cs b/Types/CIM/StatisticalInformation.g.cs index 0bcf2e5..4be6841 100644 --- a/Types/CIM/StatisticalInformation.g.cs +++ b/Types/CIM/StatisticalInformation.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class StatisticalInformation(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class StatisticalInformation(ManagementObject ManagementOb /// public string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/CIM/StorageExtent.g.cs b/Types/CIM/StorageExtent.g.cs index eddb337..fd6af99 100644 --- a/Types/CIM/StorageExtent.g.cs +++ b/Types/CIM/StorageExtent.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class StorageExtent(ManagementObject ManagementObject) : LogicalDevice(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class StorageExtent(ManagementObject ManagementObject) : L /// public string? Purpose => (string)ManagementObject[nameof(Purpose)]; } -#nullable disable diff --git a/Types/CIM/System.g.cs b/Types/CIM/System.g.cs index fc57ada..9ac46b0 100644 --- a/Types/CIM/System.g.cs +++ b/Types/CIM/System.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class System(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -35,4 +34,3 @@ public partial record class System(ManagementObject ManagementObject) : LogicalE /// public string[]? Roles => (string[])ManagementObject[nameof(Roles)]; } -#nullable disable diff --git a/Types/CIM/SystemComponent.g.cs b/Types/CIM/SystemComponent.g.cs index 5e9f785..6ccffbe 100644 --- a/Types/CIM/SystemComponent.g.cs +++ b/Types/CIM/SystemComponent.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class SystemComponent(ManagementObject ManagementObject) : Component(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemComponent(ManagementObject ManagementObject) : /// public new System? GroupComponent => (System)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/CIM/SystemDevice.g.cs b/Types/CIM/SystemDevice.g.cs index c53dd8a..9a28ff2 100644 --- a/Types/CIM/SystemDevice.g.cs +++ b/Types/CIM/SystemDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class SystemDevice(ManagementObject ManagementObject) : SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemDevice(ManagementObject ManagementObject) : Sy /// public new System? GroupComponent => (System)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/CIM/SystemResource.g.cs b/Types/CIM/SystemResource.g.cs index fdd10b2..4850a7b 100644 --- a/Types/CIM/SystemResource.g.cs +++ b/Types/CIM/SystemResource.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/TapeDrive.g.cs b/Types/CIM/TapeDrive.g.cs index aec4779..0917082 100644 --- a/Types/CIM/TapeDrive.g.cs +++ b/Types/CIM/TapeDrive.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/TemperatureSensor.g.cs b/Types/CIM/TemperatureSensor.g.cs index 481b8b7..2c3ce63 100644 --- a/Types/CIM/TemperatureSensor.g.cs +++ b/Types/CIM/TemperatureSensor.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/Thread.g.cs b/Types/CIM/Thread.g.cs index 58aac0a..a569d5e 100644 --- a/Types/CIM/Thread.g.cs +++ b/Types/CIM/Thread.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class Thread(ManagementObject ManagementObject) : LogicalElement(ManagementObject) { /// @@ -59,4 +58,3 @@ public partial record class Thread(ManagementObject ManagementObject) : LogicalE /// public ulong? UserModeTime => (ulong?)ManagementObject[nameof(UserModeTime)]; } -#nullable disable diff --git a/Types/CIM/USBController.g.cs b/Types/CIM/USBController.g.cs index 3dfef6e..b109672 100644 --- a/Types/CIM/USBController.g.cs +++ b/Types/CIM/USBController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class USBController(ManagementObject ManagementObject) : Controller(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class USBController(ManagementObject ManagementObject) : C /// public string? Manufacturer => (string)ManagementObject[nameof(Manufacturer)]; } -#nullable disable diff --git a/Types/CIM/UnitaryComputerSystem.g.cs b/Types/CIM/UnitaryComputerSystem.g.cs index d37a9a1..4fb8383 100644 --- a/Types/CIM/UnitaryComputerSystem.g.cs +++ b/Types/CIM/UnitaryComputerSystem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class UnitaryComputerSystem(ManagementObject ManagementObject) : ComputerSystem(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class UnitaryComputerSystem(ManagementObject ManagementObj /// public ushort? ResetCapability => (ushort?)ManagementObject[nameof(ResetCapability)]; } -#nullable disable diff --git a/Types/CIM/UserDevice.g.cs b/Types/CIM/UserDevice.g.cs index fa83923..4b371f4 100644 --- a/Types/CIM/UserDevice.g.cs +++ b/Types/CIM/UserDevice.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/CIM/VideoController.g.cs b/Types/CIM/VideoController.g.cs index 35a0fac..3a6f164 100644 --- a/Types/CIM/VideoController.g.cs +++ b/Types/CIM/VideoController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class VideoController(ManagementObject ManagementObject) : Controller(ManagementObject) { /// @@ -75,4 +74,3 @@ public partial record class VideoController(ManagementObject ManagementObject) : /// public string? VideoProcessor => (string)ManagementObject[nameof(VideoProcessor)]; } -#nullable disable diff --git a/Types/CIM/VideoControllerResolution.g.cs b/Types/CIM/VideoControllerResolution.g.cs index 784e84c..38e01e6 100644 --- a/Types/CIM/VideoControllerResolution.g.cs +++ b/Types/CIM/VideoControllerResolution.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class VideoControllerResolution(ManagementObject ManagementObject) : Setting(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class VideoControllerResolution(ManagementObject Managemen /// public uint? VerticalResolution => (uint?)ManagementObject[nameof(VerticalResolution)]; } -#nullable disable diff --git a/Types/CIM/VideoSetting.g.cs b/Types/CIM/VideoSetting.g.cs index 0c1dccc..fe808da 100644 --- a/Types/CIM/VideoSetting.g.cs +++ b/Types/CIM/VideoSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; -#nullable enable public partial record class VideoSetting(ManagementObject ManagementObject) : ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class VideoSetting(ManagementObject ManagementObject) : El /// public new VideoController? Element => (VideoController)ManagementObject[nameof(Element)]; } -#nullable disable diff --git a/Types/CIM/VoltageSensor.g.cs b/Types/CIM/VoltageSensor.g.cs index a64bc50..bd06d1c 100644 --- a/Types/CIM/VoltageSensor.g.cs +++ b/Types/CIM/VoltageSensor.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.CIM; diff --git a/Types/Win32/ACE.g.cs b/Types/Win32/ACE.g.cs index 50bb747..5877f36 100644 --- a/Types/Win32/ACE.g.cs +++ b/Types/Win32/ACE.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ACE(ManagementObject ManagementObject) : Base._ACE(ManagementObject) { /// @@ -35,4 +34,3 @@ public partial record class ACE(ManagementObject ManagementObject) : Base._ACE(M /// public new Trustee? Trustee => (Trustee)ManagementObject[nameof(Trustee)]; } -#nullable disable diff --git a/Types/Win32/Account.g.cs b/Types/Win32/Account.g.cs index 0912523..4b81998 100644 --- a/Types/Win32/Account.g.cs +++ b/Types/Win32/Account.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Account(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class Account(ManagementObject ManagementObject) : CIM.Log /// public byte? SIDType => (byte?)ManagementObject[nameof(SIDType)]; } -#nullable disable diff --git a/Types/Win32/AllocatedResource.g.cs b/Types/Win32/AllocatedResource.g.cs index 321f9dd..d12af26 100644 --- a/Types/Win32/AllocatedResource.g.cs +++ b/Types/Win32/AllocatedResource.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class AllocatedResource(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class AllocatedResource(ManagementObject ManagementObject) /// public new CIM.SystemResource? Antecedent => (CIM.SystemResource)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/Win32/AssociatedProcessorMemory.g.cs b/Types/Win32/AssociatedProcessorMemory.g.cs index ddfaa84..9921693 100644 --- a/Types/Win32/AssociatedProcessorMemory.g.cs +++ b/Types/Win32/AssociatedProcessorMemory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class AssociatedProcessorMemory(ManagementObject ManagementObject) : CIM.AssociatedProcessorMemory(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class AssociatedProcessorMemory(ManagementObject Managemen /// public new CacheMemory? Antecedent => (CacheMemory)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/Win32/AutochkSetting.g.cs b/Types/Win32/AutochkSetting.g.cs index be9f14a..cc069f1 100644 --- a/Types/Win32/AutochkSetting.g.cs +++ b/Types/Win32/AutochkSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class AutochkSetting(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class AutochkSetting(ManagementObject ManagementObject) : /// public uint? UserInputDelay => (uint?)ManagementObject[nameof(UserInputDelay)]; } -#nullable disable diff --git a/Types/Win32/BIOS.g.cs b/Types/Win32/BIOS.g.cs index 8b2061d..0a32653 100644 --- a/Types/Win32/BIOS.g.cs +++ b/Types/Win32/BIOS.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class BIOS(ManagementObject ManagementObject) : CIM.BIOSElement(ManagementObject) { /// @@ -67,4 +66,3 @@ public partial record class BIOS(ManagementObject ManagementObject) : CIM.BIOSEl /// public byte? SystemBiosMinorVersion => (byte?)ManagementObject[nameof(SystemBiosMinorVersion)]; } -#nullable disable diff --git a/Types/Win32/BaseBoard.g.cs b/Types/Win32/BaseBoard.g.cs index 5c5ea0d..4fafda0 100644 --- a/Types/Win32/BaseBoard.g.cs +++ b/Types/Win32/BaseBoard.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class BaseBoard(ManagementObject ManagementObject) : CIM.Card(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class BaseBoard(ManagementObject ManagementObject) : CIM.C /// public string? Product => (string)ManagementObject[nameof(Product)]; } -#nullable disable diff --git a/Types/Win32/BaseService.g.cs b/Types/Win32/BaseService.g.cs index affe8f9..fae45ca 100644 --- a/Types/Win32/BaseService.g.cs +++ b/Types/Win32/BaseService.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class BaseService(ManagementObject ManagementObject) : CIM.Service(ManagementObject) { /// @@ -53,4 +52,3 @@ public partial record class BaseService(ManagementObject ManagementObject) : CIM public string? State => (string)ManagementObject[nameof(State)]; public uint? TagId => (uint?)ManagementObject[nameof(TagId)]; } -#nullable disable diff --git a/Types/Win32/Battery.g.cs b/Types/Win32/Battery.g.cs index 153ddd2..976a234 100644 --- a/Types/Win32/Battery.g.cs +++ b/Types/Win32/Battery.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/BootConfiguration.g.cs b/Types/Win32/BootConfiguration.g.cs index 090c53d..143fad6 100644 --- a/Types/Win32/BootConfiguration.g.cs +++ b/Types/Win32/BootConfiguration.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class BootConfiguration(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -35,4 +34,3 @@ public partial record class BootConfiguration(ManagementObject ManagementObject) /// public string? TempDirectory => (string)ManagementObject[nameof(TempDirectory)]; } -#nullable disable diff --git a/Types/Win32/Bus.g.cs b/Types/Win32/Bus.g.cs index b932845..c8c27bc 100644 --- a/Types/Win32/Bus.g.cs +++ b/Types/Win32/Bus.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/CDROMDrive.g.cs b/Types/Win32/CDROMDrive.g.cs index 1480250..4e47839 100644 --- a/Types/Win32/CDROMDrive.g.cs +++ b/Types/Win32/CDROMDrive.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class CDROMDrive(ManagementObject ManagementObject) : CIM.CDROMDrive(ManagementObject) { /// @@ -85,4 +84,3 @@ public partial record class CDROMDrive(ManagementObject ManagementObject) : CIM. /// public string? VolumeSerialNumber => (string)ManagementObject[nameof(VolumeSerialNumber)]; } -#nullable disable diff --git a/Types/Win32/CIMLogicalDeviceCIMDataFile.g.cs b/Types/Win32/CIMLogicalDeviceCIMDataFile.g.cs index 202ae41..cc594be 100644 --- a/Types/Win32/CIMLogicalDeviceCIMDataFile.g.cs +++ b/Types/Win32/CIMLogicalDeviceCIMDataFile.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class CIMLogicalDeviceCIMDataFile(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class CIMLogicalDeviceCIMDataFile(ManagementObject Managem /// public string? PurposeDescription => (string)ManagementObject[nameof(PurposeDescription)]; } -#nullable disable diff --git a/Types/Win32/COMApplication.g.cs b/Types/Win32/COMApplication.g.cs index 0cee05f..449a431 100644 --- a/Types/Win32/COMApplication.g.cs +++ b/Types/Win32/COMApplication.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/COMApplicationClasses.g.cs b/Types/Win32/COMApplicationClasses.g.cs index f62b656..7f2f727 100644 --- a/Types/Win32/COMApplicationClasses.g.cs +++ b/Types/Win32/COMApplicationClasses.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class COMApplicationClasses(ManagementObject ManagementObject) : CIM.Component(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class COMApplicationClasses(ManagementObject ManagementObj /// public new COMApplication? GroupComponent => (COMApplication)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/Win32/COMApplicationSettings.g.cs b/Types/Win32/COMApplicationSettings.g.cs index 6ca0244..51f676f 100644 --- a/Types/Win32/COMApplicationSettings.g.cs +++ b/Types/Win32/COMApplicationSettings.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class COMApplicationSettings(ManagementObject ManagementObject) : CIM.ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class COMApplicationSettings(ManagementObject ManagementOb /// public new DCOMApplication? Element => (DCOMApplication)ManagementObject[nameof(Element)]; } -#nullable disable diff --git a/Types/Win32/COMClass.g.cs b/Types/Win32/COMClass.g.cs index 0f73248..b7228ca 100644 --- a/Types/Win32/COMClass.g.cs +++ b/Types/Win32/COMClass.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/COMSetting.g.cs b/Types/Win32/COMSetting.g.cs index 23203ec..c3c3577 100644 --- a/Types/Win32/COMSetting.g.cs +++ b/Types/Win32/COMSetting.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/CacheMemory.g.cs b/Types/Win32/CacheMemory.g.cs index cf0e243..3695769 100644 --- a/Types/Win32/CacheMemory.g.cs +++ b/Types/Win32/CacheMemory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class CacheMemory(ManagementObject ManagementObject) : CIM.CacheMemory(ManagementObject) { /// @@ -39,4 +38,3 @@ public partial record class CacheMemory(ManagementObject ManagementObject) : CIM /// public ushort[]? SupportedSRAM => (ushort[])ManagementObject[nameof(SupportedSRAM)]; } -#nullable disable diff --git a/Types/Win32/ClassicCOMApplicationClasses.g.cs b/Types/Win32/ClassicCOMApplicationClasses.g.cs index aa5804a..3f3b473 100644 --- a/Types/Win32/ClassicCOMApplicationClasses.g.cs +++ b/Types/Win32/ClassicCOMApplicationClasses.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ClassicCOMApplicationClasses(ManagementObject ManagementObject) : COMApplicationClasses(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ClassicCOMApplicationClasses(ManagementObject Manage /// public new DCOMApplication? GroupComponent => (DCOMApplication)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/Win32/ClassicCOMClass.g.cs b/Types/Win32/ClassicCOMClass.g.cs index 0888f9a..088ddec 100644 --- a/Types/Win32/ClassicCOMClass.g.cs +++ b/Types/Win32/ClassicCOMClass.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ClassicCOMClass(ManagementObject ManagementObject) : COMClass(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ClassicCOMClass(ManagementObject ManagementObject) : /// public new string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/ClassicCOMClassSetting.g.cs b/Types/Win32/ClassicCOMClassSetting.g.cs index 2c45c74..8044ae3 100644 --- a/Types/Win32/ClassicCOMClassSetting.g.cs +++ b/Types/Win32/ClassicCOMClassSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ClassicCOMClassSetting(ManagementObject ManagementObject) : COMSetting(ManagementObject) { /// @@ -103,4 +102,3 @@ public partial record class ClassicCOMClassSetting(ManagementObject ManagementOb /// public string? VersionIndependentProgId => (string)ManagementObject[nameof(VersionIndependentProgId)]; } -#nullable disable diff --git a/Types/Win32/ClassicCOMClassSettings.g.cs b/Types/Win32/ClassicCOMClassSettings.g.cs index ea29d6b..d1e66cf 100644 --- a/Types/Win32/ClassicCOMClassSettings.g.cs +++ b/Types/Win32/ClassicCOMClassSettings.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ClassicCOMClassSettings(ManagementObject ManagementObject) : CIM.ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ClassicCOMClassSettings(ManagementObject ManagementO /// public new ClassicCOMClass? Element => (ClassicCOMClass)ManagementObject[nameof(Element)]; } -#nullable disable diff --git a/Types/Win32/ClientApplicationSetting.g.cs b/Types/Win32/ClientApplicationSetting.g.cs index 85761c1..8fc68e3 100644 --- a/Types/Win32/ClientApplicationSetting.g.cs +++ b/Types/Win32/ClientApplicationSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ClientApplicationSetting(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ClientApplicationSetting(ManagementObject Management /// public CIM.DataFile? Client => (CIM.DataFile)ManagementObject[nameof(Client)]; } -#nullable disable diff --git a/Types/Win32/ClusterShare.g.cs b/Types/Win32/ClusterShare.g.cs index 858a3d0..48428b7 100644 --- a/Types/Win32/ClusterShare.g.cs +++ b/Types/Win32/ClusterShare.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ClusterShare(ManagementObject ManagementObject) : Share(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class ClusterShare(ManagementObject ManagementObject) : Sh /// public string? ServerName => (string)ManagementObject[nameof(ServerName)]; } -#nullable disable diff --git a/Types/Win32/CodecFile.g.cs b/Types/Win32/CodecFile.g.cs index 0607c98..1058734 100644 --- a/Types/Win32/CodecFile.g.cs +++ b/Types/Win32/CodecFile.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class CodecFile(ManagementObject ManagementObject) : CIM.DataFile(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class CodecFile(ManagementObject ManagementObject) : CIM.D /// public string? Group => (string)ManagementObject[nameof(Group)]; } -#nullable disable diff --git a/Types/Win32/ComClassAutoEmulator.g.cs b/Types/Win32/ComClassAutoEmulator.g.cs index 6eee359..c0f9028 100644 --- a/Types/Win32/ComClassAutoEmulator.g.cs +++ b/Types/Win32/ComClassAutoEmulator.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ComClassAutoEmulator(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ComClassAutoEmulator(ManagementObject ManagementObje /// public ClassicCOMClass? OldVersion => (ClassicCOMClass)ManagementObject[nameof(OldVersion)]; } -#nullable disable diff --git a/Types/Win32/ComClassEmulator.g.cs b/Types/Win32/ComClassEmulator.g.cs index f9608a8..e2ac544 100644 --- a/Types/Win32/ComClassEmulator.g.cs +++ b/Types/Win32/ComClassEmulator.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ComClassEmulator(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ComClassEmulator(ManagementObject ManagementObject) /// public ClassicCOMClass? OldVersion => (ClassicCOMClass)ManagementObject[nameof(OldVersion)]; } -#nullable disable diff --git a/Types/Win32/ComponentCategory.g.cs b/Types/Win32/ComponentCategory.g.cs index a238770..1d8db61 100644 --- a/Types/Win32/ComponentCategory.g.cs +++ b/Types/Win32/ComponentCategory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ComponentCategory(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ComponentCategory(ManagementObject ManagementObject) /// public new string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/ComputerSystem.g.cs b/Types/Win32/ComputerSystem.g.cs index 7fef3ad..dac55e0 100644 --- a/Types/Win32/ComputerSystem.g.cs +++ b/Types/Win32/ComputerSystem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ComputerSystem(ManagementObject ManagementObject) : CIM.UnitaryComputerSystem(ManagementObject) { /// @@ -199,4 +198,3 @@ public partial record class ComputerSystem(ManagementObject ManagementObject) : /// public string? Workgroup => (string)ManagementObject[nameof(Workgroup)]; } -#nullable disable diff --git a/Types/Win32/ComputerSystemProcessor.g.cs b/Types/Win32/ComputerSystemProcessor.g.cs index b52729b..647353e 100644 --- a/Types/Win32/ComputerSystemProcessor.g.cs +++ b/Types/Win32/ComputerSystemProcessor.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ComputerSystemProcessor(ManagementObject ManagementObject) : SystemDevices(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ComputerSystemProcessor(ManagementObject ManagementO /// public new ComputerSystem? GroupComponent => (ComputerSystem)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/Win32/ComputerSystemProduct.g.cs b/Types/Win32/ComputerSystemProduct.g.cs index 14c6ddc..578f420 100644 --- a/Types/Win32/ComputerSystemProduct.g.cs +++ b/Types/Win32/ComputerSystemProduct.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ComputerSystemProduct(ManagementObject ManagementObject) : CIM.Product(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class ComputerSystemProduct(ManagementObject ManagementObj /// public string? UUID => (string)ManagementObject[nameof(UUID)]; } -#nullable disable diff --git a/Types/Win32/CurrentProbe.g.cs b/Types/Win32/CurrentProbe.g.cs index 4153953..04cb0c5 100644 --- a/Types/Win32/CurrentProbe.g.cs +++ b/Types/Win32/CurrentProbe.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/DCOMApplication.g.cs b/Types/Win32/DCOMApplication.g.cs index 8f57965..e4a004e 100644 --- a/Types/Win32/DCOMApplication.g.cs +++ b/Types/Win32/DCOMApplication.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DCOMApplication(ManagementObject ManagementObject) : COMApplication(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class DCOMApplication(ManagementObject ManagementObject) : /// public string? AppID => (string)ManagementObject[nameof(AppID)]; } -#nullable disable diff --git a/Types/Win32/DCOMApplicationSetting.g.cs b/Types/Win32/DCOMApplicationSetting.g.cs index 6fa3de3..5e7839d 100644 --- a/Types/Win32/DCOMApplicationSetting.g.cs +++ b/Types/Win32/DCOMApplicationSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DCOMApplicationSetting(ManagementObject ManagementObject) : COMSetting(ManagementObject) { /// @@ -47,4 +46,3 @@ public partial record class DCOMApplicationSetting(ManagementObject ManagementOb /// public bool? UseSurrogate => (bool?)ManagementObject[nameof(UseSurrogate)]; } -#nullable disable diff --git a/Types/Win32/DMAChannel.g.cs b/Types/Win32/DMAChannel.g.cs index 390ab8e..4d838d6 100644 --- a/Types/Win32/DMAChannel.g.cs +++ b/Types/Win32/DMAChannel.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/DependentService.g.cs b/Types/Win32/DependentService.g.cs index 7e29006..5271172 100644 --- a/Types/Win32/DependentService.g.cs +++ b/Types/Win32/DependentService.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DependentService(ManagementObject ManagementObject) : CIM.ServiceServiceDependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class DependentService(ManagementObject ManagementObject) /// public new BaseService? Dependent => (BaseService)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/Desktop.g.cs b/Types/Win32/Desktop.g.cs index 1980228..da33f91 100644 --- a/Types/Win32/Desktop.g.cs +++ b/Types/Win32/Desktop.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Desktop(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -83,4 +82,3 @@ public partial record class Desktop(ManagementObject ManagementObject) : CIM.Set /// public bool? WallpaperTiled => (bool?)ManagementObject[nameof(WallpaperTiled)]; } -#nullable disable diff --git a/Types/Win32/DesktopMonitor.g.cs b/Types/Win32/DesktopMonitor.g.cs index fbd19ca..df42d70 100644 --- a/Types/Win32/DesktopMonitor.g.cs +++ b/Types/Win32/DesktopMonitor.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DesktopMonitor(ManagementObject ManagementObject) : CIM.DesktopMonitor(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class DesktopMonitor(ManagementObject ManagementObject) : /// public uint? PixelsPerYLogicalInch => (uint?)ManagementObject[nameof(PixelsPerYLogicalInch)]; } -#nullable disable diff --git a/Types/Win32/DeviceBus.g.cs b/Types/Win32/DeviceBus.g.cs index 2787fba..71223ff 100644 --- a/Types/Win32/DeviceBus.g.cs +++ b/Types/Win32/DeviceBus.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DeviceBus(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class DeviceBus(ManagementObject ManagementObject) : CIM.D /// public new Bus? Antecedent => (Bus)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/Win32/DeviceChangeEvent.g.cs b/Types/Win32/DeviceChangeEvent.g.cs index ae812d1..1fcb351 100644 --- a/Types/Win32/DeviceChangeEvent.g.cs +++ b/Types/Win32/DeviceChangeEvent.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/DeviceMemoryAddress.g.cs b/Types/Win32/DeviceMemoryAddress.g.cs index 23c25e1..fe7f0b2 100644 --- a/Types/Win32/DeviceMemoryAddress.g.cs +++ b/Types/Win32/DeviceMemoryAddress.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DeviceMemoryAddress(ManagementObject ManagementObject) : SystemMemoryResource(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class DeviceMemoryAddress(ManagementObject ManagementObjec /// public string? MemoryType => (string)ManagementObject[nameof(MemoryType)]; } -#nullable disable diff --git a/Types/Win32/DeviceSettings.g.cs b/Types/Win32/DeviceSettings.g.cs index 21c0b38..ce4290b 100644 --- a/Types/Win32/DeviceSettings.g.cs +++ b/Types/Win32/DeviceSettings.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DeviceSettings(ManagementObject ManagementObject) : CIM.ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class DeviceSettings(ManagementObject ManagementObject) : /// public new CIM.LogicalDevice? Element => (CIM.LogicalDevice)ManagementObject[nameof(Element)]; } -#nullable disable diff --git a/Types/Win32/Directory.g.cs b/Types/Win32/Directory.g.cs index 8954483..950193d 100644 --- a/Types/Win32/Directory.g.cs +++ b/Types/Win32/Directory.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/DiskDrive.g.cs b/Types/Win32/DiskDrive.g.cs index 31e17ef..7b9e0cf 100644 --- a/Types/Win32/DiskDrive.g.cs +++ b/Types/Win32/DiskDrive.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DiskDrive(ManagementObject ManagementObject) : CIM.DiskDrive(ManagementObject) { /// @@ -93,4 +92,3 @@ public partial record class DiskDrive(ManagementObject ManagementObject) : CIM.D public ulong? TotalTracks => (ulong?)ManagementObject[nameof(TotalTracks)]; public uint? TracksPerCylinder => (uint?)ManagementObject[nameof(TracksPerCylinder)]; } -#nullable disable diff --git a/Types/Win32/DiskDriveToDiskPartition.g.cs b/Types/Win32/DiskDriveToDiskPartition.g.cs index 3c2fa96..6110d4d 100644 --- a/Types/Win32/DiskDriveToDiskPartition.g.cs +++ b/Types/Win32/DiskDriveToDiskPartition.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DiskDriveToDiskPartition(ManagementObject ManagementObject) : CIM.MediaPresent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class DiskDriveToDiskPartition(ManagementObject Management /// public new DiskPartition? Dependent => (DiskPartition)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/DiskPartition.g.cs b/Types/Win32/DiskPartition.g.cs index b6f189a..1ecc880 100644 --- a/Types/Win32/DiskPartition.g.cs +++ b/Types/Win32/DiskPartition.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DiskPartition(ManagementObject ManagementObject) : CIM.DiskPartition(ManagementObject) { /// @@ -47,4 +46,3 @@ public partial record class DiskPartition(ManagementObject ManagementObject) : C /// public string? Type => (string)ManagementObject[nameof(Type)]; } -#nullable disable diff --git a/Types/Win32/DisplayControllerConfiguration.g.cs b/Types/Win32/DisplayControllerConfiguration.g.cs index 4f0e3fc..dc6446e 100644 --- a/Types/Win32/DisplayControllerConfiguration.g.cs +++ b/Types/Win32/DisplayControllerConfiguration.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class DisplayControllerConfiguration(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -55,4 +54,3 @@ public partial record class DisplayControllerConfiguration(ManagementObject Mana /// public string? VideoMode => (string)ManagementObject[nameof(VideoMode)]; } -#nullable disable diff --git a/Types/Win32/DriverForDevice.g.cs b/Types/Win32/DriverForDevice.g.cs index 7af423d..821163a 100644 --- a/Types/Win32/DriverForDevice.g.cs +++ b/Types/Win32/DriverForDevice.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/Environment.g.cs b/Types/Win32/Environment.g.cs index 29db7e7..073a6ff 100644 --- a/Types/Win32/Environment.g.cs +++ b/Types/Win32/Environment.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Environment(ManagementObject ManagementObject) : CIM.SystemResource(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class Environment(ManagementObject ManagementObject) : CIM /// public string? VariableValue => (string)ManagementObject[nameof(VariableValue)]; } -#nullable disable diff --git a/Types/Win32/Fan.g.cs b/Types/Win32/Fan.g.cs index 82a754a..0e905dc 100644 --- a/Types/Win32/Fan.g.cs +++ b/Types/Win32/Fan.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/FloppyController.g.cs b/Types/Win32/FloppyController.g.cs index 90e011a..fc90262 100644 --- a/Types/Win32/FloppyController.g.cs +++ b/Types/Win32/FloppyController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class FloppyController(ManagementObject ManagementObject) : CIM.Controller(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class FloppyController(ManagementObject ManagementObject) /// public string? Manufacturer => (string)ManagementObject[nameof(Manufacturer)]; } -#nullable disable diff --git a/Types/Win32/FloppyDrive.g.cs b/Types/Win32/FloppyDrive.g.cs index 764ce50..43f613c 100644 --- a/Types/Win32/FloppyDrive.g.cs +++ b/Types/Win32/FloppyDrive.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class FloppyDrive(ManagementObject ManagementObject) : CIM.DisketteDrive(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class FloppyDrive(ManagementObject ManagementObject) : CIM /// public string? Manufacturer => (string)ManagementObject[nameof(Manufacturer)]; } -#nullable disable diff --git a/Types/Win32/Group.g.cs b/Types/Win32/Group.g.cs index 9b1eae6..f1b7a0d 100644 --- a/Types/Win32/Group.g.cs +++ b/Types/Win32/Group.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Group(ManagementObject ManagementObject) : Account(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class Group(ManagementObject ManagementObject) : Account(M /// public new string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/GroupUser.g.cs b/Types/Win32/GroupUser.g.cs index 568150c..f2d37cb 100644 --- a/Types/Win32/GroupUser.g.cs +++ b/Types/Win32/GroupUser.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class GroupUser(ManagementObject ManagementObject) : CIM.Component(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class GroupUser(ManagementObject ManagementObject) : CIM.C /// public new Account? PartComponent => (Account)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/HeatPipe.g.cs b/Types/Win32/HeatPipe.g.cs index 64f936f..ef502f2 100644 --- a/Types/Win32/HeatPipe.g.cs +++ b/Types/Win32/HeatPipe.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/IDEController.g.cs b/Types/Win32/IDEController.g.cs index fde3aba..90416c4 100644 --- a/Types/Win32/IDEController.g.cs +++ b/Types/Win32/IDEController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class IDEController(ManagementObject ManagementObject) : CIM.Controller(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class IDEController(ManagementObject ManagementObject) : C /// public string? Manufacturer => (string)ManagementObject[nameof(Manufacturer)]; } -#nullable disable diff --git a/Types/Win32/IDEControllerDevice.g.cs b/Types/Win32/IDEControllerDevice.g.cs index 1cf2c63..15d9b5f 100644 --- a/Types/Win32/IDEControllerDevice.g.cs +++ b/Types/Win32/IDEControllerDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class IDEControllerDevice(ManagementObject ManagementObject) : CIM.ControlledBy(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class IDEControllerDevice(ManagementObject ManagementObjec /// public new CIM.LogicalDevice? Dependent => (CIM.LogicalDevice)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/IRQResource.g.cs b/Types/Win32/IRQResource.g.cs index f1aa0a0..e47ed4b 100644 --- a/Types/Win32/IRQResource.g.cs +++ b/Types/Win32/IRQResource.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/ImplementedCategory.g.cs b/Types/Win32/ImplementedCategory.g.cs index 1dbe8d8..56559bf 100644 --- a/Types/Win32/ImplementedCategory.g.cs +++ b/Types/Win32/ImplementedCategory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ImplementedCategory(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ImplementedCategory(ManagementObject ManagementObjec /// public ClassicCOMClass? Component => (ClassicCOMClass)ManagementObject[nameof(Component)]; } -#nullable disable diff --git a/Types/Win32/InfraredDevice.g.cs b/Types/Win32/InfraredDevice.g.cs index 0d506da..d1ed4b2 100644 --- a/Types/Win32/InfraredDevice.g.cs +++ b/Types/Win32/InfraredDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class InfraredDevice(ManagementObject ManagementObject) : CIM.InfraredController(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class InfraredDevice(ManagementObject ManagementObject) : /// public string? Manufacturer => (string)ManagementObject[nameof(Manufacturer)]; } -#nullable disable diff --git a/Types/Win32/Keyboard.g.cs b/Types/Win32/Keyboard.g.cs index 18babf2..7d45339 100644 --- a/Types/Win32/Keyboard.g.cs +++ b/Types/Win32/Keyboard.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/LoadOrderGroup.g.cs b/Types/Win32/LoadOrderGroup.g.cs index 37ed383..f537305 100644 --- a/Types/Win32/LoadOrderGroup.g.cs +++ b/Types/Win32/LoadOrderGroup.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LoadOrderGroup(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class LoadOrderGroup(ManagementObject ManagementObject) : /// public new string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/LoadOrderGroupServiceDependencies.g.cs b/Types/Win32/LoadOrderGroupServiceDependencies.g.cs index 4ff1148..967a7d5 100644 --- a/Types/Win32/LoadOrderGroupServiceDependencies.g.cs +++ b/Types/Win32/LoadOrderGroupServiceDependencies.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LoadOrderGroupServiceDependencies(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LoadOrderGroupServiceDependencies(ManagementObject M /// public new BaseService? Dependent => (BaseService)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/LoadOrderGroupServiceMembers.g.cs b/Types/Win32/LoadOrderGroupServiceMembers.g.cs index 34aa759..c51f7b4 100644 --- a/Types/Win32/LoadOrderGroupServiceMembers.g.cs +++ b/Types/Win32/LoadOrderGroupServiceMembers.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LoadOrderGroupServiceMembers(ManagementObject ManagementObject) : CIM.Component(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LoadOrderGroupServiceMembers(ManagementObject Manage /// public new BaseService? PartComponent => (BaseService)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/LoggedOnUser.g.cs b/Types/Win32/LoggedOnUser.g.cs index d97362c..e65d2c0 100644 --- a/Types/Win32/LoggedOnUser.g.cs +++ b/Types/Win32/LoggedOnUser.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LoggedOnUser(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LoggedOnUser(ManagementObject ManagementObject) : CI /// public new Account? Antecedent => (Account)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/Win32/LogicalDisk.g.cs b/Types/Win32/LogicalDisk.g.cs index 10961f6..2456b51 100644 --- a/Types/Win32/LogicalDisk.g.cs +++ b/Types/Win32/LogicalDisk.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogicalDisk(ManagementObject ManagementObject) : CIM.LogicalDisk(ManagementObject) { /// @@ -67,4 +66,3 @@ public partial record class LogicalDisk(ManagementObject ManagementObject) : CIM /// public string? VolumeSerialNumber => (string)ManagementObject[nameof(VolumeSerialNumber)]; } -#nullable disable diff --git a/Types/Win32/LogicalDiskRootDirectory.g.cs b/Types/Win32/LogicalDiskRootDirectory.g.cs index a032478..ffdaee4 100644 --- a/Types/Win32/LogicalDiskRootDirectory.g.cs +++ b/Types/Win32/LogicalDiskRootDirectory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogicalDiskRootDirectory(ManagementObject ManagementObject) : CIM.Component(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LogicalDiskRootDirectory(ManagementObject Management /// public new Directory? PartComponent => (Directory)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/LogicalDiskToPartition.g.cs b/Types/Win32/LogicalDiskToPartition.g.cs index acbe1b8..631917f 100644 --- a/Types/Win32/LogicalDiskToPartition.g.cs +++ b/Types/Win32/LogicalDiskToPartition.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogicalDiskToPartition(ManagementObject ManagementObject) : CIM.LogicalDiskBasedOnPartition(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LogicalDiskToPartition(ManagementObject ManagementOb /// public new LogicalDisk? Dependent => (LogicalDisk)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/LogicalProgramGroup.g.cs b/Types/Win32/LogicalProgramGroup.g.cs index 7ecd5a7..27c4d05 100644 --- a/Types/Win32/LogicalProgramGroup.g.cs +++ b/Types/Win32/LogicalProgramGroup.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogicalProgramGroup(ManagementObject ManagementObject) : ProgramGroupOrItem(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class LogicalProgramGroup(ManagementObject ManagementObjec /// public string? UserName => (string)ManagementObject[nameof(UserName)]; } -#nullable disable diff --git a/Types/Win32/LogicalProgramGroupDirectory.g.cs b/Types/Win32/LogicalProgramGroupDirectory.g.cs index 95b4233..0685a19 100644 --- a/Types/Win32/LogicalProgramGroupDirectory.g.cs +++ b/Types/Win32/LogicalProgramGroupDirectory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogicalProgramGroupDirectory(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LogicalProgramGroupDirectory(ManagementObject Manage /// public new Directory? Dependent => (Directory)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/LogicalProgramGroupItem.g.cs b/Types/Win32/LogicalProgramGroupItem.g.cs index 1aae0fb..e408d5a 100644 --- a/Types/Win32/LogicalProgramGroupItem.g.cs +++ b/Types/Win32/LogicalProgramGroupItem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogicalProgramGroupItem(ManagementObject ManagementObject) : ProgramGroupOrItem(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class LogicalProgramGroupItem(ManagementObject ManagementO /// public new string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/LogicalProgramGroupItemDataFile.g.cs b/Types/Win32/LogicalProgramGroupItemDataFile.g.cs index c6e2a02..5a9a20f 100644 --- a/Types/Win32/LogicalProgramGroupItemDataFile.g.cs +++ b/Types/Win32/LogicalProgramGroupItemDataFile.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogicalProgramGroupItemDataFile(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LogicalProgramGroupItemDataFile(ManagementObject Man /// public new CIM.DataFile? Dependent => (CIM.DataFile)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/LogonSession.g.cs b/Types/Win32/LogonSession.g.cs index c3244ef..0442edd 100644 --- a/Types/Win32/LogonSession.g.cs +++ b/Types/Win32/LogonSession.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogonSession(ManagementObject ManagementObject) : Session(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class LogonSession(ManagementObject ManagementObject) : Se /// public uint? LogonType => (uint?)ManagementObject[nameof(LogonType)]; } -#nullable disable diff --git a/Types/Win32/LogonSessionMappedDisk.g.cs b/Types/Win32/LogonSessionMappedDisk.g.cs index 218a713..eb52422 100644 --- a/Types/Win32/LogonSessionMappedDisk.g.cs +++ b/Types/Win32/LogonSessionMappedDisk.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class LogonSessionMappedDisk(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class LogonSessionMappedDisk(ManagementObject ManagementOb /// public new MappedLogicalDisk? Dependent => (MappedLogicalDisk)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/MappedLogicalDisk.g.cs b/Types/Win32/MappedLogicalDisk.g.cs index 7f9eb31..8a24a6c 100644 --- a/Types/Win32/MappedLogicalDisk.g.cs +++ b/Types/Win32/MappedLogicalDisk.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class MappedLogicalDisk(ManagementObject ManagementObject) : CIM.LogicalDisk(ManagementObject) { /// @@ -55,4 +54,3 @@ public partial record class MappedLogicalDisk(ManagementObject ManagementObject) /// public string? VolumeName => (string)ManagementObject[nameof(VolumeName)]; } -#nullable disable diff --git a/Types/Win32/MemoryArray.g.cs b/Types/Win32/MemoryArray.g.cs index 4a0b16f..abf1bb7 100644 --- a/Types/Win32/MemoryArray.g.cs +++ b/Types/Win32/MemoryArray.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/MemoryArrayLocation.g.cs b/Types/Win32/MemoryArrayLocation.g.cs index c65be26..6a71c9a 100644 --- a/Types/Win32/MemoryArrayLocation.g.cs +++ b/Types/Win32/MemoryArrayLocation.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class MemoryArrayLocation(ManagementObject ManagementObject) : CIM.Realizes(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class MemoryArrayLocation(ManagementObject ManagementObjec /// public new PhysicalMemoryArray? Antecedent => (PhysicalMemoryArray)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/Win32/MemoryDevice.g.cs b/Types/Win32/MemoryDevice.g.cs index c868fb5..fc6a529 100644 --- a/Types/Win32/MemoryDevice.g.cs +++ b/Types/Win32/MemoryDevice.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/MemoryDeviceArray.g.cs b/Types/Win32/MemoryDeviceArray.g.cs index 13bd9eb..922e2de 100644 --- a/Types/Win32/MemoryDeviceArray.g.cs +++ b/Types/Win32/MemoryDeviceArray.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class MemoryDeviceArray(ManagementObject ManagementObject) : CIM.Component(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class MemoryDeviceArray(ManagementObject ManagementObject) /// public new MemoryDevice? PartComponent => (MemoryDevice)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/MemoryDeviceLocation.g.cs b/Types/Win32/MemoryDeviceLocation.g.cs index 1d1a178..1223ffd 100644 --- a/Types/Win32/MemoryDeviceLocation.g.cs +++ b/Types/Win32/MemoryDeviceLocation.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class MemoryDeviceLocation(ManagementObject ManagementObject) : CIM.Realizes(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class MemoryDeviceLocation(ManagementObject ManagementObje /// public new PhysicalMemory? Antecedent => (PhysicalMemory)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/Win32/MethodParameterClass.g.cs b/Types/Win32/MethodParameterClass.g.cs index a2e22e7..01bed69 100644 --- a/Types/Win32/MethodParameterClass.g.cs +++ b/Types/Win32/MethodParameterClass.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/MotherboardDevice.g.cs b/Types/Win32/MotherboardDevice.g.cs index 63ea7af..fedc5dd 100644 --- a/Types/Win32/MotherboardDevice.g.cs +++ b/Types/Win32/MotherboardDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class MotherboardDevice(ManagementObject ManagementObject) : CIM.LogicalDevice(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class MotherboardDevice(ManagementObject ManagementObject) /// public string? SecondaryBusType => (string)ManagementObject[nameof(SecondaryBusType)]; } -#nullable disable diff --git a/Types/Win32/NetworkAdapter.g.cs b/Types/Win32/NetworkAdapter.g.cs index e3697e0..82cf860 100644 --- a/Types/Win32/NetworkAdapter.g.cs +++ b/Types/Win32/NetworkAdapter.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class NetworkAdapter(ManagementObject ManagementObject) : CIM.NetworkAdapter(ManagementObject) { public string? AdapterType => (string)ManagementObject[nameof(AdapterType)]; @@ -72,4 +71,3 @@ public partial record class NetworkAdapter(ManagementObject ManagementObject) : /// public DateTimeOffset? TimeOfLastReset => ManagementObject.GetDateTimePropertyValue(nameof(TimeOfLastReset)); } -#nullable disable diff --git a/Types/Win32/NetworkAdapterConfiguration.g.cs b/Types/Win32/NetworkAdapterConfiguration.g.cs index ddb3735..e9dc271 100644 --- a/Types/Win32/NetworkAdapterConfiguration.g.cs +++ b/Types/Win32/NetworkAdapterConfiguration.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class NetworkAdapterConfiguration(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -216,4 +215,3 @@ public partial record class NetworkAdapterConfiguration(ManagementObject Managem /// public string? WINSSecondaryServer => (string)ManagementObject[nameof(WINSSecondaryServer)]; } -#nullable disable diff --git a/Types/Win32/NetworkAdapterSetting.g.cs b/Types/Win32/NetworkAdapterSetting.g.cs index 48161eb..110d922 100644 --- a/Types/Win32/NetworkAdapterSetting.g.cs +++ b/Types/Win32/NetworkAdapterSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class NetworkAdapterSetting(ManagementObject ManagementObject) : DeviceSettings(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class NetworkAdapterSetting(ManagementObject ManagementObj /// public new NetworkAdapter? Element => (NetworkAdapter)ManagementObject[nameof(Element)]; } -#nullable disable diff --git a/Types/Win32/NetworkClient.g.cs b/Types/Win32/NetworkClient.g.cs index ff52aa0..68ea60a 100644 --- a/Types/Win32/NetworkClient.g.cs +++ b/Types/Win32/NetworkClient.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class NetworkClient(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class NetworkClient(ManagementObject ManagementObject) : C /// public new string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/NetworkConnection.g.cs b/Types/Win32/NetworkConnection.g.cs index 6f1f859..4b1f2c6 100644 --- a/Types/Win32/NetworkConnection.g.cs +++ b/Types/Win32/NetworkConnection.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class NetworkConnection(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -63,4 +62,3 @@ public partial record class NetworkConnection(ManagementObject ManagementObject) /// public string? UserName => (string)ManagementObject[nameof(UserName)]; } -#nullable disable diff --git a/Types/Win32/NetworkLoginProfile.g.cs b/Types/Win32/NetworkLoginProfile.g.cs index 475eaf6..bca9e6c 100644 --- a/Types/Win32/NetworkLoginProfile.g.cs +++ b/Types/Win32/NetworkLoginProfile.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class NetworkLoginProfile(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { public DateTimeOffset? AccountExpires => ManagementObject.GetDateTimePropertyValue(nameof(AccountExpires)); @@ -112,4 +111,3 @@ public partial record class NetworkLoginProfile(ManagementObject ManagementObjec /// public string? Workstations => (string)ManagementObject[nameof(Workstations)]; } -#nullable disable diff --git a/Types/Win32/NetworkProtocol.g.cs b/Types/Win32/NetworkProtocol.g.cs index 1b353ec..fcd7224 100644 --- a/Types/Win32/NetworkProtocol.g.cs +++ b/Types/Win32/NetworkProtocol.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class NetworkProtocol(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -87,4 +86,3 @@ public partial record class NetworkProtocol(ManagementObject ManagementObject) : /// public bool? SupportsQualityofService => (bool?)ManagementObject[nameof(SupportsQualityofService)]; } -#nullable disable diff --git a/Types/Win32/OSRecoveryConfiguration.g.cs b/Types/Win32/OSRecoveryConfiguration.g.cs index 147ce79..b847264 100644 --- a/Types/Win32/OSRecoveryConfiguration.g.cs +++ b/Types/Win32/OSRecoveryConfiguration.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class OSRecoveryConfiguration(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -59,4 +58,3 @@ public partial record class OSRecoveryConfiguration(ManagementObject ManagementO /// public bool? WriteToSystemLog => (bool?)ManagementObject[nameof(WriteToSystemLog)]; } -#nullable disable diff --git a/Types/Win32/OnBoardDevice.g.cs b/Types/Win32/OnBoardDevice.g.cs index 0b7a358..4696a11 100644 --- a/Types/Win32/OnBoardDevice.g.cs +++ b/Types/Win32/OnBoardDevice.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/OperatingSystem.g.cs b/Types/Win32/OperatingSystem.g.cs index 5c04da8..80b2715 100644 --- a/Types/Win32/OperatingSystem.g.cs +++ b/Types/Win32/OperatingSystem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class OperatingSystem(ManagementObject ManagementObject) : CIM.OperatingSystem(ManagementObject) { /// @@ -166,4 +165,3 @@ public partial record class OperatingSystem(ManagementObject ManagementObject) : /// public byte? QuantumType => (byte?)ManagementObject[nameof(QuantumType)]; } -#nullable disable diff --git a/Types/Win32/OperatingSystemAutochkSetting.g.cs b/Types/Win32/OperatingSystemAutochkSetting.g.cs index 4039d6e..0cb63d0 100644 --- a/Types/Win32/OperatingSystemAutochkSetting.g.cs +++ b/Types/Win32/OperatingSystemAutochkSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class OperatingSystemAutochkSetting(ManagementObject ManagementObject) : CIM.ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class OperatingSystemAutochkSetting(ManagementObject Manag /// public new AutochkSetting? Setting => (AutochkSetting)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/OperatingSystemQFE.g.cs b/Types/Win32/OperatingSystemQFE.g.cs index 386974e..76b200e 100644 --- a/Types/Win32/OperatingSystemQFE.g.cs +++ b/Types/Win32/OperatingSystemQFE.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class OperatingSystemQFE(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class OperatingSystemQFE(ManagementObject ManagementObject /// public new QuickFixEngineering? Dependent => (QuickFixEngineering)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/OptionalFeature.g.cs b/Types/Win32/OptionalFeature.g.cs index bed19e3..fbbf42e 100644 --- a/Types/Win32/OptionalFeature.g.cs +++ b/Types/Win32/OptionalFeature.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class OptionalFeature(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -20,4 +19,3 @@ public partial record class OptionalFeature(ManagementObject ManagementObject) : public new string? Name => (string)ManagementObject[nameof(Name)]; public uint? InstallState => (uint?)ManagementObject[nameof(InstallState)]; } -#nullable disable diff --git a/Types/Win32/PCMCIAController.g.cs b/Types/Win32/PCMCIAController.g.cs index 7e17fe9..4165db7 100644 --- a/Types/Win32/PCMCIAController.g.cs +++ b/Types/Win32/PCMCIAController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PCMCIAController(ManagementObject ManagementObject) : CIM.PCMCIAController(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PCMCIAController(ManagementObject ManagementObject) /// public new string? DeviceID => (string)ManagementObject[nameof(DeviceID)]; } -#nullable disable diff --git a/Types/Win32/POTSModem.g.cs b/Types/Win32/POTSModem.g.cs index 65e9c56..c020684 100644 --- a/Types/Win32/POTSModem.g.cs +++ b/Types/Win32/POTSModem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class POTSModem(ManagementObject ManagementObject) : CIM.PotsModem(ManagementObject) { /// @@ -187,4 +186,3 @@ public partial record class POTSModem(ManagementObject ManagementObject) : CIM.P /// public string? VoiceSwitchFeature => (string)ManagementObject[nameof(VoiceSwitchFeature)]; } -#nullable disable diff --git a/Types/Win32/POTSModemToSerialPort.g.cs b/Types/Win32/POTSModemToSerialPort.g.cs index a375c89..89635b2 100644 --- a/Types/Win32/POTSModemToSerialPort.g.cs +++ b/Types/Win32/POTSModemToSerialPort.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class POTSModemToSerialPort(ManagementObject ManagementObject) : CIM.ControlledBy(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class POTSModemToSerialPort(ManagementObject ManagementObj /// public new SerialPort? Antecedent => (SerialPort)ManagementObject[nameof(Antecedent)]; } -#nullable disable diff --git a/Types/Win32/PageFile.g.cs b/Types/Win32/PageFile.g.cs index 6f29f6b..7c26b0b 100644 --- a/Types/Win32/PageFile.g.cs +++ b/Types/Win32/PageFile.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PageFile(ManagementObject ManagementObject) : CIM.DataFile(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class PageFile(ManagementObject ManagementObject) : CIM.Da /// public new string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/PageFileElementSetting.g.cs b/Types/Win32/PageFileElementSetting.g.cs index b233e67..e104a3d 100644 --- a/Types/Win32/PageFileElementSetting.g.cs +++ b/Types/Win32/PageFileElementSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PageFileElementSetting(ManagementObject ManagementObject) : CIM.ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class PageFileElementSetting(ManagementObject ManagementOb /// public new PageFileSetting? Setting => (PageFileSetting)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/PageFileSetting.g.cs b/Types/Win32/PageFileSetting.g.cs index fc12837..261a3d4 100644 --- a/Types/Win32/PageFileSetting.g.cs +++ b/Types/Win32/PageFileSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PageFileSetting(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class PageFileSetting(ManagementObject ManagementObject) : /// public string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/PageFileUsage.g.cs b/Types/Win32/PageFileUsage.g.cs index 52b6fd8..6a9f38d 100644 --- a/Types/Win32/PageFileUsage.g.cs +++ b/Types/Win32/PageFileUsage.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PageFileUsage(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class PageFileUsage(ManagementObject ManagementObject) : C /// public bool? TempPageFile => (bool?)ManagementObject[nameof(TempPageFile)]; } -#nullable disable diff --git a/Types/Win32/ParallelPort.g.cs b/Types/Win32/ParallelPort.g.cs index 91b7c45..88deaf1 100644 --- a/Types/Win32/ParallelPort.g.cs +++ b/Types/Win32/ParallelPort.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/Perf.g.cs b/Types/Win32/Perf.g.cs index 8e4138d..eb04078 100644 --- a/Types/Win32/Perf.g.cs +++ b/Types/Win32/Perf.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PerfFormattedData.g.cs b/Types/Win32/PerfFormattedData.g.cs index b6655b2..de4cfeb 100644 --- a/Types/Win32/PerfFormattedData.g.cs +++ b/Types/Win32/PerfFormattedData.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PerfRawData.g.cs b/Types/Win32/PerfRawData.g.cs index cf7e339..544b81c 100644 --- a/Types/Win32/PerfRawData.g.cs +++ b/Types/Win32/PerfRawData.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PhysicalMemory.g.cs b/Types/Win32/PhysicalMemory.g.cs index 648224c..4d89e65 100644 --- a/Types/Win32/PhysicalMemory.g.cs +++ b/Types/Win32/PhysicalMemory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PhysicalMemory(ManagementObject ManagementObject) : CIM.PhysicalMemory(ManagementObject) { /// @@ -47,4 +46,3 @@ public partial record class PhysicalMemory(ManagementObject ManagementObject) : /// public ushort? TypeDetail => (ushort?)ManagementObject[nameof(TypeDetail)]; } -#nullable disable diff --git a/Types/Win32/PhysicalMemoryArray.g.cs b/Types/Win32/PhysicalMemoryArray.g.cs index 047da4c..fb83ebc 100644 --- a/Types/Win32/PhysicalMemoryArray.g.cs +++ b/Types/Win32/PhysicalMemoryArray.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PhysicalMemoryLocation.g.cs b/Types/Win32/PhysicalMemoryLocation.g.cs index dc4340f..661d4f4 100644 --- a/Types/Win32/PhysicalMemoryLocation.g.cs +++ b/Types/Win32/PhysicalMemoryLocation.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PhysicalMemoryLocation(ManagementObject ManagementObject) : CIM.PackagedComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class PhysicalMemoryLocation(ManagementObject ManagementOb /// public new PhysicalMemoryArray? GroupComponent => (PhysicalMemoryArray)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/Win32/PnPAllocatedResource.g.cs b/Types/Win32/PnPAllocatedResource.g.cs index 8f627f3..ac22733 100644 --- a/Types/Win32/PnPAllocatedResource.g.cs +++ b/Types/Win32/PnPAllocatedResource.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevice.g.cs b/Types/Win32/PnPDevice.g.cs index 9a415f1..110ae90 100644 --- a/Types/Win32/PnPDevice.g.cs +++ b/Types/Win32/PnPDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevice(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class PnPDevice(ManagementObject ManagementObject) : Base. /// public PnPEntity? SystemElement => (PnPEntity)ManagementObject[nameof(SystemElement)]; } -#nullable disable diff --git a/Types/Win32/PnPDeviceProperty.g.cs b/Types/Win32/PnPDeviceProperty.g.cs index 04b0e38..5a89617 100644 --- a/Types/Win32/PnPDeviceProperty.g.cs +++ b/Types/Win32/PnPDeviceProperty.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDeviceProperty(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class PnPDeviceProperty(ManagementObject ManagementObject) /// public string? DeviceID => (string)ManagementObject[nameof(DeviceID)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyBinary.g.cs b/Types/Win32/PnPDevicePropertyBinary.g.cs index d019044..85f2290 100644 --- a/Types/Win32/PnPDevicePropertyBinary.g.cs +++ b/Types/Win32/PnPDevicePropertyBinary.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyBinary(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyBinary(ManagementObject ManagementO /// public byte[]? Data => (byte[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyBoolean.g.cs b/Types/Win32/PnPDevicePropertyBoolean.g.cs index d96c865..b054702 100644 --- a/Types/Win32/PnPDevicePropertyBoolean.g.cs +++ b/Types/Win32/PnPDevicePropertyBoolean.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertyBooleanArray.g.cs b/Types/Win32/PnPDevicePropertyBooleanArray.g.cs index 5922d65..7293281 100644 --- a/Types/Win32/PnPDevicePropertyBooleanArray.g.cs +++ b/Types/Win32/PnPDevicePropertyBooleanArray.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyBooleanArray(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyBooleanArray(ManagementObject Manag /// public bool[]? Data => (bool[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyDateTime.g.cs b/Types/Win32/PnPDevicePropertyDateTime.g.cs index 67cb699..5d7a4a8 100644 --- a/Types/Win32/PnPDevicePropertyDateTime.g.cs +++ b/Types/Win32/PnPDevicePropertyDateTime.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertyDateTimeArray.g.cs b/Types/Win32/PnPDevicePropertyDateTimeArray.g.cs index 7f5e8ab..3d98345 100644 --- a/Types/Win32/PnPDevicePropertyDateTimeArray.g.cs +++ b/Types/Win32/PnPDevicePropertyDateTimeArray.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyDateTimeArray(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyDateTimeArray(ManagementObject Mana /// public DateTimeOffset[]? Data => ManagementObject.GetDateTimePropertyValues(nameof(Data)); } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyReal32.g.cs b/Types/Win32/PnPDevicePropertyReal32.g.cs index a5742d2..1afb8e3 100644 --- a/Types/Win32/PnPDevicePropertyReal32.g.cs +++ b/Types/Win32/PnPDevicePropertyReal32.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertyReal32Array.g.cs b/Types/Win32/PnPDevicePropertyReal32Array.g.cs index 8ec65e7..b8d2d8e 100644 --- a/Types/Win32/PnPDevicePropertyReal32Array.g.cs +++ b/Types/Win32/PnPDevicePropertyReal32Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyReal32Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyReal32Array(ManagementObject Manage /// public float[]? Data => (float[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyReal64.g.cs b/Types/Win32/PnPDevicePropertyReal64.g.cs index baa5354..3976f06 100644 --- a/Types/Win32/PnPDevicePropertyReal64.g.cs +++ b/Types/Win32/PnPDevicePropertyReal64.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertyReal64Array.g.cs b/Types/Win32/PnPDevicePropertyReal64Array.g.cs index 59586e4..f7ccd41 100644 --- a/Types/Win32/PnPDevicePropertyReal64Array.g.cs +++ b/Types/Win32/PnPDevicePropertyReal64Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyReal64Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyReal64Array(ManagementObject Manage /// public double[]? Data => (double[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertySecurityDescriptor.g.cs b/Types/Win32/PnPDevicePropertySecurityDescriptor.g.cs index 2559e31..dd90fa5 100644 --- a/Types/Win32/PnPDevicePropertySecurityDescriptor.g.cs +++ b/Types/Win32/PnPDevicePropertySecurityDescriptor.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertySecurityDescriptor(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertySecurityDescriptor(ManagementObject /// public SecurityDescriptor? Data => (SecurityDescriptor)ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertySecurityDescriptorArray.g.cs b/Types/Win32/PnPDevicePropertySecurityDescriptorArray.g.cs index cbbee65..609b45a 100644 --- a/Types/Win32/PnPDevicePropertySecurityDescriptorArray.g.cs +++ b/Types/Win32/PnPDevicePropertySecurityDescriptorArray.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertySecurityDescriptorArray(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertySecurityDescriptorArray(ManagementO /// public SecurityDescriptor[]? Data => (SecurityDescriptor[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertySint16.g.cs b/Types/Win32/PnPDevicePropertySint16.g.cs index be40dd8..05e1d02 100644 --- a/Types/Win32/PnPDevicePropertySint16.g.cs +++ b/Types/Win32/PnPDevicePropertySint16.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertySint16Array.g.cs b/Types/Win32/PnPDevicePropertySint16Array.g.cs index a193669..581b318 100644 --- a/Types/Win32/PnPDevicePropertySint16Array.g.cs +++ b/Types/Win32/PnPDevicePropertySint16Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertySint16Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertySint16Array(ManagementObject Manage /// public short[]? Data => (short[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertySint32.g.cs b/Types/Win32/PnPDevicePropertySint32.g.cs index c417274..7d6fdb7 100644 --- a/Types/Win32/PnPDevicePropertySint32.g.cs +++ b/Types/Win32/PnPDevicePropertySint32.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertySint32Array.g.cs b/Types/Win32/PnPDevicePropertySint32Array.g.cs index 94a771c..87a582e 100644 --- a/Types/Win32/PnPDevicePropertySint32Array.g.cs +++ b/Types/Win32/PnPDevicePropertySint32Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertySint32Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertySint32Array(ManagementObject Manage /// public int[]? Data => (int[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertySint64.g.cs b/Types/Win32/PnPDevicePropertySint64.g.cs index d88cd9c..04bcf95 100644 --- a/Types/Win32/PnPDevicePropertySint64.g.cs +++ b/Types/Win32/PnPDevicePropertySint64.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertySint64Array.g.cs b/Types/Win32/PnPDevicePropertySint64Array.g.cs index c2972a6..759730c 100644 --- a/Types/Win32/PnPDevicePropertySint64Array.g.cs +++ b/Types/Win32/PnPDevicePropertySint64Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertySint64Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertySint64Array(ManagementObject Manage /// public long[]? Data => (long[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertySint8.g.cs b/Types/Win32/PnPDevicePropertySint8.g.cs index 19656a6..deef2ad 100644 --- a/Types/Win32/PnPDevicePropertySint8.g.cs +++ b/Types/Win32/PnPDevicePropertySint8.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertySint8Array.g.cs b/Types/Win32/PnPDevicePropertySint8Array.g.cs index de62e39..1ee09b8 100644 --- a/Types/Win32/PnPDevicePropertySint8Array.g.cs +++ b/Types/Win32/PnPDevicePropertySint8Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertySint8Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertySint8Array(ManagementObject Managem /// public sbyte[]? Data => (sbyte[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyString.g.cs b/Types/Win32/PnPDevicePropertyString.g.cs index 5de6a47..7114fa6 100644 --- a/Types/Win32/PnPDevicePropertyString.g.cs +++ b/Types/Win32/PnPDevicePropertyString.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyString(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyString(ManagementObject ManagementO /// public string? Data => (string)ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyStringArray.g.cs b/Types/Win32/PnPDevicePropertyStringArray.g.cs index 4a61206..1e0c491 100644 --- a/Types/Win32/PnPDevicePropertyStringArray.g.cs +++ b/Types/Win32/PnPDevicePropertyStringArray.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyStringArray(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyStringArray(ManagementObject Manage /// public string[]? Data => (string[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyUint16.g.cs b/Types/Win32/PnPDevicePropertyUint16.g.cs index b377a89..ca0a086 100644 --- a/Types/Win32/PnPDevicePropertyUint16.g.cs +++ b/Types/Win32/PnPDevicePropertyUint16.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertyUint16Array.g.cs b/Types/Win32/PnPDevicePropertyUint16Array.g.cs index 501fa07..4de3029 100644 --- a/Types/Win32/PnPDevicePropertyUint16Array.g.cs +++ b/Types/Win32/PnPDevicePropertyUint16Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyUint16Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyUint16Array(ManagementObject Manage /// public ushort[]? Data => (ushort[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyUint32.g.cs b/Types/Win32/PnPDevicePropertyUint32.g.cs index 56aab17..025b59d 100644 --- a/Types/Win32/PnPDevicePropertyUint32.g.cs +++ b/Types/Win32/PnPDevicePropertyUint32.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertyUint32Array.g.cs b/Types/Win32/PnPDevicePropertyUint32Array.g.cs index 12a1114..6ae5d80 100644 --- a/Types/Win32/PnPDevicePropertyUint32Array.g.cs +++ b/Types/Win32/PnPDevicePropertyUint32Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyUint32Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyUint32Array(ManagementObject Manage /// public uint[]? Data => (uint[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyUint64.g.cs b/Types/Win32/PnPDevicePropertyUint64.g.cs index ef847e4..ce52d01 100644 --- a/Types/Win32/PnPDevicePropertyUint64.g.cs +++ b/Types/Win32/PnPDevicePropertyUint64.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPDevicePropertyUint64Array.g.cs b/Types/Win32/PnPDevicePropertyUint64Array.g.cs index bf262d7..967c910 100644 --- a/Types/Win32/PnPDevicePropertyUint64Array.g.cs +++ b/Types/Win32/PnPDevicePropertyUint64Array.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPDevicePropertyUint64Array(ManagementObject ManagementObject) : PnPDeviceProperty(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class PnPDevicePropertyUint64Array(ManagementObject Manage /// public ulong[]? Data => (ulong[])ManagementObject[nameof(Data)]; } -#nullable disable diff --git a/Types/Win32/PnPDevicePropertyUint8.g.cs b/Types/Win32/PnPDevicePropertyUint8.g.cs index 91ffa3b..a4efac0 100644 --- a/Types/Win32/PnPDevicePropertyUint8.g.cs +++ b/Types/Win32/PnPDevicePropertyUint8.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PnPEntity.g.cs b/Types/Win32/PnPEntity.g.cs index 2259ce5..0490731 100644 --- a/Types/Win32/PnPEntity.g.cs +++ b/Types/Win32/PnPEntity.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PnPEntity(ManagementObject ManagementObject) : CIM.LogicalDevice(ManagementObject) { /// @@ -39,4 +38,3 @@ public partial record class PnPEntity(ManagementObject ManagementObject) : CIM.L /// public string? Service => (string)ManagementObject[nameof(Service)]; } -#nullable disable diff --git a/Types/Win32/PointingDevice.g.cs b/Types/Win32/PointingDevice.g.cs index 1fe17a9..45a479b 100644 --- a/Types/Win32/PointingDevice.g.cs +++ b/Types/Win32/PointingDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PointingDevice(ManagementObject ManagementObject) : CIM.PointingDevice(ManagementObject) { /// @@ -47,4 +46,3 @@ public partial record class PointingDevice(ManagementObject ManagementObject) : /// public uint? Synch => (uint?)ManagementObject[nameof(Synch)]; } -#nullable disable diff --git a/Types/Win32/PortConnector.g.cs b/Types/Win32/PortConnector.g.cs index 4f91d57..4f01324 100644 --- a/Types/Win32/PortConnector.g.cs +++ b/Types/Win32/PortConnector.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PortConnector(ManagementObject ManagementObject) : CIM.PhysicalConnector(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class PortConnector(ManagementObject ManagementObject) : C /// public ushort? PortType => (ushort?)ManagementObject[nameof(PortType)]; } -#nullable disable diff --git a/Types/Win32/PortResource.g.cs b/Types/Win32/PortResource.g.cs index fbe53ef..7191685 100644 --- a/Types/Win32/PortResource.g.cs +++ b/Types/Win32/PortResource.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PortableBattery.g.cs b/Types/Win32/PortableBattery.g.cs index 2dca28a..f753d94 100644 --- a/Types/Win32/PortableBattery.g.cs +++ b/Types/Win32/PortableBattery.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PortableBattery(ManagementObject ManagementObject) : CIM.Battery(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class PortableBattery(ManagementObject ManagementObject) : /// public ushort? MaxBatteryError => (ushort?)ManagementObject[nameof(MaxBatteryError)]; } -#nullable disable diff --git a/Types/Win32/PrintJob.g.cs b/Types/Win32/PrintJob.g.cs index d7cd616..5dbdd81 100644 --- a/Types/Win32/PrintJob.g.cs +++ b/Types/Win32/PrintJob.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PrintJob(ManagementObject ManagementObject) : CIM.Job(ManagementObject) { /// @@ -71,4 +70,3 @@ public partial record class PrintJob(ManagementObject ManagementObject) : CIM.Jo /// public uint? TotalPages => (uint?)ManagementObject[nameof(TotalPages)]; } -#nullable disable diff --git a/Types/Win32/Printer.g.cs b/Types/Win32/Printer.g.cs index 1c8d537..85ca5f5 100644 --- a/Types/Win32/Printer.g.cs +++ b/Types/Win32/Printer.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Printer(ManagementObject ManagementObject) : CIM.Printer(ManagementObject) { /// @@ -145,4 +144,3 @@ public partial record class Printer(ManagementObject ManagementObject) : CIM.Pri /// public bool? WorkOffline => (bool?)ManagementObject[nameof(WorkOffline)]; } -#nullable disable diff --git a/Types/Win32/PrinterConfiguration.g.cs b/Types/Win32/PrinterConfiguration.g.cs index 312e5b4..6003c7f 100644 --- a/Types/Win32/PrinterConfiguration.g.cs +++ b/Types/Win32/PrinterConfiguration.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PrinterConfiguration(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -131,4 +130,3 @@ public partial record class PrinterConfiguration(ManagementObject ManagementObje /// public uint? YResolution => (uint?)ManagementObject[nameof(YResolution)]; } -#nullable disable diff --git a/Types/Win32/PrinterController.g.cs b/Types/Win32/PrinterController.g.cs index aa2b8e6..1491660 100644 --- a/Types/Win32/PrinterController.g.cs +++ b/Types/Win32/PrinterController.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PrinterDriver.g.cs b/Types/Win32/PrinterDriver.g.cs index 5b5e88e..4cf44cc 100644 --- a/Types/Win32/PrinterDriver.g.cs +++ b/Types/Win32/PrinterDriver.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PrinterDriver(ManagementObject ManagementObject) : CIM.Service(ManagementObject) { /// @@ -59,4 +58,3 @@ public partial record class PrinterDriver(ManagementObject ManagementObject) : C /// public ushort? Version => (ushort?)ManagementObject[nameof(Version)]; } -#nullable disable diff --git a/Types/Win32/PrinterDriverDll.g.cs b/Types/Win32/PrinterDriverDll.g.cs index 3a41421..146a264 100644 --- a/Types/Win32/PrinterDriverDll.g.cs +++ b/Types/Win32/PrinterDriverDll.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PrinterSetting.g.cs b/Types/Win32/PrinterSetting.g.cs index 5cd55df..4d8770c 100644 --- a/Types/Win32/PrinterSetting.g.cs +++ b/Types/Win32/PrinterSetting.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/PrinterShare.g.cs b/Types/Win32/PrinterShare.g.cs index 1840e4b..8d07fd2 100644 --- a/Types/Win32/PrinterShare.g.cs +++ b/Types/Win32/PrinterShare.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PrinterShare(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class PrinterShare(ManagementObject ManagementObject) : CI /// public new Share? Dependent => (Share)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/PrivilegesStatus.g.cs b/Types/Win32/PrivilegesStatus.g.cs index b18522f..877a043 100644 --- a/Types/Win32/PrivilegesStatus.g.cs +++ b/Types/Win32/PrivilegesStatus.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class PrivilegesStatus(ManagementObject ManagementObject) : Base._ExtendedStatus(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class PrivilegesStatus(ManagementObject ManagementObject) /// public string[]? PrivilegesRequired => (string[])ManagementObject[nameof(PrivilegesRequired)]; } -#nullable disable diff --git a/Types/Win32/Process.g.cs b/Types/Win32/Process.g.cs index 324dc21..cd69ee1 100644 --- a/Types/Win32/Process.g.cs +++ b/Types/Win32/Process.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Process(ManagementObject ManagementObject) : CIM.Process(ManagementObject) { /// @@ -131,4 +130,3 @@ public partial record class Process(ManagementObject ManagementObject) : CIM.Pro /// public ulong? WriteTransferCount => (ulong?)ManagementObject[nameof(WriteTransferCount)]; } -#nullable disable diff --git a/Types/Win32/ProcessStartup.g.cs b/Types/Win32/ProcessStartup.g.cs index 6f20829..0215fb6 100644 --- a/Types/Win32/ProcessStartup.g.cs +++ b/Types/Win32/ProcessStartup.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ProcessStartup(ManagementObject ManagementObject) : MethodParameterClass(ManagementObject) { /// @@ -67,4 +66,3 @@ public partial record class ProcessStartup(ManagementObject ManagementObject) : /// public uint? YSize => (uint?)ManagementObject[nameof(YSize)]; } -#nullable disable diff --git a/Types/Win32/Processor.g.cs b/Types/Win32/Processor.g.cs index 96325a0..ec82c32 100644 --- a/Types/Win32/Processor.g.cs +++ b/Types/Win32/Processor.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Processor(ManagementObject ManagementObject) : CIM.Processor(ManagementObject) { public ushort? Architecture => (ushort?)ManagementObject[nameof(Architecture)]; @@ -38,4 +37,3 @@ public partial record class Processor(ManagementObject ManagementObject) : CIM.P public bool? VMMonitorModeExtensions => (bool?)ManagementObject[nameof(VMMonitorModeExtensions)]; public uint? VoltageCaps => (uint?)ManagementObject[nameof(VoltageCaps)]; } -#nullable disable diff --git a/Types/Win32/ProgramGroupContents.g.cs b/Types/Win32/ProgramGroupContents.g.cs index d4f78b7..ff26f60 100644 --- a/Types/Win32/ProgramGroupContents.g.cs +++ b/Types/Win32/ProgramGroupContents.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ProgramGroupContents(ManagementObject ManagementObject) : CIM.Component(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ProgramGroupContents(ManagementObject ManagementObje /// public new ProgramGroupOrItem? PartComponent => (ProgramGroupOrItem)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/ProgramGroupOrItem.g.cs b/Types/Win32/ProgramGroupOrItem.g.cs index 2d0f8a1..ebb8463 100644 --- a/Types/Win32/ProgramGroupOrItem.g.cs +++ b/Types/Win32/ProgramGroupOrItem.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/ProtocolBinding.g.cs b/Types/Win32/ProtocolBinding.g.cs index 0722742..6cd2801 100644 --- a/Types/Win32/ProtocolBinding.g.cs +++ b/Types/Win32/ProtocolBinding.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ProtocolBinding(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -23,4 +22,3 @@ public partial record class ProtocolBinding(ManagementObject ManagementObject) : /// public NetworkAdapter? Device => (NetworkAdapter)ManagementObject[nameof(Device)]; } -#nullable disable diff --git a/Types/Win32/QuickFixEngineering.g.cs b/Types/Win32/QuickFixEngineering.g.cs index c42aff4..061513f 100644 --- a/Types/Win32/QuickFixEngineering.g.cs +++ b/Types/Win32/QuickFixEngineering.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class QuickFixEngineering(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -35,4 +34,3 @@ public partial record class QuickFixEngineering(ManagementObject ManagementObjec /// public string? ServicePackInEffect => (string)ManagementObject[nameof(ServicePackInEffect)]; } -#nullable disable diff --git a/Types/Win32/Refrigeration.g.cs b/Types/Win32/Refrigeration.g.cs index c4e0a9e..665fb8f 100644 --- a/Types/Win32/Refrigeration.g.cs +++ b/Types/Win32/Refrigeration.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/Registry.g.cs b/Types/Win32/Registry.g.cs index 428919a..0086c17 100644 --- a/Types/Win32/Registry.g.cs +++ b/Types/Win32/Registry.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Registry(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class Registry(ManagementObject ManagementObject) : CIM.Lo /// public uint? ProposedSize => (uint?)ManagementObject[nameof(ProposedSize)]; } -#nullable disable diff --git a/Types/Win32/SCSIController.g.cs b/Types/Win32/SCSIController.g.cs index a984ba3..b82b0b1 100644 --- a/Types/Win32/SCSIController.g.cs +++ b/Types/Win32/SCSIController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SCSIController(ManagementObject ManagementObject) : CIM.SCSIController(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class SCSIController(ManagementObject ManagementObject) : /// public string? Manufacturer => (string)ManagementObject[nameof(Manufacturer)]; } -#nullable disable diff --git a/Types/Win32/SCSIControllerDevice.g.cs b/Types/Win32/SCSIControllerDevice.g.cs index ab24b70..4812e86 100644 --- a/Types/Win32/SCSIControllerDevice.g.cs +++ b/Types/Win32/SCSIControllerDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SCSIControllerDevice(ManagementObject ManagementObject) : CIM.ControlledBy(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SCSIControllerDevice(ManagementObject ManagementObje /// public new CIM.LogicalDevice? Dependent => (CIM.LogicalDevice)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/SMBIOSMemory.g.cs b/Types/Win32/SMBIOSMemory.g.cs index 60007ce..bfad773 100644 --- a/Types/Win32/SMBIOSMemory.g.cs +++ b/Types/Win32/SMBIOSMemory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SMBIOSMemory(ManagementObject ManagementObject) : CIM.StorageExtent(ManagementObject) { /// @@ -67,4 +66,3 @@ public partial record class SMBIOSMemory(ManagementObject ManagementObject) : CI /// public bool? SystemLevelAddress => (bool?)ManagementObject[nameof(SystemLevelAddress)]; } -#nullable disable diff --git a/Types/Win32/ScheduledJob.g.cs b/Types/Win32/ScheduledJob.g.cs index 4f11e69..327999a 100644 --- a/Types/Win32/ScheduledJob.g.cs +++ b/Types/Win32/ScheduledJob.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ScheduledJob(ManagementObject ManagementObject) : CIM.Job(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class ScheduledJob(ManagementObject ManagementObject) : CI /// public new DateTimeOffset? StartTime => ManagementObject.GetDateTimePropertyValue(nameof(StartTime)); } -#nullable disable diff --git a/Types/Win32/SecurityDescriptor.g.cs b/Types/Win32/SecurityDescriptor.g.cs index b73fa06..251974f 100644 --- a/Types/Win32/SecurityDescriptor.g.cs +++ b/Types/Win32/SecurityDescriptor.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SecurityDescriptor(ManagementObject ManagementObject) : Base._SecurityDescriptor(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class SecurityDescriptor(ManagementObject ManagementObject /// public new ACE[]? SACL => (ACE[])ManagementObject[nameof(SACL)]; } -#nullable disable diff --git a/Types/Win32/SerialPort.g.cs b/Types/Win32/SerialPort.g.cs index 89dc992..cbc5565 100644 --- a/Types/Win32/SerialPort.g.cs +++ b/Types/Win32/SerialPort.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SerialPort(ManagementObject ManagementObject) : CIM.SerialController(ManagementObject) { /// @@ -99,4 +98,3 @@ public partial record class SerialPort(ManagementObject ManagementObject) : CIM. /// public bool? SupportsXOnXOffSet => (bool?)ManagementObject[nameof(SupportsXOnXOffSet)]; } -#nullable disable diff --git a/Types/Win32/SerialPortConfiguration.g.cs b/Types/Win32/SerialPortConfiguration.g.cs index 5c88607..70f7976 100644 --- a/Types/Win32/SerialPortConfiguration.g.cs +++ b/Types/Win32/SerialPortConfiguration.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SerialPortConfiguration(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -115,4 +114,3 @@ public partial record class SerialPortConfiguration(ManagementObject ManagementO /// public uint? XOnXOffOutFlowControl => (uint?)ManagementObject[nameof(XOnXOffOutFlowControl)]; } -#nullable disable diff --git a/Types/Win32/SerialPortSetting.g.cs b/Types/Win32/SerialPortSetting.g.cs index 3412e96..63b7f98 100644 --- a/Types/Win32/SerialPortSetting.g.cs +++ b/Types/Win32/SerialPortSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SerialPortSetting(ManagementObject ManagementObject) : DeviceSettings(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SerialPortSetting(ManagementObject ManagementObject) /// public new SerialPort? Element => (SerialPort)ManagementObject[nameof(Element)]; } -#nullable disable diff --git a/Types/Win32/Service.g.cs b/Types/Win32/Service.g.cs index aa53b1c..cb704f1 100644 --- a/Types/Win32/Service.g.cs +++ b/Types/Win32/Service.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Service(ManagementObject ManagementObject) : BaseService(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class Service(ManagementObject ManagementObject) : BaseSer /// public uint? WaitHint => (uint?)ManagementObject[nameof(WaitHint)]; } -#nullable disable diff --git a/Types/Win32/Session.g.cs b/Types/Win32/Session.g.cs index 0df6827..23233bb 100644 --- a/Types/Win32/Session.g.cs +++ b/Types/Win32/Session.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/SessionProcess.g.cs b/Types/Win32/SessionProcess.g.cs index 7e6d5ba..2413004 100644 --- a/Types/Win32/SessionProcess.g.cs +++ b/Types/Win32/SessionProcess.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SessionProcess(ManagementObject ManagementObject) : SessionResource(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SessionProcess(ManagementObject ManagementObject) : /// public new Process? Dependent => (Process)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/SessionResource.g.cs b/Types/Win32/SessionResource.g.cs index 9b61a75..7491543 100644 --- a/Types/Win32/SessionResource.g.cs +++ b/Types/Win32/SessionResource.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SessionResource(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SessionResource(ManagementObject ManagementObject) : /// public new Session? Dependent => (Session)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/Share.g.cs b/Types/Win32/Share.g.cs index 0f5af9a..916bb86 100644 --- a/Types/Win32/Share.g.cs +++ b/Types/Win32/Share.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Share(ManagementObject ManagementObject) : CIM.LogicalElement(ManagementObject) { /// @@ -32,4 +31,3 @@ public partial record class Share(ManagementObject ManagementObject) : CIM.Logic public string? Path => (string)ManagementObject[nameof(Path)]; public uint? Type => (uint?)ManagementObject[nameof(Type)]; } -#nullable disable diff --git a/Types/Win32/ShareToDirectory.g.cs b/Types/Win32/ShareToDirectory.g.cs index 28c233c..7c72700 100644 --- a/Types/Win32/ShareToDirectory.g.cs +++ b/Types/Win32/ShareToDirectory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ShareToDirectory(ManagementObject ManagementObject) : Base._Object(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class ShareToDirectory(ManagementObject ManagementObject) /// public CIM.Directory? SharedElement => (CIM.Directory)ManagementObject[nameof(SharedElement)]; } -#nullable disable diff --git a/Types/Win32/ShortcutFile.g.cs b/Types/Win32/ShortcutFile.g.cs index 99b126f..b21336f 100644 --- a/Types/Win32/ShortcutFile.g.cs +++ b/Types/Win32/ShortcutFile.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class ShortcutFile(ManagementObject ManagementObject) : CIM.DataFile(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class ShortcutFile(ManagementObject ManagementObject) : CI /// public string? Target => (string)ManagementObject[nameof(Target)]; } -#nullable disable diff --git a/Types/Win32/SoundDevice.g.cs b/Types/Win32/SoundDevice.g.cs index 285a48e..391759a 100644 --- a/Types/Win32/SoundDevice.g.cs +++ b/Types/Win32/SoundDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SoundDevice(ManagementObject ManagementObject) : CIM.LogicalDevice(ManagementObject) { /// @@ -27,4 +26,3 @@ public partial record class SoundDevice(ManagementObject ManagementObject) : CIM /// public string? ProductName => (string)ManagementObject[nameof(ProductName)]; } -#nullable disable diff --git a/Types/Win32/StartupCommand.g.cs b/Types/Win32/StartupCommand.g.cs index cc690db..b864440 100644 --- a/Types/Win32/StartupCommand.g.cs +++ b/Types/Win32/StartupCommand.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class StartupCommand(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -31,4 +30,3 @@ public partial record class StartupCommand(ManagementObject ManagementObject) : /// public string? UserSID => (string)ManagementObject[nameof(UserSID)]; } -#nullable disable diff --git a/Types/Win32/SubDirectory.g.cs b/Types/Win32/SubDirectory.g.cs index e47e2e0..b3c73b5 100644 --- a/Types/Win32/SubDirectory.g.cs +++ b/Types/Win32/SubDirectory.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SubDirectory(ManagementObject ManagementObject) : CIM.Component(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SubDirectory(ManagementObject ManagementObject) : CI /// public new Directory? PartComponent => (Directory)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SubSession.g.cs b/Types/Win32/SubSession.g.cs index 01165b4..7f0d521 100644 --- a/Types/Win32/SubSession.g.cs +++ b/Types/Win32/SubSession.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SubSession(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SubSession(ManagementObject ManagementObject) : CIM. /// public new Session? Dependent => (Session)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/SystemAccount.g.cs b/Types/Win32/SystemAccount.g.cs index 2848f14..5f89e34 100644 --- a/Types/Win32/SystemAccount.g.cs +++ b/Types/Win32/SystemAccount.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemAccount(ManagementObject ManagementObject) : Account(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemAccount(ManagementObject ManagementObject) : A /// public new string? Name => (string)ManagementObject[nameof(Name)]; } -#nullable disable diff --git a/Types/Win32/SystemBIOS.g.cs b/Types/Win32/SystemBIOS.g.cs index 9b4fc09..d71a80e 100644 --- a/Types/Win32/SystemBIOS.g.cs +++ b/Types/Win32/SystemBIOS.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemBIOS(ManagementObject ManagementObject) : CIM.SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemBIOS(ManagementObject ManagementObject) : CIM. /// public new ComputerSystem? GroupComponent => (ComputerSystem)ManagementObject[nameof(GroupComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemBootConfiguration.g.cs b/Types/Win32/SystemBootConfiguration.g.cs index 92f5688..f9daf32 100644 --- a/Types/Win32/SystemBootConfiguration.g.cs +++ b/Types/Win32/SystemBootConfiguration.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemBootConfiguration(ManagementObject ManagementObject) : SystemSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemBootConfiguration(ManagementObject ManagementO /// public new BootConfiguration? Setting => (BootConfiguration)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/SystemConfigurationChangeEvent.g.cs b/Types/Win32/SystemConfigurationChangeEvent.g.cs index 75fa39e..8e62f5b 100644 --- a/Types/Win32/SystemConfigurationChangeEvent.g.cs +++ b/Types/Win32/SystemConfigurationChangeEvent.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/SystemDesktop.g.cs b/Types/Win32/SystemDesktop.g.cs index fb5f45b..003bef8 100644 --- a/Types/Win32/SystemDesktop.g.cs +++ b/Types/Win32/SystemDesktop.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemDesktop(ManagementObject ManagementObject) : SystemSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemDesktop(ManagementObject ManagementObject) : S /// public new Desktop? Setting => (Desktop)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/SystemDevices.g.cs b/Types/Win32/SystemDevices.g.cs index 9169df6..31a738d 100644 --- a/Types/Win32/SystemDevices.g.cs +++ b/Types/Win32/SystemDevices.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemDevices(ManagementObject ManagementObject) : CIM.SystemDevice(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemDevices(ManagementObject ManagementObject) : C /// public new CIM.LogicalDevice? PartComponent => (CIM.LogicalDevice)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemDriver.g.cs b/Types/Win32/SystemDriver.g.cs index f1fb2b3..182dc44 100644 --- a/Types/Win32/SystemDriver.g.cs +++ b/Types/Win32/SystemDriver.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/SystemDriverPNPEntity.g.cs b/Types/Win32/SystemDriverPNPEntity.g.cs index 63c4654..5613bd4 100644 --- a/Types/Win32/SystemDriverPNPEntity.g.cs +++ b/Types/Win32/SystemDriverPNPEntity.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemDriverPNPEntity(ManagementObject ManagementObject) : CIM.Dependency(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemDriverPNPEntity(ManagementObject ManagementObj /// public new SystemDriver? Dependent => (SystemDriver)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/SystemEnclosure.g.cs b/Types/Win32/SystemEnclosure.g.cs index 8df552d..df1ab49 100644 --- a/Types/Win32/SystemEnclosure.g.cs +++ b/Types/Win32/SystemEnclosure.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemEnclosure(ManagementObject ManagementObject) : CIM.Chassis(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemEnclosure(ManagementObject ManagementObject) : /// public string? SMBIOSAssetTag => (string)ManagementObject[nameof(SMBIOSAssetTag)]; } -#nullable disable diff --git a/Types/Win32/SystemLoadOrderGroups.g.cs b/Types/Win32/SystemLoadOrderGroups.g.cs index 954301e..54127a0 100644 --- a/Types/Win32/SystemLoadOrderGroups.g.cs +++ b/Types/Win32/SystemLoadOrderGroups.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemLoadOrderGroups(ManagementObject ManagementObject) : CIM.SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemLoadOrderGroups(ManagementObject ManagementObj /// public new LoadOrderGroup? PartComponent => (LoadOrderGroup)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemMemoryResource.g.cs b/Types/Win32/SystemMemoryResource.g.cs index 40cc155..300f9b3 100644 --- a/Types/Win32/SystemMemoryResource.g.cs +++ b/Types/Win32/SystemMemoryResource.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/SystemNetworkConnections.g.cs b/Types/Win32/SystemNetworkConnections.g.cs index c273240..5c2b8fb 100644 --- a/Types/Win32/SystemNetworkConnections.g.cs +++ b/Types/Win32/SystemNetworkConnections.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemNetworkConnections(ManagementObject ManagementObject) : CIM.SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemNetworkConnections(ManagementObject Management /// public new NetworkConnection? PartComponent => (NetworkConnection)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemOperatingSystem.g.cs b/Types/Win32/SystemOperatingSystem.g.cs index b76bfc3..b91ddf0 100644 --- a/Types/Win32/SystemOperatingSystem.g.cs +++ b/Types/Win32/SystemOperatingSystem.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemOperatingSystem(ManagementObject ManagementObject) : CIM.InstalledOS(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemOperatingSystem(ManagementObject ManagementObj /// public new OperatingSystem? PartComponent => (OperatingSystem)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemPartitions.g.cs b/Types/Win32/SystemPartitions.g.cs index 72fe57f..4d75419 100644 --- a/Types/Win32/SystemPartitions.g.cs +++ b/Types/Win32/SystemPartitions.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemPartitions(ManagementObject ManagementObject) : SystemDevices(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemPartitions(ManagementObject ManagementObject) /// public new DiskPartition? PartComponent => (DiskPartition)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemProcesses.g.cs b/Types/Win32/SystemProcesses.g.cs index fb2f1aa..14edc84 100644 --- a/Types/Win32/SystemProcesses.g.cs +++ b/Types/Win32/SystemProcesses.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemProcesses(ManagementObject ManagementObject) : CIM.SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemProcesses(ManagementObject ManagementObject) : /// public new Process? PartComponent => (Process)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemProgramGroups.g.cs b/Types/Win32/SystemProgramGroups.g.cs index 6f710e5..532c6e4 100644 --- a/Types/Win32/SystemProgramGroups.g.cs +++ b/Types/Win32/SystemProgramGroups.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemProgramGroups(ManagementObject ManagementObject) : SystemSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemProgramGroups(ManagementObject ManagementObjec /// public new LogicalProgramGroup? Setting => (LogicalProgramGroup)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/SystemResources.g.cs b/Types/Win32/SystemResources.g.cs index 1fb250d..18faf8a 100644 --- a/Types/Win32/SystemResources.g.cs +++ b/Types/Win32/SystemResources.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemResources(ManagementObject ManagementObject) : CIM.ComputerSystemResource(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemResources(ManagementObject ManagementObject) : /// public new CIM.SystemResource? PartComponent => (CIM.SystemResource)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemServices.g.cs b/Types/Win32/SystemServices.g.cs index c7e42f0..283fabd 100644 --- a/Types/Win32/SystemServices.g.cs +++ b/Types/Win32/SystemServices.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemServices(ManagementObject ManagementObject) : CIM.SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemServices(ManagementObject ManagementObject) : /// public new Service? PartComponent => (Service)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemSetting.g.cs b/Types/Win32/SystemSetting.g.cs index 95fffc4..a9a28ef 100644 --- a/Types/Win32/SystemSetting.g.cs +++ b/Types/Win32/SystemSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemSetting(ManagementObject ManagementObject) : CIM.ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemSetting(ManagementObject ManagementObject) : C /// public new CIM.Setting? Setting => (CIM.Setting)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/SystemSlot.g.cs b/Types/Win32/SystemSlot.g.cs index b5ffeb8..58bbd93 100644 --- a/Types/Win32/SystemSlot.g.cs +++ b/Types/Win32/SystemSlot.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemSlot(ManagementObject ManagementObject) : CIM.Slot(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class SystemSlot(ManagementObject ManagementObject) : CIM. /// public string? SlotDesignation => (string)ManagementObject[nameof(SlotDesignation)]; } -#nullable disable diff --git a/Types/Win32/SystemSystemDriver.g.cs b/Types/Win32/SystemSystemDriver.g.cs index 82df5ea..d39ccc5 100644 --- a/Types/Win32/SystemSystemDriver.g.cs +++ b/Types/Win32/SystemSystemDriver.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemSystemDriver(ManagementObject ManagementObject) : CIM.SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemSystemDriver(ManagementObject ManagementObject /// public new SystemDriver? PartComponent => (SystemDriver)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/SystemTimeZone.g.cs b/Types/Win32/SystemTimeZone.g.cs index 5cf9f59..b40f12b 100644 --- a/Types/Win32/SystemTimeZone.g.cs +++ b/Types/Win32/SystemTimeZone.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemTimeZone(ManagementObject ManagementObject) : SystemSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemTimeZone(ManagementObject ManagementObject) : /// public new TimeZone? Setting => (TimeZone)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/SystemUsers.g.cs b/Types/Win32/SystemUsers.g.cs index 206113b..3dffc88 100644 --- a/Types/Win32/SystemUsers.g.cs +++ b/Types/Win32/SystemUsers.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class SystemUsers(ManagementObject ManagementObject) : CIM.SystemComponent(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class SystemUsers(ManagementObject ManagementObject) : CIM /// public new UserAccount? PartComponent => (UserAccount)ManagementObject[nameof(PartComponent)]; } -#nullable disable diff --git a/Types/Win32/TCPIPPrinterPort.g.cs b/Types/Win32/TCPIPPrinterPort.g.cs index f774c51..ffbbcb2 100644 --- a/Types/Win32/TCPIPPrinterPort.g.cs +++ b/Types/Win32/TCPIPPrinterPort.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class TCPIPPrinterPort(ManagementObject ManagementObject) : CIM.ServiceAccessPoint(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class TCPIPPrinterPort(ManagementObject ManagementObject) /// public bool? SNMPEnabled => (bool?)ManagementObject[nameof(SNMPEnabled)]; } -#nullable disable diff --git a/Types/Win32/TapeDrive.g.cs b/Types/Win32/TapeDrive.g.cs index d2f9ba8..cf4daa7 100644 --- a/Types/Win32/TapeDrive.g.cs +++ b/Types/Win32/TapeDrive.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class TapeDrive(ManagementObject ManagementObject) : CIM.TapeDrive(ManagementObject) { /// @@ -43,4 +42,3 @@ public partial record class TapeDrive(ManagementObject ManagementObject) : CIM.T /// public uint? ReportSetMarks => (uint?)ManagementObject[nameof(ReportSetMarks)]; } -#nullable disable diff --git a/Types/Win32/TemperatureProbe.g.cs b/Types/Win32/TemperatureProbe.g.cs index 3c1c8dd..156723e 100644 --- a/Types/Win32/TemperatureProbe.g.cs +++ b/Types/Win32/TemperatureProbe.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/Thread.g.cs b/Types/Win32/Thread.g.cs index 71bb5a1..e7e543a 100644 --- a/Types/Win32/Thread.g.cs +++ b/Types/Win32/Thread.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Thread(ManagementObject ManagementObject) : CIM.Thread(ManagementObject) { /// @@ -51,4 +50,3 @@ public partial record class Thread(ManagementObject ManagementObject) : CIM.Thre /// public new ulong? UserModeTime => (ulong?)ManagementObject[nameof(UserModeTime)]; } -#nullable disable diff --git a/Types/Win32/TimeZone.g.cs b/Types/Win32/TimeZone.g.cs index e3f9e43..3678052 100644 --- a/Types/Win32/TimeZone.g.cs +++ b/Types/Win32/TimeZone.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class TimeZone(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { public int? Bias => (int?)ManagementObject[nameof(Bias)]; @@ -92,4 +91,3 @@ public partial record class TimeZone(ManagementObject ManagementObject) : CIM.Se /// public uint? StandardYear => (uint?)ManagementObject[nameof(StandardYear)]; } -#nullable disable diff --git a/Types/Win32/Trustee.g.cs b/Types/Win32/Trustee.g.cs index 62f4818..7917d77 100644 --- a/Types/Win32/Trustee.g.cs +++ b/Types/Win32/Trustee.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class Trustee(ManagementObject ManagementObject) : Base._Trustee(ManagementObject) { /// @@ -28,4 +27,3 @@ public partial record class Trustee(ManagementObject ManagementObject) : Base._T public new uint? SidLength => (uint?)ManagementObject[nameof(SidLength)]; public string? SIDString => (string)ManagementObject[nameof(SIDString)]; } -#nullable disable diff --git a/Types/Win32/USBController.g.cs b/Types/Win32/USBController.g.cs index 90af6c2..28d762f 100644 --- a/Types/Win32/USBController.g.cs +++ b/Types/Win32/USBController.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/USBControllerDevice.g.cs b/Types/Win32/USBControllerDevice.g.cs index 13ef033..caf0fba 100644 --- a/Types/Win32/USBControllerDevice.g.cs +++ b/Types/Win32/USBControllerDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class USBControllerDevice(ManagementObject ManagementObject) : CIM.ControlledBy(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class USBControllerDevice(ManagementObject ManagementObjec /// public new CIM.LogicalDevice? Dependent => (CIM.LogicalDevice)ManagementObject[nameof(Dependent)]; } -#nullable disable diff --git a/Types/Win32/UserAccount.g.cs b/Types/Win32/UserAccount.g.cs index 6aabd3f..59dfcd6 100644 --- a/Types/Win32/UserAccount.g.cs +++ b/Types/Win32/UserAccount.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class UserAccount(ManagementObject ManagementObject) : Account(ManagementObject) { /// @@ -37,4 +36,3 @@ public partial record class UserAccount(ManagementObject ManagementObject) : Acc /// public bool? PasswordRequired => (bool?)ManagementObject[nameof(PasswordRequired)]; } -#nullable disable diff --git a/Types/Win32/UserDesktop.g.cs b/Types/Win32/UserDesktop.g.cs index 87f2946..4ffce02 100644 --- a/Types/Win32/UserDesktop.g.cs +++ b/Types/Win32/UserDesktop.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class UserDesktop(ManagementObject ManagementObject) : CIM.ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class UserDesktop(ManagementObject ManagementObject) : CIM /// public new Desktop? Setting => (Desktop)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/VideoConfiguration.g.cs b/Types/Win32/VideoConfiguration.g.cs index 5b985a8..538c05c 100644 --- a/Types/Win32/VideoConfiguration.g.cs +++ b/Types/Win32/VideoConfiguration.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class VideoConfiguration(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -119,4 +118,3 @@ public partial record class VideoConfiguration(ManagementObject ManagementObject /// public uint? VerticalResolution => (uint?)ManagementObject[nameof(VerticalResolution)]; } -#nullable disable diff --git a/Types/Win32/VideoController.g.cs b/Types/Win32/VideoController.g.cs index 8435d14..7cc4030 100644 --- a/Types/Win32/VideoController.g.cs +++ b/Types/Win32/VideoController.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class VideoController(ManagementObject ManagementObject) : CIM.PCVideoController(ManagementObject) { /// @@ -83,4 +82,3 @@ public partial record class VideoController(ManagementObject ManagementObject) : /// public string? VideoModeDescription => (string)ManagementObject[nameof(VideoModeDescription)]; } -#nullable disable diff --git a/Types/Win32/VideoSettings.g.cs b/Types/Win32/VideoSettings.g.cs index cca8da6..926c67b 100644 --- a/Types/Win32/VideoSettings.g.cs +++ b/Types/Win32/VideoSettings.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class VideoSettings(ManagementObject ManagementObject) : CIM.VideoSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class VideoSettings(ManagementObject ManagementObject) : C /// public new VideoController? Element => (VideoController)ManagementObject[nameof(Element)]; } -#nullable disable diff --git a/Types/Win32/VoltageProbe.g.cs b/Types/Win32/VoltageProbe.g.cs index e1d439a..a8b1eab 100644 --- a/Types/Win32/VoltageProbe.g.cs +++ b/Types/Win32/VoltageProbe.g.cs @@ -1,8 +1,8 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; diff --git a/Types/Win32/VolumeChangeEvent.g.cs b/Types/Win32/VolumeChangeEvent.g.cs index 3021719..e0dd48d 100644 --- a/Types/Win32/VolumeChangeEvent.g.cs +++ b/Types/Win32/VolumeChangeEvent.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class VolumeChangeEvent(ManagementObject ManagementObject) : DeviceChangeEvent(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class VolumeChangeEvent(ManagementObject ManagementObject) /// public string? DriveName => (string)ManagementObject[nameof(DriveName)]; } -#nullable disable diff --git a/Types/Win32/WMIElementSetting.g.cs b/Types/Win32/WMIElementSetting.g.cs index 4023430..69518d6 100644 --- a/Types/Win32/WMIElementSetting.g.cs +++ b/Types/Win32/WMIElementSetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class WMIElementSetting(ManagementObject ManagementObject) : CIM.ElementSetting(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class WMIElementSetting(ManagementObject ManagementObject) /// public new WMISetting? Setting => (WMISetting)ManagementObject[nameof(Setting)]; } -#nullable disable diff --git a/Types/Win32/WMISetting.g.cs b/Types/Win32/WMISetting.g.cs index e4aa2dd..46273d4 100644 --- a/Types/Win32/WMISetting.g.cs +++ b/Types/Win32/WMISetting.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class WMISetting(ManagementObject ManagementObject) : CIM.Setting(ManagementObject) { /// @@ -107,4 +106,3 @@ public partial record class WMISetting(ManagementObject ManagementObject) : CIM. /// public string? MofSelfInstallDirectory => (string)ManagementObject[nameof(MofSelfInstallDirectory)]; } -#nullable disable diff --git a/Types/Win32/_1394Controller.g.cs b/Types/Win32/_1394Controller.g.cs index 517112e..7b99d47 100644 --- a/Types/Win32/_1394Controller.g.cs +++ b/Types/Win32/_1394Controller.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class _1394Controller(ManagementObject ManagementObject) : CIM.Controller(ManagementObject) { /// @@ -15,4 +14,3 @@ public partial record class _1394Controller(ManagementObject ManagementObject) : /// public string? Manufacturer => (string)ManagementObject[nameof(Manufacturer)]; } -#nullable disable diff --git a/Types/Win32/_1394ControllerDevice.g.cs b/Types/Win32/_1394ControllerDevice.g.cs index b029da0..a1de263 100644 --- a/Types/Win32/_1394ControllerDevice.g.cs +++ b/Types/Win32/_1394ControllerDevice.g.cs @@ -1,13 +1,12 @@ /************************************************************** * * - * WARNING: This file is autogenerated by * - * System.Management.Generator. * - * Any changes made to this file will be overwritten. * + * WARNING: This file is autogenerated by * + * System.Management.Generator. * + * Any changes made to this file will be overwritten. * * * **************************************************************/ namespace System.Management.Types.Win32; -#nullable enable public partial record class _1394ControllerDevice(ManagementObject ManagementObject) : CIM.ControlledBy(ManagementObject) { /// @@ -19,4 +18,3 @@ public partial record class _1394ControllerDevice(ManagementObject ManagementObj /// public new CIM.LogicalDevice? Dependent => (CIM.LogicalDevice)ManagementObject[nameof(Dependent)]; } -#nullable disable