Show / Hide Table of Contents

Interface IImagingNativeTypeService

Represents the NativeType API service.

Namespace: Relativity.Testing.Framework.Api.Services
Assembly: Relativity.Testing.Framework.Api.dll
Syntax
public interface IImagingNativeTypeService
Examples
_imagingNativeTypeService = relativityFacade.Resolve<IImagingNativeTypeService>();

Methods

| Improve this Doc View Source

Get(Int32, Int32)

Retrieves the NativeType with the specified Artifact ID.

Declaration
NativeType Get(int workspaceId, int nativeTypeId)
Parameters
Type Name Description
System.Int32 workspaceId

The workspace ID.

System.Int32 nativeTypeId

The Artifact ID of the NativeType instance to read.

Returns
Type Description
NativeType

Returns an NativeType instance.

Examples
var workspaceId = 1015427;
var nativeTypeId = 1018877;
var nativeType = _imagingNativeTypeService.Get(workspaceId, nativeTypeId);
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX