Show / Hide Table of Contents

    Class StateMachine<TStateEnum>.Transition

    Single transition from Source to Targets

    Inheritance
    Object
    StateMachine<TStateEnum>.Transition
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Microsoft.Graph.Communications.Common
    Assembly: Microsoft.Graph.Communications.Common.dll
    Syntax
    public sealed class Transition

    Constructors

    Transition(TStateEnum, TStateEnum[])

    Initializes a new instance of the StateMachine<TStateEnum>.Transition class.

    Declaration
    public Transition(TStateEnum source, params TStateEnum[] targets)
    Parameters
    Type Name Description
    TStateEnum source

    The source.

    TStateEnum[] targets

    The targets.

    Properties

    Source

    Gets the source state.

    Declaration
    public TStateEnum Source { get; }
    Property Value
    Type Description
    TStateEnum

    The source.

    Targets

    Gets the target states.

    Declaration
    public TStateEnum[] Targets { get; }
    Property Value
    Type Description
    TStateEnum[]

    The targets.

    Extension Methods

    AdditionalDataExtensions.SetInAdditionalData(Object, String, Object)
    Extensions.Pin(Object)
    Extensions.ChangeType(Object, Type)
    Extensions.ChangeType<T>(Object)
    Extensions.TryDispose(Object, IGraphLogger)
    ReflectionUtils.GetPropertyUsingReflection(Object, String)
    ReflectionUtils.SetPropertyUsingReflection(Object, String, Object)
    Validator.IsNull(Object, String, String)
    Validator.NotNull<T>(T, String, String)
    Validator.Equals<T>(T, T, String, String)
    Validator.Equals<T, TE>(T, T, String)
    Validator.NotEquals<T>(T, T, String, String)
    Back to top Copyright (c) Microsoft Corporation. All rights reserved.