winget-cli

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

ImplementedAsTypeInternal.cs (1155B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="ImplementedAsTypeInternal.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.Management.Configuration.Processor.PowerShell.DscResourcesInfo
      8 {
      9     /// <summary>
     10     /// Enumerated values for DSC resource implementation type.
     11     /// </summary>
     12     internal enum ImplementedAsTypeInternal
     13     {
     14         /// <summary>
     15         /// DSC resource implementation type not known.
     16         /// </summary>
     17         None = 0,
     18 
     19         /// <summary>
     20         /// DSC resource is implemented using PowerShell module.
     21         /// </summary>
     22         PowerShell = 1,
     23 
     24         /// <summary>
     25         /// DSC resource is implemented using a CIM provider.
     26         /// </summary>
     27         Binary = 2,
     28 
     29         /// <summary>
     30         /// DSC resource is a composite and implemented using configuration keyword.
     31         /// </summary>
     32         Composite = 3,
     33     }
     34 }