FolderBind(ExchangeService, WellKnownFolderName, CancellationToken) - метод
Binds to an existing folder, whatever its actual type is, and loads its first class properties.
Calling this method results in a call to EWS.
Пространство имён: Tessa.Exchange.WebServices.DataСборка: Tessa.Server (в Tessa.Server.dll) Версия: 3.6.0.22
public static Task<Folder> Bind(
ExchangeService service,
WellKnownFolderName name,
CancellationToken token = default
)
Public Shared Function Bind (
service As ExchangeService,
name As WellKnownFolderName,
Optional token As CancellationToken = Nothing
) As Task(Of Folder)
public:
static Task<Folder^>^ Bind(
ExchangeService^ service,
WellKnownFolderName name,
CancellationToken token = CancellationToken()
)
static member Bind :
service : ExchangeService *
name : WellKnownFolderName *
?token : CancellationToken
(* Defaults:
let _token = defaultArg token new CancellationToken()
*)
-> Task<Folder>
- service ExchangeService
- The service to use to bind to the folder.
- name WellKnownFolderName
- The name of the folder to bind to.
- token CancellationToken (Optional)
-
TaskFolderA Folder instance representing the folder with the specified name.