UCC_CONFERENCE_RECORDED_MEDIA_PROPERTY Enumeration

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Enumerates the IDs of the properties describing the conference recorded media.

Namespace: Microsoft.Office.Interop.UccApi
Assembly: Microsoft.Office.Interop.UccApi (in microsoft.office.interop.uccapi.dll)

Syntax

'Declaration
Public Enumeration UCC_CONFERENCE_RECORDED_MEDIA_PROPERTY
public enum UCC_CONFERENCE_RECORDED_MEDIA_PROPERTY
public enum class UCC_CONFERENCE_RECORDED_MEDIA_PROPERTY
public enum UCC_CONFERENCE_RECORDED_MEDIA_PROPERTY
public enum UCC_CONFERENCE_RECORDED_MEDIA_PROPERTY

Members

Member name Description
UCCCRMP_ERROR_CODE The ID of a property of the integer (LONG) value holding an error code related to the recorded media.
UCCCRMP_ERROR_DESCRIPTION The ID of a property of the string (BSTR) value describing the error message related to the recorded media.
UCCCRMP_TYPE The ID of a property of the UCC_MEDIA_TYPES value indicating the type of the recorded media.

Remarks

An application can determine the data type and accessibility as well as the applicable class of the properties defined by this enumeration using the UCC_PROPERTY_TYPE and UCC_PROPERTY_ACCESSIBILITY as well UCC_PROPERTY_CLASS enumerations. To examine a conference recorded media property (such as the error message), (1) obtain the state properties collections from a conference entity by calling IUccReadOnlyPropertyCollection stateProps = IUccConferenceEntityView.Properties.get_Property((int)UCC_CONFERENCE_ENTITY_PROPERTY.UCCCEP_STATE) as IUccReadOnlyPropertyCollection, (2) obtain the media properties collection from the state property bag by calling IUccCollection mediaProps = stateProps.Properties.get_Property((int)UCC_CONFERENCE_ENTITY_STATE_PROPERTY.UCCCESTP_RECORDED_MEDIA_COLLECTION).ObjectValue as IUccCollection, and (3) obtain the error message associated with this media by calling string errorMsg = mediaProps.Properties.get_Item((int)UCC_CONFERENCE_RECORDED_MEDIA_PROPERTY.UCCCRMP_ERROR_DESCRIPTION) as string.

Win32 COM/C++ Syntax

typedef enum UCC_CONFERENCE_RECORDED_MEDIA_PROPERTY
{
   UCCCRMP_TYPE = 1 | UCCPCL_CONFERENCE_RECORDED_MEDIA | UCCPAC_READ_ONLY | UCCPT_ENUMERATION,
   UCCCRMP_ERROR_CODE = 2 | UCCPCL_CONFERENCE_RECORDED_MEDIA | UCCPAC_READ_ONLY | UCCPT_NUMERIC,
   UCCCRMP_ERROR_DESCRIPTION = 3 | UCCPCL_CONFERENCE_RECORDED_MEDIA | UCCPAC_READ_ONLY | UCCPT_STRING
};

Platforms

Development Platforms

Windows XP Professional with Service Pack 2 (SP2), Windows Server 2000 with Service Pack 4, Windows Server 2003, Windows Vista Ultimate Edition, Windows Vista Business Edition, Windows Vista Enterprise Edition

Target Platforms

See Also

Reference

Microsoft.Office.Interop.UccApi Namespace