Search Results for

    Show / Hide Table of Contents

    Delegate SortDisambiguator.Disambiguator

    Represents a method which compares two objects, and returns a value indicating the sort order.

    Namespace: Sdl.LanguagePlatform.TranslationMemory
    Assembly: Sdl.LanguagePlatform.TranslationMemory.dll
    Syntax
    public delegate int SortDisambiguator.Disambiguator(SearchResult a, SearchResult b)
    Parameters
    Type Name Description
    SearchResult a

    The first object (not null)

    SearchResult b

    The second object (not null)

    Returns
    Type Description
    int

    A value indicating the sort order between the two objects

    Constructors

    Disambiguator(object, IntPtr)

    Declaration
    public Disambiguator(object @object, IntPtr method)
    Parameters
    Type Name Description
    object object
    IntPtr method

    Methods

    BeginInvoke(SearchResult, SearchResult, AsyncCallback, object)

    Declaration
    public virtual IAsyncResult BeginInvoke(SearchResult a, SearchResult b, AsyncCallback callback, object @object)
    Parameters
    Type Name Description
    SearchResult a
    SearchResult b
    AsyncCallback callback
    object object
    Returns
    Type Description
    IAsyncResult

    EndInvoke(IAsyncResult)

    Declaration
    public virtual int EndInvoke(IAsyncResult result)
    Parameters
    Type Name Description
    IAsyncResult result
    Returns
    Type Description
    int

    Invoke(SearchResult, SearchResult)

    Declaration
    public virtual int Invoke(SearchResult a, SearchResult b)
    Parameters
    Type Name Description
    SearchResult a
    SearchResult b
    Returns
    Type Description
    int
    In this article
    • Constructors
      • Disambiguator(object, IntPtr)
    • Methods
      • BeginInvoke(SearchResult, SearchResult, AsyncCallback, object)
      • EndInvoke(IAsyncResult)
      • Invoke(SearchResult, SearchResult)
    Back to top Generated by DocFX