FolderId.Implicit Operator

Definition

Overloads

Implicit(WellKnownFolderName to FolderId)

Defines an implicit conversion between a well-known folder name and a folder ID.

Implicit(String to FolderId)

Defines an implicit conversion between a string and a folder ID.

Implicit(WellKnownFolderName to FolderId)

Defines an implicit conversion between a well-known folder name and a folder ID.

public:
 static operator Microsoft::Exchange::WebServices::Data::FolderId ^(Microsoft::Exchange::WebServices::Data::WellKnownFolderName folderName);
public static implicit operator Microsoft.Exchange.WebServices.Data.FolderId (Microsoft.Exchange.WebServices.Data.WellKnownFolderName folderName);
Public Shared Widening Operator CType (folderName As WellKnownFolderName) As FolderId

Parameters

folderName
WellKnownFolderName

The folder name to convert to a folder ID.

Returns

A folder ID that is initialized with the specified folder name.

Applies to

Implicit(String to FolderId)

Defines an implicit conversion between a string and a folder ID.

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

Parameters

uniqueId
String

The unique ID to convert to a folder ID.

Returns

A folder ID that is initialized with the specified unique ID.

Applies to