Class ImportResults
Encapsulates the results of an import operation.
Inherited Members
      Object.ToString()
    
    
      Object.Equals(Object)
    
    
      Object.Equals(Object, Object)
    
    
      Object.ReferenceEquals(Object, Object)
    
    
      Object.GetHashCode()
    
    
      Object.GetType()
    
    
      Object.MemberwiseClone()
    
  Namespace: Sdl.LanguagePlatform.TranslationMemory
Assembly: Sdl.LanguagePlatform.TranslationMemory.dll
Syntax
public class ImportResults : ImportStatistics, IEnumerable<ImportResult>, IEnumerableConstructors
ImportResults()
Constructor. Creates an empty instance of ImportResult.
Declaration
public ImportResults()ImportResults(IList<ImportResult>)
Constructor. Initializes a new instance of the ImportResults class.
Declaration
public ImportResults(IList<ImportResult> importResults)Parameters
| Type | Name | Description | 
|---|---|---|
| IList<ImportResult> | importResults | 
Properties
Count
Gets the total number of translation units processed during the import.
Declaration
public int Count { get; }Property Value
| Type | Description | 
|---|---|
| Int32 | 
Item[Int32]
Retrieves the action taken for the translation unit at the specified index.
Declaration
public ImportResult this[int index] { get; set; }Parameters
| Type | Name | Description | 
|---|---|---|
| Int32 | index | The index of the translation unit. | 
Property Value
| Type | Description | 
|---|---|
| ImportResult | The import result for the translation unit at the specified position. | 
Methods
GetEnumerator()
Implementation for GetEnumerator
Declaration
public IEnumerator<ImportResult> GetEnumerator()Returns
| Type | Description | 
|---|---|
| IEnumerator<ImportResult> | 
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()Returns
| Type | Description | 
|---|---|
| IEnumerator | 
Implements
      System.Collections.Generic.IEnumerable<T>
  
  
      System.Collections.IEnumerable