Edit

Share via


ConversationId.Implicit Operator

Definition

Overloads

Implicit(ConversationId to String)

Performs an implicit conversion between a ConversationId object and a string.

Implicit(String to ConversationId)

Performs an implicit conversion between a string and a ConversationId object.

Implicit(ConversationId to String)

Performs an implicit conversion between a ConversationId object and a string.

public:
 static operator System::String ^(Microsoft::Exchange::WebServices::Data::ConversationId ^ conversationId);
public static implicit operator string (Microsoft.Exchange.WebServices.Data.ConversationId conversationId);

Parameters

conversationId
ConversationId

The unique identifier to convert to a string.

Returns

A ConversationId object that is initialized with the specified unique identifier.

Applies to

Implicit(String to ConversationId)

Performs an implicit conversion between a string and a ConversationId object.

public:
 static operator Microsoft::Exchange::WebServices::Data::ConversationId ^(System::String ^ uniqueId);
public static implicit operator Microsoft.Exchange.WebServices.Data.ConversationId (string uniqueId);
Public Shared Widening Operator CType (uniqueId As String) As ConversationId

Parameters

uniqueId
String

The unique identifier to convert to a ConversationId object.

Returns

A conversation identifier object.

Applies to