OutlookMailClientExperimentalGetFolderAsyncById Method
Asynchronously gets a mailbox folder that satisfies the specified Id.
Namespace: DevCase.ThirdParty.MicrosoftLiveAssembly: DevCase.net48.ThirdParty.MicrosoftLive (in DevCase.net48.ThirdParty.MicrosoftLive.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public Task<IMailFolder> GetFolderAsyncById(
string id
)
Public Function GetFolderAsyncById (
id As String
) As Task(Of IMailFolder)
Dim instance As OutlookMailClientExperimental
Dim id As String
Dim returnValue As Task(Of IMailFolder)
returnValue = instance.GetFolderAsyncById(id)
public:
Task<IMailFolder^>^ GetFolderAsyncById(
String^ id
)
member GetFolderAsyncById :
id : string -> Task<IMailFolder>
No code example is currently available or this language may not be supported.
- id String
-
The target mailbox folder Id.
TaskIMailFolder
The resulting
TaskTResult that represents the mailbox folder.
This is a code example.
No code example is currently available or this language may not be supported.
Dim outlookClient As New OutlookMailClient(Process.GetCurrentProcess.MainWindowHandle, "YOUR CLIENT ID", OutlookMailScopes.ReadWrite Or OutlookMailScopes.Send)
Await outlookClient.AuthorizeAsync()
Dim folderId As String = "AQMkADAwATYwMAItYTI5NC02NgBkMC0wMAItMDAKAC4AAAP10PQF3tB9T6axZ5YUsGQeAQAvGPLjMgHlR4TDjnwToHw_AAAAIDbxCQAAAA=="
Dim folder As IMailFolder = Await outlookClient.GetFolderAsyncById(folderId)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
InvalidOperationException
|
|