Class ResourceType | Azure SDK for Net
James Sullivan
Published Feb 17, 2026
Resource Type
Inheritance
ResourceType
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Authorization.dll
Syntax
public class ResourceType Constructors
ResourceType()
Initializes a new instance of the ResourceType class.
Declaration
public ResourceType (); ResourceType(String, String, IList<ProviderOperation>)
Initializes a new instance of the ResourceType class.
Declaration
public ResourceType (string name = null, string displayName = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Authorization.Models.ProviderOperation> operations = null); Parameters
Properties
DisplayName
Gets or sets the resource type display name.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="displayName")]
public string DisplayName { get; set; } Property Value
Name
Gets or sets the resource type name.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; set; } Property Value
Operations
Gets or sets the resource type operations.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="operations")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Authorization.Models.ProviderOperation> Operations { get; set; }