Class Feature
Represents a resource in the Okta API.
Inheritance
System.Object
Feature
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Okta.Sdk.dll
Syntax
public sealed class Feature : Resource, IFeature, IResource
Properties
Description
Declaration
public string Description { get; set; }
Property Value
Type |
Description |
System.String |
|
Id
Declaration
public string Id { get; }
Property Value
Type |
Description |
System.String |
|
Name
Declaration
public string Name { get; set; }
Property Value
Type |
Description |
System.String |
|
Stage
Declaration
public IFeatureStage Stage { get; set; }
Property Value
Status
Declaration
public EnabledStatus Status { get; set; }
Property Value
Type
Declaration
public FeatureType Type { get; set; }
Property Value
Methods
GetDependencies()
Declaration
public ICollectionClient<IFeature> GetDependencies()
Returns
GetDependents()
Declaration
public ICollectionClient<IFeature> GetDependents()
Returns
UpdateLifecycleAsync(String, String, CancellationToken)
Declaration
public Task<IFeature> UpdateLifecycleAsync(string lifecycle, string mode = null, CancellationToken cancellationToken = default(CancellationToken))
Parameters
Type |
Name |
Description |
System.String |
lifecycle |
|
System.String |
mode |
|
System.Threading.CancellationToken |
cancellationToken |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<IFeature> |
|
Implements