Search Results for

    Show / Hide Table of Contents

    Class StringCorrectionsApiExecutor

    Inheritance
    object
    StringCorrectionsApiExecutor
    Implements
    IStringCorrectionsApiExecutor
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Crowdin.Api.StringCorrections
    Assembly: Crowdin.Api.dll
    Syntax
    public class StringCorrectionsApiExecutor : IStringCorrectionsApiExecutor

    Constructors

    | Edit this page View Source

    StringCorrectionsApiExecutor(ICrowdinApiClient)

    Declaration
    public StringCorrectionsApiExecutor(ICrowdinApiClient apiClient)
    Parameters
    Type Name Description
    ICrowdinApiClient apiClient
    | Edit this page View Source

    StringCorrectionsApiExecutor(ICrowdinApiClient, IJsonParser)

    Declaration
    public StringCorrectionsApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
    Parameters
    Type Name Description
    ICrowdinApiClient apiClient
    IJsonParser jsonParser

    Methods

    | Edit this page View Source

    AddCorrection(long, AddCorrectionRequest)

    Add string correction. Documentation:
    Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task<Correction> AddCorrection(long projectId, AddCorrectionRequest request)
    Parameters
    Type Name Description
    long projectId
    AddCorrectionRequest request
    Returns
    Type Description
    Task<Correction>
    | Edit this page View Source

    DeleteCorrection(long, long)

    Delete string correction. Documentation:
    Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task DeleteCorrection(long projectId, long correctionId)
    Parameters
    Type Name Description
    long projectId
    long correctionId
    Returns
    Type Description
    Task
    | Edit this page View Source

    DeleteCorrections(long, long)

    Delete string corrections. Documentation:
    Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task DeleteCorrections(long projectId, long stringId)
    Parameters
    Type Name Description
    long projectId
    long stringId
    Returns
    Type Description
    Task
    | Edit this page View Source

    GetCorrection(long, long)

    Get string correction. Documentation:
    Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task<Correction> GetCorrection(long projectId, long correctionId)
    Parameters
    Type Name Description
    long projectId
    long correctionId
    Returns
    Type Description
    Task<Correction>
    | Edit this page View Source

    ListCorrections(long, long, IEnumerable<SortingRule>?, int, int, int)

    List string corrections. Documentation:
    Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task<ResponseList<Correction>> ListCorrections(long projectId, long stringId, IEnumerable<SortingRule>? orderBy = null, int denormalizePlaceholders = 0, int limit = 25, int offset = 0)
    Parameters
    Type Name Description
    long projectId
    long stringId
    IEnumerable<SortingRule> orderBy
    int denormalizePlaceholders
    int limit
    int offset
    Returns
    Type Description
    Task<ResponseList<Correction>>
    | Edit this page View Source

    RestoreCorrection(long, long)

    Restore string correction. Documentation:
    Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task<Correction> RestoreCorrection(long projectId, long correctionId)
    Parameters
    Type Name Description
    long projectId
    long correctionId
    Returns
    Type Description
    Task<Correction>

    Implements

    IStringCorrectionsApiExecutor
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX