ResourceType.Implicit Operator

Definition

Overloads

Implicit(ResourceType to String)

Implicit operator for initializing a string from a ResourceType.

Implicit(String to ResourceType)

Implicit operator for initializing a ResourceType instance from a string.

Implicit(ResourceType to String)

Source:
ResourceType.cs

Implicit operator for initializing a string from a ResourceType.

public static implicit operator string (Azure.Core.ResourceType resourceType);
static member op_Implicit : Azure.Core.ResourceType -> string
Public Shared Widening Operator CType (resourceType As ResourceType) As String

Parameters

resourceType
ResourceType

ResourceType to be converted into a string.

Returns

Applies to

Implicit(String to ResourceType)

Source:
ResourceType.cs

Implicit operator for initializing a ResourceType instance from a string.

public static implicit operator Azure.Core.ResourceType (string resourceType);
static member op_Implicit : string -> Azure.Core.ResourceType
Public Shared Widening Operator CType (resourceType As String) As ResourceType

Parameters

resourceType
String

String to be converted into a ResourceType object.

Returns

Applies to