winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

ConfigurationUnitResultInformation.cs (1115B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="ConfigurationUnitResultInformation.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.Management.Configuration.Processor.Unit
      8 {
      9     using System;
     10     using Microsoft.Management.Configuration;
     11 
     12     /// <summary>
     13     /// Implements IConfigurationUnitResultInformation.
     14     /// </summary>
     15     internal sealed partial class ConfigurationUnitResultInformation : IConfigurationUnitResultInformation
     16     {
     17         /// <inheritdoc/>
     18         public string? Description { get; internal set; }
     19 
     20         /// <inheritdoc/>
     21         public string? Details { get; internal set; }
     22 
     23         /// <inheritdoc/>
     24         public Exception? ResultCode { get; internal set; }
     25 
     26         /// <inheritdoc/>
     27         public ConfigurationUnitResultSource ResultSource { get; internal set; } = ConfigurationUnitResultSource.None;
     28     }
     29 }