Add attributes to a recording.

Note: This method is supported for IC Server version 2016 R3 and beyond.

Namespace: ININ.IceLib.QualityManagement
Assembly: ININ.IceLib.QualityManagement (in ININ.IceLib.QualityManagement.dll) Version: 0.0.0.0 (22.3.0.218)

Collapse imageSyntax

C#
public void AddRecordingAttributes(
	string recordingId,
	IDictionary<string, string> attributes
)
Visual Basic
Public Sub AddRecordingAttributes ( _
	recordingId As String, _
	attributes As IDictionary(Of String, String) _
)

Parameters

recordingId
Type: System..::..String
The recording ID.
attributes
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, String>)>)>
The attributes to be added to the recording.

Collapse imageRemarks

Attribute names are case insensitive within Recorder Server, so an attribute name of "test" or "Test" will refer to the same attribute. If multiple attributes with the same name are added to a recording, only the first attribute will be added and the rest will be ignored as duplicates.

If an attribute is added that already exists on the recording, the value will not be updated.

Collapse imageExceptions

ExceptionCondition
System..::..ArgumentNullExceptionrecordingId is nullNothingnullptra null reference (Nothing in Visual Basic).
System..::..ArgumentExceptionrecordingId length is zero.
System..::..ArgumentNullExceptionattributes is nullNothingnullptra null reference (Nothing in Visual Basic).
System..::..ArgumentExceptionattributes is empty.
ININ.IceLib.Connection..::..RequestTimeoutExceptionThe request timed out while waiting for a response.
ININ.IceLib.Connection..::..SessionDisconnectedExceptionThe Session does not have a valid connection.
System..::..ObjectDisposedExceptionThe Session has been disposed.

Collapse imageVersion Information

Supported for IC Server version 2016 R3 and beyond.

Collapse imageSee Also