ITestCase.CreateAttachment Method (array<Byte , Int32, Int32)

Creates an attachment for a test case by using the provided byte array.

Namespace:  Microsoft.TeamFoundation.TestManagement.Client
Assembly:  Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)

Syntax

'Declaration
Function CreateAttachment ( _
    contents As Byte(), _
    offset As Integer, _
    length As Integer _
) As ITestAttachment
ITestAttachment CreateAttachment(
    byte[] contents,
    int offset,
    int length
)
ITestAttachment^ CreateAttachment(
    array<unsigned char>^ contents, 
    int offset, 
    int length
)
abstract CreateAttachment : 
        contents:byte[] * 
        offset:int * 
        length:int -> ITestAttachment 
function CreateAttachment(
    contents : byte[], 
    offset : int, 
    length : int
) : ITestAttachment

Parameters

  • contents
    Type: array<System.Byte[]
    A byte array from which to extract the attachment.
  • offset
    Type: System.Int32
    The starting element in the array.
  • length
    Type: System.Int32
    The length of the array to use to create the attachment.

Return Value

Type: Microsoft.TeamFoundation.TestManagement.Client.ITestAttachment
A test attachment.

.NET Framework Security

See Also

Reference

ITestCase Interface

CreateAttachment Overload

Microsoft.TeamFoundation.TestManagement.Client Namespace

ITestAttachment