Share via


FeatureCollection.TryGet Method

Definition

Overloads

TryGet<T>(T)

Source:
FeatureCollection.cs
public bool TryGet<T>(out T? feature) where T : Azure.Projects.Core.AzureProjectFeature;
member this.TryGet : 'T -> bool (requires 'T :> Azure.Projects.Core.AzureProjectFeature)
Public Function TryGet(Of T As AzureProjectFeature) (ByRef feature As T) As Boolean

Type Parameters

T

Parameters

feature
T

Returns

Applies to

TryGet<T>(String, T)

Source:
FeatureCollection.cs
public bool TryGet<T>(string id, out T? feature) where T : Azure.Projects.Core.AzureProjectFeature;
member this.TryGet : string * 'T -> bool (requires 'T :> Azure.Projects.Core.AzureProjectFeature)
Public Function TryGet(Of T As AzureProjectFeature) (id As String, ByRef feature As T) As Boolean

Type Parameters

T

Parameters

id
String
feature
T

Returns

Applies to