LaunchDarkly Dotnet Server SDK
Search Results for

    Show / Hide Table of Contents

    Class MigrationWriteResult<TResult>

    The result of a migration write.

    Inheritance
    object
    MigrationWriteResult<TResult>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: LaunchDarkly.Sdk.Server.Migrations
    Assembly: LaunchDarkly.ServerSdk.dll
    Syntax
    public class MigrationWriteResult<TResult> where TResult : class
    Type Parameters
    Name Description
    TResult

    the type of the result

    Remarks

    A migration write result will always include an authoritative result, and it may contain a non-authoritative result.

    Not all migration stages will execute both writes, and in the case of a write error from the authoritative source then the non-authoritative write will not be executed.

    Properties

    | Edit this page View Source

    Authoritative

    The authoritative result of the write.

    Declaration
    public MigrationResult<TResult> Authoritative { get; }
    Property Value
    Type Description
    MigrationResult<TResult>
    | Edit this page View Source

    NonAuthoritative

    The non-authoritative result of the write.

    Declaration
    public MigrationResult<TResult>? NonAuthoritative { get; }
    Property Value
    Type Description
    MigrationResult<TResult>?
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX