diff --git a/.github/workflows/dev_cippeln4y.yml b/.github/workflows/dev_cippeln4y.yml
new file mode 100644
index 000000000000..322e8af2bcd2
--- /dev/null
+++ b/.github/workflows/dev_cippeln4y.yml
@@ -0,0 +1,30 @@
+# Docs for the Azure Web Apps Deploy action: https://github.com/azure/functions-action
+# More GitHub Actions for Azure: https://github.com/Azure/actions
+
+name: Build and deploy Powershell project to Azure Function App - cippeln4y
+
+on:
+ push:
+ branches:
+ - dev
+ workflow_dispatch:
+
+env:
+ AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
+
+jobs:
+ deploy:
+ runs-on: windows-latest
+
+ steps:
+ - name: 'Checkout GitHub Action'
+ uses: actions/checkout@v4
+
+ - name: 'Run Azure Functions Action'
+ uses: Azure/functions-action@v1
+ id: fa
+ with:
+ app-name: 'cippeln4y'
+ slot-name: 'Production'
+ package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}
+ publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_B82C66E0F3BD4BDD9FFFB32FA83A68C9 }}
\ No newline at end of file
diff --git a/DomainAnalyser_OrchestrationStarter/run.ps1 b/DomainAnalyser_OrchestrationStarter/run.ps1
index b2fd0769428c..a5a4b2f904f2 100644
--- a/DomainAnalyser_OrchestrationStarter/run.ps1
+++ b/DomainAnalyser_OrchestrationStarter/run.ps1
@@ -3,16 +3,20 @@ using namespace System.Net
param($Request, $TriggerMetadata)
$Results = [pscustomobject]@{'Results' = 'Domain Analyser started' }
+$TenantList = Get-Tenants -IncludeAll
+$Queue = New-CippQueueEntry -Name 'Domain Analyser' -TotalTasks ($TenantList | Measure-Object).Count
$InputObject = [PSCustomObject]@{
QueueFunction = [PSCustomObject]@{
FunctionName = 'GetTenants'
- DurableName = 'DomainAnalyserTenant'
+ DurableName = 'DomainAnalyserTenant'
+ QueueId = $Queue.RowKey
TenantParams = @{
IncludeAll = $true
}
}
OrchestratorName = 'DomainAnalyser_Tenants'
SkipLog = $true
+ DurableMode = 'Sequence'
}
Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Compress -Depth 5)
diff --git a/Domain_OrchestrationStarterTimer/run.ps1 b/Domain_OrchestrationStarterTimer/run.ps1
index 63d7cf8985bb..8ac7721ca590 100644
--- a/Domain_OrchestrationStarterTimer/run.ps1
+++ b/Domain_OrchestrationStarterTimer/run.ps1
@@ -16,10 +16,13 @@ try {
Write-LogMessage -API 'DomainAnalyser' -message 'Starting Domain Analyser' -sev Info
$Results = [pscustomobject]@{'Results' = 'Starting Domain Analyser' }
+ $TenantList = Get-Tenants -IncludeAll
+ $Queue = New-CippQueueEntry -Name 'Domain Analyser' -TotalTasks ($TenantList | Measure-Object).Count
$InputObject = [PSCustomObject]@{
QueueFunction = [PSCustomObject]@{
FunctionName = 'GetTenants'
DurableName = 'DomainAnalyserTenant'
+ QueueId = $Queue.RowKey
TenantParams = @{
IncludeAll = $true
}
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.dll
new file mode 100644
index 000000000000..130416a22070
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.pdb b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.pdb
new file mode 100644
index 000000000000..c1ee74cc90c1
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.pdb differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.psd1 b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.psd1
new file mode 100644
index 000000000000..db2db4336280
--- /dev/null
+++ b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.psd1
@@ -0,0 +1,97 @@
+@{
+ # Version number of this module.
+ ModuleVersion = '1.1.0'
+
+ # Supported PSEditions
+ CompatiblePSEditions = @('Core')
+
+ # ID used to uniquely identify this module
+ GUID = '841fad61-94f5-4330-89be-613d54165289'
+
+ # Author of this module
+ Author = 'Microsoft Corporation'
+
+ # Company or vendor of this module
+ CompanyName = 'Microsoft Corporation'
+
+ # Copyright statement for this module
+ Copyright = '(c) Microsoft Corporation. All rights reserved.'
+
+ # Description of the functionality provided by this module
+ Description = 'Initial release of the Durable Functions SDK for PowerShell. This package is to be used exclusively with the Azure Functions PowerShell worker.'
+
+ # Minimum version of the PowerShell engine required by this module
+ PowerShellVersion = '7.2'
+
+ # Type files (.ps1xml) to be loaded when importing this module
+ # TypesToProcess = @() # TODO: use this for pretty-printing DF tasks
+
+ # Format files (.ps1xml) to be loaded when importing this module
+ # FormatsToProcess = @() # TODO: use this for pretty-printing DF tasks
+
+ # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
+ NestedModules = @('./AzureFunctions.PowerShell.Durable.SDK.dll', './AzureFunctions.PowerShell.Durable.SDK.psm1')
+
+ # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
+ FunctionsToExport = @(
+ 'Get-DurableStatus',
+ 'New-DurableOrchestrationCheckStatusResponse',
+ 'Send-DurableExternalEvent',
+ 'Start-DurableOrchestration',
+ 'Stop-DurableOrchestration',
+ 'Suspend-DurableOrchestration',
+ 'Resume-DurableOrchestration'
+ )
+
+ # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
+ CmdletsToExport = @(
+ 'Invoke-DurableActivity',
+ 'Invoke-DurableSubOrchestrator',
+ 'New-DurableRetryPolicy',
+ 'Set-DurableCustomStatus',
+ 'Set-FunctionInvocationContext',
+ 'Start-DurableExternalEventListener'
+ 'Start-DurableTimer',
+ 'Stop-DurableTimerTask',
+ 'Wait-DurableTask',
+ 'Get-DurableTaskResult'
+ )
+
+ # Variables to export from this module
+ VariablesToExport = '*'
+
+ # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
+ AliasesToExport = @(
+ 'Invoke-ActivityFunction',
+ 'New-OrchestrationCheckStatusResponse',
+ 'Start-NewOrchestration',
+ 'Wait-ActivityFunction',
+ 'New-DurableRetryOptions'
+ )
+
+ # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
+ PrivateData = @{
+
+ PSData = @{
+
+ # Tags applied to this module. These help with module discovery in online galleries.
+ Tags = @('Microsoft', 'Azure', 'Functions', 'Serverless', 'Cloud', 'Workflows', 'Durable', 'DurableTask')
+
+ # A URL to the license for this module.
+ LicenseUri = 'https://github.com/Azure/azure-functions-durable-powershell/blob/main/LICENSE'
+
+ # A URL to the main website for this project.
+ ProjectUri = 'https://github.com/Azure/azure-functions-durable-powershell'
+
+ # ReleaseNotes of this module
+ # ReleaseNotes = '' #TODO: add release notes.
+
+ # Prerelease string of this module
+ #Prerelease = 'alpha'
+
+ } # End of PSData hashtable
+ } # End of PrivateData hashtable
+
+ # HelpInfo URI of this module
+ # HelpInfoURI = '' # TODO: explore
+}
\ No newline at end of file
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.psm1 b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.psm1
new file mode 100644
index 000000000000..1cffa0cbb1e4
--- /dev/null
+++ b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/AzureFunctions.PowerShell.Durable.SDK.psm1
@@ -0,0 +1,366 @@
+#
+# Copyright (c) Microsoft. All rights reserved.
+# Licensed under the MIT license. See LICENSE file in the project root for full license information.
+#
+
+using namespace System.Net
+
+# Set aliases for cmdlets to export
+Set-Alias -Name Wait-ActivityFunction -Value Wait-DurableTask
+Set-Alias -Name Invoke-ActivityFunction -Value Invoke-DurableActivity
+Set-Alias -Name New-OrchestrationCheckStatusResponse -Value New-DurableOrchestrationCheckStatusResponse
+Set-Alias -Name Start-NewOrchestration -Value Start-DurableOrchestration
+Set-Alias -Name New-DurableRetryOptions -Value New-DurableRetryPolicy
+
+function GetDurableClientFromModulePrivateData {
+ $PrivateData = $PSCmdlet.MyInvocation.MyCommand.Module.PrivateData
+ if ($null -eq $PrivateData -or $null -eq $PrivateData['DurableClient']) {
+ throw "Could not find `DurableClient` private data. This can occur when you have not set application setting 'ExternalDurablePowerShellSDK' to 'true' or if you're using a DurableClient CmdLet but have no DurableClient binding declared in `function.json`."
+ }
+ else {
+ $PrivateData['DurableClient']
+ }
+}
+
+function Get-DurableStatus {
+ [CmdletBinding()]
+ param(
+ [Parameter(
+ Mandatory = $true,
+ Position = 0,
+ ValueFromPipelineByPropertyName = $true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $InstanceId,
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = $true)]
+ [object] $DurableClient,
+
+ [switch] $ShowHistory,
+
+ [switch] $ShowHistoryOutput,
+
+ [switch] $ShowInput
+ )
+
+ $ErrorActionPreference = 'Stop'
+
+ if ($null -eq $DurableClient) {
+ $DurableClient = GetDurableClientFromModulePrivateData
+ }
+
+ $requestUrl = "$($DurableClient.rpcBaseUrl)/instances/$InstanceId"
+
+ $query = @()
+ if ($ShowHistory.IsPresent) {
+ $query += "showHistory=true"
+ }
+ if ($ShowHistoryOutput.IsPresent) {
+ $query += "showHistoryOutput=true"
+ }
+ if ($ShowInput.IsPresent) {
+ $query += "showInput=true"
+ }
+
+ if ($query.Count -gt 0) {
+ $requestUrl += "?" + [string]::Join("&", $query)
+ }
+
+ Invoke-RestMethod -Uri $requestUrl
+}
+
+<#
+.SYNOPSIS
+ Start an orchestration Azure Function.
+.DESCRIPTION
+ Start an orchestration Azure Function with the given function name and input value.
+.EXAMPLE
+ PS > Start-DurableOrchestration -DurableClient Starter -FunctionName OrchestratorFunction -InputObject "input value for the orchestration function"
+ Return the instance id of the new orchestration.
+.PARAMETER FunctionName
+ The name of the orchestration Azure Function you want to start.
+.PARAMETER InputObject
+ The input value that will be passed to the orchestration Azure Function.
+.PARAMETER DurableClient
+ The orchestration client object.
+#>
+function Start-DurableOrchestration {
+ [CmdletBinding()]
+ param(
+ [Parameter(
+ Mandatory=$true,
+ Position=0,
+ ValueFromPipelineByPropertyName=$true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $FunctionName,
+
+ [Parameter(
+ Position=1,
+ ValueFromPipelineByPropertyName=$true)]
+ [object] $InputObject,
+
+ [Parameter(
+ ValueFromPipelineByPropertyName=$true)]
+ [object] $DurableClient,
+
+ [Parameter(
+ ValueFromPipelineByPropertyName=$true)]
+ [string] $InstanceId
+ )
+
+ $ErrorActionPreference = 'Stop'
+
+ if ($null -eq $DurableClient) {
+ $DurableClient = GetDurableClientFromModulePrivateData
+ }
+
+ if (-not $InstanceId) {
+ $InstanceId = (New-Guid).Guid
+ }
+
+ $Uri =
+ if ($DurableClient.rpcBaseUrl) {
+ # Fast local RPC path
+ "$($DurableClient.rpcBaseUrl)orchestrators/$FunctionName$($InstanceId ? "/$InstanceId" : '')"
+ } else {
+ # Legacy app frontend path
+ $UriTemplate = $DurableClient.creationUrls.createNewInstancePostUri
+ $UriTemplate.Replace('{functionName}', $FunctionName).Replace('[/{instanceId}]', "/$InstanceId")
+ }
+
+ $Body = $InputObject | ConvertTo-Json -Compress -Depth 100
+
+ $null = Invoke-RestMethod -Uri $Uri -Method 'POST' -ContentType 'application/json' -Body $Body
+
+ return $instanceId
+}
+
+function Stop-DurableOrchestration {
+ [CmdletBinding()]
+ param(
+ [Parameter(
+ Mandatory = $true,
+ Position = 0,
+ ValueFromPipelineByPropertyName = $true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $InstanceId,
+
+ [Parameter(
+ Mandatory = $true,
+ Position = 1,
+ ValueFromPipelineByPropertyName = $true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $Reason
+ )
+
+ $ErrorActionPreference = 'Stop'
+
+ if ($null -eq $DurableClient) {
+ $DurableClient = GetDurableClientFromModulePrivateData
+ }
+
+ $requestUrl = "$($DurableClient.rpcBaseUrl)/instances/$InstanceId/terminate?reason=$([System.Web.HttpUtility]::UrlEncode($Reason))"
+
+ Invoke-RestMethod -Uri $requestUrl -Method 'POST'
+}
+
+function Suspend-DurableOrchestration {
+ [CmdletBinding()]
+ param(
+ [Parameter(
+ Mandatory = $true,
+ Position = 0,
+ ValueFromPipelineByPropertyName = $true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $InstanceId,
+
+ [Parameter(
+ Mandatory = $true,
+ Position = 1,
+ ValueFromPipelineByPropertyName = $true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $Reason
+ )
+
+ $ErrorActionPreference = 'Stop'
+
+ if ($null -eq $DurableClient) {
+ $DurableClient = GetDurableClientFromModulePrivateData
+ }
+
+ $requestUrl = "$($DurableClient.rpcBaseUrl)/instances/$InstanceId/suspend?reason=$([System.Web.HttpUtility]::UrlEncode($Reason))"
+
+ Invoke-RestMethod -Uri $requestUrl -Method 'POST'
+}
+
+function Resume-DurableOrchestration {
+ [CmdletBinding()]
+ param(
+ [Parameter(
+ Mandatory = $true,
+ Position = 0,
+ ValueFromPipelineByPropertyName = $true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $InstanceId,
+
+ [Parameter(
+ Mandatory = $true,
+ Position = 1,
+ ValueFromPipelineByPropertyName = $true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $Reason
+ )
+
+ $ErrorActionPreference = 'Stop'
+
+ if ($null -eq $DurableClient) {
+ $DurableClient = GetDurableClientFromModulePrivateData
+ }
+
+ $requestUrl = "$($DurableClient.rpcBaseUrl)/instances/$InstanceId/resume?reason=$([System.Web.HttpUtility]::UrlEncode($Reason))"
+
+ Invoke-RestMethod -Uri $requestUrl -Method 'POST'
+}
+
+function IsValidUrl([uri]$Url) {
+ $Url.IsAbsoluteUri -and ($Url.Scheme -in 'http', 'https')
+}
+
+function GetUrlOrigin([uri]$Url) {
+ $fixedOriginUrl = New-Object System.UriBuilder
+ $fixedOriginUrl.Scheme = $Url.Scheme
+ $fixedOriginUrl.Host = $Url.Host
+ $fixedOriginUrl.Port = $Url.Port
+ $fixedOriginUrl.ToString()
+}
+
+function New-DurableOrchestrationCheckStatusResponse {
+ [CmdletBinding()]
+ param(
+ [Parameter(
+ Mandatory=$true,
+ ValueFromPipelineByPropertyName=$true)]
+ [object] $Request,
+
+ [Parameter(
+ Mandatory=$true,
+ ValueFromPipelineByPropertyName=$true)]
+ [string] $InstanceId,
+
+ [Parameter(
+ ValueFromPipelineByPropertyName=$true)]
+ [object] $DurableClient
+ )
+
+ if ($null -eq $DurableClient) {
+ $DurableClient = GetDurableClientFromModulePrivateData
+ }
+
+ [uri]$requestUrl = $Request.Url
+ $requestHasValidUrl = IsValidUrl $requestUrl
+ $requestUrlOrigin = GetUrlOrigin $requestUrl
+
+ $httpManagementPayload = [ordered]@{ }
+ foreach ($entry in $DurableClient.managementUrls.GetEnumerator()) {
+ $value = $entry.Value
+
+ if ($requestHasValidUrl -and (IsValidUrl $value)) {
+ $dataOrigin = GetUrlOrigin $value
+ $value = $value.Replace($dataOrigin, $requestUrlOrigin)
+ }
+
+ $value = $value.Replace($DurableClient.managementUrls.id, $InstanceId)
+ $httpManagementPayload.Add($entry.Name, $value)
+ }
+
+ [HttpResponseContext]@{
+ StatusCode = [HttpStatusCode]::Accepted
+ Body = $httpManagementPayload
+ Headers = @{
+ 'Content-Type' = 'application/json'
+ 'Location' = $httpManagementPayload.statusQueryGetUri
+ 'Retry-After' = 10
+ }
+ }
+}
+
+<#
+.SYNOPSIS
+ Send an external event to an orchestration instance.
+.DESCRIPTION
+ Send an external event with the given event name, and event data to an orchestration instance with the given instance ID.
+.EXAMPLE
+ PS > Send-DurableExternalEvent -InstanceId "example-instance-id" -EventName "ExampleExternalEvent" -EventData "data for the external event"
+ Return the instance id of the new orchestration.
+.PARAMETER InstanceId
+ The ID of the orchestration instance that will handle the external event.
+.PARAMETER EventName
+ The name of the external event.
+.PARAMETER EventData
+ The JSON-serializable data associated with the external event.
+.PARAMETER TaskHubName
+ The TaskHubName of the orchestration instance that will handle the external event.
+.PARAMETER ConnectionName
+ The name of the connection string associated with TaskHubName
+#>
+function Send-DurableExternalEvent {
+ [CmdletBinding()]
+ param(
+ [Parameter(
+ Mandatory=$true,
+ Position=0,
+ ValueFromPipelineByPropertyName=$true)]
+ [ValidateNotNullOrEmpty()]
+ [string] $InstanceId,
+
+ [Parameter(
+ Mandatory=$true,
+ Position=1,
+ ValueFromPipelineByPropertyName=$true)]
+ [string] $EventName,
+
+ [Parameter(
+ Position=2,
+ ValueFromPipelineByPropertyName=$true)]
+ [object] $EventData,
+
+ [Parameter(
+ ValueFromPipelineByPropertyName=$true)]
+ [string] $TaskHubName,
+
+ [Parameter(
+ ValueFromPipelineByPropertyName=$true)]
+ [string] $ConnectionName
+ )
+
+ $DurableClient = GetDurableClientFromModulePrivateData
+
+ $RequestUrl = GetRaiseEventUrl -DurableClient $DurableClient -InstanceId $InstanceId -EventName $EventName -TaskHubName $TaskHubName -ConnectionName $ConnectionName
+
+ $Body = $EventData | ConvertTo-Json -Compress -Depth 100
+
+ $null = Invoke-RestMethod -Uri $RequestUrl -Method 'POST' -ContentType 'application/json' -Body $Body
+}
+
+function GetRaiseEventUrl(
+ $DurableClient,
+ [string] $InstanceId,
+ [string] $EventName,
+ [string] $TaskHubName,
+ [string] $ConnectionName) {
+
+ $RequestUrl = $DurableClient.rpcBaseUrl + "/instances/$InstanceId/raiseEvent/$EventName"
+
+ $query = @()
+ if ($null -eq $TaskHubName) {
+ $query += "taskHub=$TaskHubName"
+ }
+ if ($null -eq $ConnectionName) {
+ $query += "connection=$ConnectionName"
+ }
+ if ($query.Count -gt 0) {
+ $RequestUrl += "?" + [string]::Join("&", $query)
+ }
+
+ return $RequestUrl
+}
\ No newline at end of file
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Castle.Core.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Castle.Core.dll
new file mode 100644
index 000000000000..96e43f2136f9
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Castle.Core.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableEngine.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableEngine.dll
new file mode 100644
index 000000000000..72b49dd0d584
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableEngine.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableEngine.pdb b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableEngine.pdb
new file mode 100644
index 000000000000..ff5ff77c1e52
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableEngine.pdb differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableTask.Core.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableTask.Core.dll
new file mode 100644
index 000000000000..3382c7d6ddfb
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/DurableTask.Core.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Bcl.AsyncInterfaces.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Bcl.AsyncInterfaces.dll
new file mode 100644
index 000000000000..fe6ba4c549bc
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Bcl.AsyncInterfaces.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Abstractions.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Abstractions.dll
new file mode 100644
index 000000000000..0dc818acefc3
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Abstractions.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Client.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Client.dll
new file mode 100644
index 000000000000..8bd64329e66c
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Client.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Worker.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Worker.dll
new file mode 100644
index 000000000000..ea826b4fdf8b
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.DurableTask.Worker.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Configuration.Abstractions.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 000000000000..9a24516f399b
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 000000000000..b4ee93da0299
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.FileProviders.Abstractions.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 000000000000..d1045b65ad92
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Hosting.Abstractions.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100644
index 000000000000..4d33a647fda8
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Logging.Abstractions.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 000000000000..bb27a2fcaa36
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Options.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Options.dll
new file mode 100644
index 000000000000..604b60275e68
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Options.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Primitives.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 000000000000..1b2c43afc495
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Microsoft.Extensions.Primitives.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Newtonsoft.Json.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Newtonsoft.Json.dll
new file mode 100644
index 000000000000..1ffeabe658ac
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/Newtonsoft.Json.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Diagnostics.EventLog.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Diagnostics.EventLog.dll
new file mode 100644
index 000000000000..8a65e715b96e
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Diagnostics.EventLog.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Core.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Core.dll
new file mode 100644
index 000000000000..a3b43b6279c4
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Core.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Interfaces.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Interfaces.dll
new file mode 100644
index 000000000000..690f6d2344cc
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Interfaces.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Linq.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Linq.dll
new file mode 100644
index 000000000000..9d91f71eb09c
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Linq.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.PlatformServices.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.PlatformServices.dll
new file mode 100644
index 000000000000..4ded127379bd
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.PlatformServices.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Providers.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Providers.dll
new file mode 100644
index 000000000000..612587dad973
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.Providers.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.dll b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.dll
new file mode 100644
index 000000000000..abaf211395a6
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/Dependencies/System.Reactive.dll differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/PSGetModuleInfo.xml b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/PSGetModuleInfo.xml
new file mode 100644
index 000000000000..a98f05d4a295
--- /dev/null
+++ b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/PSGetModuleInfo.xml
@@ -0,0 +1,170 @@
+
+
+
+ Microsoft.PowerShell.Commands.PSRepositoryItemInfo
+ System.Management.Automation.PSCustomObject
+ System.Object
+
+
+ AzureFunctions.PowerShell.Durable.SDK
+ 1.1.0
+ Module
+ Initial release of the Durable Functions SDK for PowerShell. This package is to be used exclusively with the Azure Functions PowerShell worker.
+ Microsoft Corporation
+
+
+ System.Object[]
+ System.Array
+ System.Object
+
+
+ davidmrdavid
+ michaelpeng
+
+
+ (c) Microsoft Corporation. All rights reserved.
+ 2024-02-14T04:09:33-05:00
+
+
+ https://github.com/Azure/azure-functions-durable-powershell/blob/main/LICENSE
+ https://github.com/Azure/azure-functions-durable-powershell
+
+
+
+
+ Microsoft
+ Azure
+ Functions
+ Serverless
+ Cloud
+ Workflows
+ Durable
+ DurableTask
+ PSModule
+ PSEdition_Core
+
+
+
+
+ System.Collections.Hashtable
+ System.Object
+
+
+
+ RoleCapability
+
+
+
+
+
+
+ DscResource
+
+
+
+ Cmdlet
+
+
+
+ Invoke-DurableActivity
+ Invoke-DurableSubOrchestrator
+ New-DurableRetryPolicy
+ Set-DurableCustomStatus
+ Set-FunctionInvocationContext
+ Start-DurableExternalEventListener
+ Start-DurableTimer
+ Stop-DurableTimerTask
+ Wait-DurableTask
+ Get-DurableTaskResult
+
+
+
+
+ Workflow
+
+
+
+ Command
+
+
+
+ Invoke-DurableActivity
+ Invoke-DurableSubOrchestrator
+ New-DurableRetryPolicy
+ Set-DurableCustomStatus
+ Set-FunctionInvocationContext
+ Start-DurableExternalEventListener
+ Start-DurableTimer
+ Stop-DurableTimerTask
+ Wait-DurableTask
+ Get-DurableTaskResult
+ Get-DurableStatus
+ New-DurableOrchestrationCheckStatusResponse
+ Send-DurableExternalEvent
+ Start-DurableOrchestration
+ Stop-DurableOrchestration
+ Suspend-DurableOrchestration
+ Resume-DurableOrchestration
+
+
+
+
+ Function
+
+
+
+ Get-DurableStatus
+ New-DurableOrchestrationCheckStatusResponse
+ Send-DurableExternalEvent
+ Start-DurableOrchestration
+ Stop-DurableOrchestration
+ Suspend-DurableOrchestration
+ Resume-DurableOrchestration
+
+
+
+
+
+
+
+
+
+
+
+ https://www.powershellgallery.com/api/v2
+ PSGallery
+ NuGet
+
+
+ System.Management.Automation.PSCustomObject
+ System.Object
+
+
+ (c) Microsoft Corporation. All rights reserved.
+ Initial release of the Durable Functions SDK for PowerShell. This package is to be used exclusively with the Azure Functions PowerShell worker.
+ False
+ True
+ True
+ 1411
+ 4017
+ 1375697
+ 2/14/2024 4:09:33 AM -05:00
+ 2/14/2024 4:09:33 AM -05:00
+ 4/21/2024 1:06:52 PM -04:00
+ Microsoft Azure Functions Serverless Cloud Workflows Durable DurableTask PSModule PSEdition_Core PSCmdlet_Invoke-DurableActivity PSCommand_Invoke-DurableActivity PSCmdlet_Invoke-DurableSubOrchestrator PSCommand_Invoke-DurableSubOrchestrator PSCmdlet_New-DurableRetryPolicy PSCommand_New-DurableRetryPolicy PSCmdlet_Set-DurableCustomStatus PSCommand_Set-DurableCustomStatus PSCmdlet_Set-FunctionInvocationContext PSCommand_Set-FunctionInvocationContext PSCmdlet_Start-DurableExternalEventListener PSCommand_Start-DurableExternalEventListener PSCmdlet_Start-DurableTimer PSCommand_Start-DurableTimer PSCmdlet_Stop-DurableTimerTask PSCommand_Stop-DurableTimerTask PSCmdlet_Wait-DurableTask PSCommand_Wait-DurableTask PSCmdlet_Get-DurableTaskResult PSCommand_Get-DurableTaskResult PSIncludes_Cmdlet PSFunction_Get-DurableStatus PSCommand_Get-DurableStatus PSFunction_New-DurableOrchestrationCheckStatusResponse PSCommand_New-DurableOrchestrationCheckStatusResponse PSFunction_Send-DurableExternalEvent PSCommand_Send-DurableExternalEvent PSFunction_Start-DurableOrchestration PSCommand_Start-DurableOrchestration PSFunction_Stop-DurableOrchestration PSCommand_Stop-DurableOrchestration PSFunction_Suspend-DurableOrchestration PSCommand_Suspend-DurableOrchestration PSFunction_Resume-DurableOrchestration PSCommand_Resume-DurableOrchestration PSIncludes_Function
+ False
+ 2024-04-21T13:06:52Z
+ 1.1.0
+ Microsoft Corporation
+ false
+ Module
+ AzureFunctions.PowerShell.Durable.SDK.nuspec|_manifest\spdx_2.2\manifest.spdx.json|AzureFunctions.PowerShell.Durable.SDK.dll|AzureFunctions.PowerShell.Durable.SDK.psd1|Dependencies\DurableEngine.dll|Dependencies\Microsoft.Bcl.AsyncInterfaces.dll|Dependencies\Microsoft.DurableTask.Worker.dll|Dependencies\Microsoft.Extensions.FileProviders.Abstractions.dll|Dependencies\Microsoft.Extensions.Options.dll|Dependencies\System.Diagnostics.EventLog.dll|Dependencies\System.Reactive.Interfaces.dll|Dependencies\System.Reactive.PlatformServices.dll|_manifest\manifest.json|_manifest\spdx_2.2\manifest.spdx.json.sha256|AzureFunctions.PowerShell.Durable.SDK.psm1|Dependencies\DurableEngine.pdb|Dependencies\Microsoft.DurableTask.Abstractions.dll|Dependencies\Microsoft.Extensions.Configuration.Abstractions.dll|Dependencies\Microsoft.Extensions.Hosting.Abstractions.dll|Dependencies\Microsoft.Extensions.Primitives.dll|Dependencies\System.Reactive.Core.dll|Dependencies\System.Reactive.Linq.dll|Dependencies\System.Reactive.Providers.dll|_manifest\manifest.json.sha256|AzureFunctions.PowerShell.Durable.SDK.pdb|Dependencies\Castle.Core.dll|Dependencies\DurableTask.Core.dll|Dependencies\Microsoft.DurableTask.Client.dll|Dependencies\Microsoft.Extensions.DependencyInjection.Abstractions.dll|Dependencies\Microsoft.Extensions.Logging.Abstractions.dll|Dependencies\Newtonsoft.Json.dll|Dependencies\System.Reactive.dll
+ 841fad61-94f5-4330-89be-613d54165289
+ 7.2
+ Microsoft Corporation
+
+
+ C:\GitHub\CIPP Workspace\CIPP-API\Modules\AzureFunctions.PowerShell.Durable.SDK\1.1.0
+
+
+
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/manifest.json b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/manifest.json
new file mode 100644
index 000000000000..518614cdecd8
--- /dev/null
+++ b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/manifest.json
@@ -0,0 +1,145 @@
+{
+ "Outputs": [
+ {
+ "Source": "/AzureFunctions.PowerShell.Durable.SDK.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "3F64733E95FA5EAAD067DDB374C685CA986498C76A61D7CCC0E54990F8777598"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.Bcl.AsyncInterfaces.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "5705D245072D3EB78400547B32147DBB6E2C8B02BA8BDA76729798F5EFDEAECB"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.Extensions.Logging.Abstractions.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "D575C9D1543CA726CE14DBDFFD103E93EA527CD46BB28316DA1F4122DBC55D56"
+ },
+ {
+ "Source": "/Dependencies/System.Reactive.Linq.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "33EB42B7065A01963DBCD762CDC81A4135B6E0E927DDF4C88EAE121AD5F69F92"
+ },
+ {
+ "Source": "/AzureFunctions.PowerShell.Durable.SDK.pdb",
+ "AzureArtifactsHash": "0442534A4201000100000000000C0000005044422076312E3000000000000006007C",
+ "Sha256Hash": "D0FAA169052E0509893EFAB5C413C5184571A71824C7EF23486D235DCCFBE808"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.DurableTask.Abstractions.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "CC13EF28BE5C94860CCADF1B9D9E8E505484B1AB40D2D3F60827E14E109FEB0C"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.Extensions.Options.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "786112CB2F6646EF1170219A8C0BB813C9F14A6781E67C6266414F55A679565D"
+ },
+ {
+ "Source": "/Dependencies/System.Reactive.PlatformServices.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "2D864B716FBAE8C1880143574332A10FBC6D98613AA09F6DD98D9D08B82B65AD"
+ },
+ {
+ "Source": "/AzureFunctions.PowerShell.Durable.SDK.psd1",
+ "AzureArtifactsHash": "04407B202020200D0A20202020232056657273696F6E206E756D626572206F662074",
+ "Sha256Hash": "B8A8129C8C7128112721040E2F0611F05DAA5EA89586CC0DFFE371BC3949D327"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.DurableTask.Client.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "AE75348D5D809C89D700B34E9DD3826E218DBB7E9749372ABEE72939FE29C426"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.Extensions.Primitives.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "8CE9A85927EC7507B11FFE90080E7A811D51304A9E8B1DA20C350159BA403902"
+ },
+ {
+ "Source": "/Dependencies/System.Reactive.Providers.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "79A12C5227A000F8608520F2CAB63BECC4412415A1DBEFF29179DFCAA13B6A3A"
+ },
+ {
+ "Source": "/AzureFunctions.PowerShell.Durable.SDK.psm1",
+ "AzureArtifactsHash": "04230D0A2320436F7079726967687420286329204D6963726F736F66742E20416C6C",
+ "Sha256Hash": "EC87A8BA539AAB3498FC24227C2DA03A5666C5274C23A8D79E4513988D896149"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.DurableTask.Worker.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "D8D460A09A7E51C1A365883F3296394C1B86257A5235EC30DEDD597BA5F0FC49"
+ },
+ {
+ "Source": "/Dependencies/Newtonsoft.Json.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "72CF291D4BAB0EDD08A9B07C6173E1E7AD1ABB7AB727FD7044BF6305D7515661"
+ },
+ {
+ "Source": "/Dependencies/Castle.Core.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "ACA835865E0F0E19E5E69031D1C4C1288961CF4972C5918868ACA513CA6BCE51"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "E4EB5EB7E28A5548CD904FE1A9C3569ADEF91F52B654DB8A3C56A0A5177A09EB"
+ },
+ {
+ "Source": "/Dependencies/System.Diagnostics.EventLog.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "24A02D97C2FC6D56735E196BB7FAAAE8FAF0068C486D0C3C7FA3E3B73B4F12A4"
+ },
+ {
+ "Source": "/Dependencies/DurableEngine.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "BA0249BE14025D6ECA437244B6F9748EEAA99A15A1DE1D8AB288987FECB7FE81"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "9CCD830351AA28BC683D4F8D1CEFD9E724161F972D25BFB64EEE5BF55C48C5E3"
+ },
+ {
+ "Source": "/Dependencies/System.Reactive.Core.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "47411515E22254958AB719D8C312E6BF7904E32DD1869EB27BF2DDC4E590CAB4"
+ },
+ {
+ "Source": "/Dependencies/DurableEngine.pdb",
+ "AzureArtifactsHash": "0442534A4201000100000000000C0000005044422076312E3000000000000006007C",
+ "Sha256Hash": "340528248A6410D58F860D03557310454EF3285B642C21343DDD083D2E320218"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "ECFCEF11C42FA4AD5CF2D4D7F553C8F0017E5EB7A4A9B032B4D0505C98EF4EF4"
+ },
+ {
+ "Source": "/Dependencies/System.Reactive.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "19F0112CD1F5172EE2688E96DDD44ADA39A4BB1CB2315A154B63E9064F6E3DC0"
+ },
+ {
+ "Source": "/Dependencies/DurableTask.Core.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "7AA8BB6481F2C61D220A73CD2DA77ADB2D2D28DF1FA02E093DDA3A29A55DC514"
+ },
+ {
+ "Source": "/Dependencies/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "DF9EB42421A85F84FF2FC98EA25C23FD7D8813DF23F3AFE28E96B83CC302C8A6"
+ },
+ {
+ "Source": "/Dependencies/System.Reactive.Interfaces.dll",
+ "AzureArtifactsHash": "044D5A90000300000004000000FFFF0000B800000000000000400000000000000000",
+ "Sha256Hash": "EDEE1397E02DF23F85D0B242BB098C850D64CD6CA860AABB34426253A6E3ADAB"
+ }
+ ],
+ "CloudBuildId": "161406",
+ "Repo": "https://github.com/Azure/azure-functions-durable-powershell",
+ "Branch": "main",
+ "CommitId": "936fcb2e1de189e397c154eff6ffe889e9ea2c9d",
+ "Version": "0.0.1",
+ "Timestamp": 1707882977
+}
\ No newline at end of file
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/manifest.json.sha256 b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/manifest.json.sha256
new file mode 100644
index 000000000000..676d4e7c1744
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/manifest.json.sha256 differ
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/spdx_2.2/manifest.spdx.json b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/spdx_2.2/manifest.spdx.json
new file mode 100644
index 000000000000..0929551b8a2c
--- /dev/null
+++ b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/spdx_2.2/manifest.spdx.json
@@ -0,0 +1,614 @@
+{
+ "files": [
+ {
+ "fileName": "./AzureFunctions.PowerShell.Durable.SDK.dll",
+ "SPDXID": "SPDXRef-File--AzureFunctions.PowerShell.Durable.SDK.dll-6F9536B4793B4E4A898D19796D658F79421C54A6",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "3f64733e95fa5eaad067ddb374c685ca986498c76a61d7ccc0e54990f8777598"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "6f9536b4793b4e4a898d19796d658f79421c54a6"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.Bcl.AsyncInterfaces.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.Bcl.AsyncInterfaces.dll-2E438AEF830795B2D240CF3160A3353BC6CB0232",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "5705d245072d3eb78400547b32147dbb6e2c8b02ba8bda76729798f5efdeaecb"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "2e438aef830795b2d240cf3160a3353bc6cb0232"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.Extensions.Logging.Abstractions.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.Extensions.Logging.Abstractions.dll-02EC010722BBD1740782B502DF30D4475AEBE5F2",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "d575c9d1543ca726ce14dbdffd103e93ea527cd46bb28316da1f4122dbc55d56"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "02ec010722bbd1740782b502df30d4475aebe5f2"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/System.Reactive.Linq.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-System.Reactive.Linq.dll-21B3C0F5AE5F6C6A436ECC37E747BF931C141D14",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "33eb42b7065a01963dbcd762cdc81a4135b6e0e927ddf4c88eae121ad5f69f92"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "21b3c0f5ae5f6c6a436ecc37e747bf931c141d14"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./AzureFunctions.PowerShell.Durable.SDK.pdb",
+ "SPDXID": "SPDXRef-File--AzureFunctions.PowerShell.Durable.SDK.pdb-0910275DA2D13FAEDDEC83044EFFB5ABDE669BF8",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "d0faa169052e0509893efab5c413c5184571a71824c7ef23486d235dccfbe808"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "0910275da2d13faeddec83044effb5abde669bf8"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.DurableTask.Abstractions.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.DurableTask.Abstractions.dll-D1D43D1F5B80C63EF1E52985922BB90ADEA5DEEC",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "cc13ef28be5c94860ccadf1b9d9e8e505484b1ab40d2d3f60827e14e109feb0c"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "d1d43d1f5b80c63ef1e52985922bb90adea5deec"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.Extensions.Options.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.Extensions.Options.dll-6EC0C1FE1332912086247080B55B06623C78326E",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "786112cb2f6646ef1170219a8c0bb813c9f14a6781e67c6266414f55a679565d"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "6ec0c1fe1332912086247080b55b06623c78326e"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/System.Reactive.PlatformServices.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-System.Reactive.PlatformServices.dll-8A33FDD641185C66DD4FD3DB88DF5504621D3BF4",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "2d864b716fbae8c1880143574332a10fbc6d98613aa09f6dd98d9d08b82b65ad"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "8a33fdd641185c66dd4fd3db88df5504621d3bf4"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./AzureFunctions.PowerShell.Durable.SDK.psd1",
+ "SPDXID": "SPDXRef-File--AzureFunctions.PowerShell.Durable.SDK.psd1-B73743D787C4BFC0ECA8585F5E1C37B28DE70DAC",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "b8a8129c8c7128112721040e2f0611f05daa5ea89586cc0dffe371bc3949d327"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "b73743d787c4bfc0eca8585f5e1c37b28de70dac"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.DurableTask.Client.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.DurableTask.Client.dll-0DE9E1C4F3587BC9C002F935BA5023890ED18B8F",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "ae75348d5d809c89d700b34e9dd3826e218dbb7e9749372abee72939fe29c426"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "0de9e1c4f3587bc9c002f935ba5023890ed18b8f"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.Extensions.Primitives.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.Extensions.Primitives.dll-376636C20CEE083DA54D4146479032170EC7231B",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "8ce9a85927ec7507b11ffe90080e7a811d51304a9e8b1da20c350159ba403902"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "376636c20cee083da54d4146479032170ec7231b"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/System.Reactive.Providers.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-System.Reactive.Providers.dll-74AA6DBBCB5397BB09D1E69FFCFE9526CBFCEB44",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "79a12c5227a000f8608520f2cab63becc4412415a1dbeff29179dfcaa13b6a3a"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "74aa6dbbcb5397bb09d1e69ffcfe9526cbfceb44"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./AzureFunctions.PowerShell.Durable.SDK.psm1",
+ "SPDXID": "SPDXRef-File--AzureFunctions.PowerShell.Durable.SDK.psm1-F3BBC7A52B2C2661C7D2806D1787FBD1FB1473B3",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "ec87a8ba539aab3498fc24227c2da03a5666c5274c23a8d79e4513988d896149"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "f3bbc7a52b2c2661c7d2806d1787fbd1fb1473b3"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.DurableTask.Worker.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.DurableTask.Worker.dll-D3C716C746EB41567EB15E92313871FF5DF6FE1E",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "d8d460a09a7e51c1a365883f3296394c1b86257a5235ec30dedd597ba5f0fc49"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "d3c716c746eb41567eb15e92313871ff5df6fe1e"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Newtonsoft.Json.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Newtonsoft.Json.dll-E3673D05D46F29E68241D4536BDDF18CDD0A913D",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "72cf291d4bab0edd08a9b07c6173e1e7ad1abb7ab727fd7044bf6305d7515661"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "e3673d05d46f29e68241d4536bddf18cdd0a913d"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Castle.Core.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Castle.Core.dll-EFB41379A448DA4C368F5694D0675F99662D27C6",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "aca835865e0f0e19e5e69031d1c4c1288961cf4972c5918868aca513ca6bce51"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "efb41379a448da4c368f5694d0675f99662d27c6"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.Extensions.Configuration.Abstractions.dll-C524C7D46A343B75A64BF52B19E3C70C453F9061",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "e4eb5eb7e28a5548cd904fe1a9c3569adef91f52b654db8a3c56a0a5177a09eb"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "c524c7d46a343b75a64bf52b19e3c70c453f9061"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/System.Diagnostics.EventLog.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-System.Diagnostics.EventLog.dll-96A914148520A9F0AB3733410129FFB7BA2992CC",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "24a02d97c2fc6d56735e196bb7faaae8faf0068c486d0c3c7fa3e3b73b4f12a4"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "96a914148520a9f0ab3733410129ffb7ba2992cc"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/DurableEngine.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-DurableEngine.dll-3E456B859993DC8BB19A9793877FA6F1545870CF",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "ba0249be14025d6eca437244b6f9748eeaa99a15a1de1d8ab288987fecb7fe81"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "3e456b859993dc8bb19a9793877fa6f1545870cf"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.Extensions.DependencyInjection.Abstractions.dll-CB8C35306AFD15358104ECFE70E724AD9C753E6F",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "9ccd830351aa28bc683d4f8d1cefd9e724161f972d25bfb64eee5bf55c48c5e3"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "cb8c35306afd15358104ecfe70e724ad9c753e6f"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/System.Reactive.Core.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-System.Reactive.Core.dll-A91898005B1CC48E3F6A4CBB835CAFFC8C6A85CB",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "47411515e22254958ab719d8c312e6bf7904e32dd1869eb27bf2ddc4e590cab4"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "a91898005b1cc48e3f6a4cbb835caffc8c6a85cb"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/DurableEngine.pdb",
+ "SPDXID": "SPDXRef-File--Dependencies-DurableEngine.pdb-64EF52D4B87DBCDDBB6055D321277C5C18C6DCC3",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "340528248a6410d58f860d03557310454ef3285b642c21343ddd083d2e320218"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "64ef52d4b87dbcddbb6055d321277c5c18c6dcc3"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.Extensions.FileProviders.Abstractions.dll-3029F45A1397291B4E7EEE9DB9B5DCDE5A47AB7D",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "ecfcef11c42fa4ad5cf2d4d7f553c8f0017e5eb7a4a9b032b4d0505c98ef4ef4"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "3029f45a1397291b4e7eee9db9b5dcde5a47ab7d"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/System.Reactive.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-System.Reactive.dll-9CBCA70CC79F7476D92B481C6BEC46CE85433328",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "19f0112cd1f5172ee2688e96ddd44ada39a4bb1cb2315a154b63e9064f6e3dc0"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "9cbca70cc79f7476d92b481c6bec46ce85433328"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/DurableTask.Core.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-DurableTask.Core.dll-0064DA99C6E1C6FED54FAB9396878975A1D28EAF",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "7aa8bb6481f2c61d220a73cd2da77adb2d2d28df1fa02e093dda3a29a55dc514"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "0064da99c6e1c6fed54fab9396878975a1d28eaf"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-Microsoft.Extensions.Hosting.Abstractions.dll-BBA99CBFE0EFD265CA5A2563624884D4F88BA0C3",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "df9eb42421a85f84ff2fc98ea25c23fd7d8813df23f3afe28e96b83cc302c8a6"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "bba99cbfe0efd265ca5a2563624884d4f88ba0c3"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ },
+ {
+ "fileName": "./Dependencies/System.Reactive.Interfaces.dll",
+ "SPDXID": "SPDXRef-File--Dependencies-System.Reactive.Interfaces.dll-74F54702F12252A2DAC2D87D89809C7A1A475F81",
+ "checksums": [
+ {
+ "algorithm": "SHA256",
+ "checksumValue": "edee1397e02df23f85d0b242bb098c850d64cd6ca860aabb34426253a6e3adab"
+ },
+ {
+ "algorithm": "SHA1",
+ "checksumValue": "74f54702f12252a2dac2d87d89809c7a1a475f81"
+ }
+ ],
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoInFiles": [
+ "NOASSERTION"
+ ],
+ "copyrightText": "NOASSERTION"
+ }
+ ],
+ "packages": [
+ {
+ "name": "Azure Pipelines Hosted Image win19",
+ "SPDXID": "SPDXRef-Package-CF52430A379AE1274A6751A714171963CB52B825609E0388B1BFD37D3EB601BA",
+ "downloadLocation": "NOASSERTION",
+ "filesAnalyzed": false,
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoFromFiles": [
+ "NOASSERTION"
+ ],
+ "licenseDeclared": "NOASSERTION",
+ "copyrightText": "NOASSERTION",
+ "versionInfo": "20240204.1.0",
+ "externalRefs": [
+ {
+ "referenceCategory": "PACKAGE_MANAGER",
+ "referenceType": "purl",
+ "referenceLocator": "https://github.com/actions/virtual-environments"
+ }
+ ],
+ "supplier": "Microsoft/GitHub"
+ },
+ {
+ "name": "AzureFunctions.PowerShell.Durable.SDK",
+ "SPDXID": "SPDXRef-RootPackage",
+ "downloadLocation": "NOASSERTION",
+ "packageVerificationCode": {
+ "packageVerificationCodeValue": "d00047eebac7ad954598fd8b41bf2c6e643db5a5"
+ },
+ "filesAnalyzed": true,
+ "licenseConcluded": "NOASSERTION",
+ "licenseInfoFromFiles": [
+ "NOASSERTION"
+ ],
+ "licenseDeclared": "NOASSERTION",
+ "copyrightText": "NOASSERTION",
+ "versionInfo": "161406",
+ "supplier": "Organization: Microsoft",
+ "hasFiles": [
+ "SPDXRef-File--Dependencies-System.Reactive.Interfaces.dll-74F54702F12252A2DAC2D87D89809C7A1A475F81",
+ "SPDXRef-File--Dependencies-Microsoft.Extensions.Hosting.Abstractions.dll-BBA99CBFE0EFD265CA5A2563624884D4F88BA0C3",
+ "SPDXRef-File--Dependencies-DurableTask.Core.dll-0064DA99C6E1C6FED54FAB9396878975A1D28EAF",
+ "SPDXRef-File--Dependencies-System.Reactive.Providers.dll-74AA6DBBCB5397BB09D1E69FFCFE9526CBFCEB44",
+ "SPDXRef-File--Dependencies-Microsoft.Extensions.Primitives.dll-376636C20CEE083DA54D4146479032170EC7231B",
+ "SPDXRef-File--Dependencies-Microsoft.DurableTask.Client.dll-0DE9E1C4F3587BC9C002F935BA5023890ED18B8F",
+ "SPDXRef-File--AzureFunctions.PowerShell.Durable.SDK.psd1-B73743D787C4BFC0ECA8585F5E1C37B28DE70DAC",
+ "SPDXRef-File--Dependencies-System.Reactive.PlatformServices.dll-8A33FDD641185C66DD4FD3DB88DF5504621D3BF4",
+ "SPDXRef-File--Dependencies-Microsoft.Extensions.Options.dll-6EC0C1FE1332912086247080B55B06623C78326E",
+ "SPDXRef-File--Dependencies-Microsoft.DurableTask.Abstractions.dll-D1D43D1F5B80C63EF1E52985922BB90ADEA5DEEC",
+ "SPDXRef-File--AzureFunctions.PowerShell.Durable.SDK.pdb-0910275DA2D13FAEDDEC83044EFFB5ABDE669BF8",
+ "SPDXRef-File--Dependencies-Newtonsoft.Json.dll-E3673D05D46F29E68241D4536BDDF18CDD0A913D",
+ "SPDXRef-File--Dependencies-Microsoft.DurableTask.Worker.dll-D3C716C746EB41567EB15E92313871FF5DF6FE1E",
+ "SPDXRef-File--AzureFunctions.PowerShell.Durable.SDK.psm1-F3BBC7A52B2C2661C7D2806D1787FBD1FB1473B3",
+ "SPDXRef-File--Dependencies-System.Reactive.dll-9CBCA70CC79F7476D92B481C6BEC46CE85433328",
+ "SPDXRef-File--Dependencies-Microsoft.Extensions.FileProviders.Abstractions.dll-3029F45A1397291B4E7EEE9DB9B5DCDE5A47AB7D",
+ "SPDXRef-File--Dependencies-DurableEngine.pdb-64EF52D4B87DBCDDBB6055D321277C5C18C6DCC3",
+ "SPDXRef-File--Dependencies-System.Diagnostics.EventLog.dll-96A914148520A9F0AB3733410129FFB7BA2992CC",
+ "SPDXRef-File--Dependencies-Microsoft.Extensions.Configuration.Abstractions.dll-C524C7D46A343B75A64BF52B19E3C70C453F9061",
+ "SPDXRef-File--Dependencies-Castle.Core.dll-EFB41379A448DA4C368F5694D0675F99662D27C6",
+ "SPDXRef-File--Dependencies-System.Reactive.Core.dll-A91898005B1CC48E3F6A4CBB835CAFFC8C6A85CB",
+ "SPDXRef-File--Dependencies-Microsoft.Extensions.DependencyInjection.Abstractions.dll-CB8C35306AFD15358104ECFE70E724AD9C753E6F",
+ "SPDXRef-File--Dependencies-DurableEngine.dll-3E456B859993DC8BB19A9793877FA6F1545870CF",
+ "SPDXRef-File--Dependencies-System.Reactive.Linq.dll-21B3C0F5AE5F6C6A436ECC37E747BF931C141D14",
+ "SPDXRef-File--Dependencies-Microsoft.Extensions.Logging.Abstractions.dll-02EC010722BBD1740782B502DF30D4475AEBE5F2",
+ "SPDXRef-File--Dependencies-Microsoft.Bcl.AsyncInterfaces.dll-2E438AEF830795B2D240CF3160A3353BC6CB0232",
+ "SPDXRef-File--AzureFunctions.PowerShell.Durable.SDK.dll-6F9536B4793B4E4A898D19796D658F79421C54A6"
+ ]
+ }
+ ],
+ "externalDocumentRefs": [],
+ "relationships": [
+ {
+ "relationshipType": "DEPENDS_ON",
+ "relatedSpdxElement": "SPDXRef-Package-CF52430A379AE1274A6751A714171963CB52B825609E0388B1BFD37D3EB601BA",
+ "spdxElementId": "SPDXRef-RootPackage"
+ },
+ {
+ "relationshipType": "DESCRIBES",
+ "relatedSpdxElement": "SPDXRef-RootPackage",
+ "spdxElementId": "SPDXRef-DOCUMENT"
+ }
+ ],
+ "spdxVersion": "SPDX-2.2",
+ "dataLicense": "CC0-1.0",
+ "SPDXID": "SPDXRef-DOCUMENT",
+ "name": "AzureFunctions.PowerShell.Durable.SDK 161406",
+ "documentNamespace": "https://sbom.microsoft/1:vB_F0XdED0q5n_yQEwCaWA:kgyn5ihBn0OAEjgv541jlg/110:161406/ydvUjPTB7UO2kZ1ZV8NHQQ",
+ "creationInfo": {
+ "created": "2024-02-14T03:56:17Z",
+ "creators": [
+ "Organization: Microsoft",
+ "Tool: Microsoft.SBOMTool-2.1.31"
+ ]
+ },
+ "documentDescribes": [
+ "SPDXRef-RootPackage"
+ ]
+}
\ No newline at end of file
diff --git a/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/spdx_2.2/manifest.spdx.json.sha256 b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/spdx_2.2/manifest.spdx.json.sha256
new file mode 100644
index 000000000000..8d2e41ac14f7
Binary files /dev/null and b/Modules/AzureFunctions.PowerShell.Durable.SDK/1.1.0/_manifest/spdx_2.2/manifest.spdx.json.sha256 differ
diff --git a/Modules/CIPPCore/Public/CippQueue/Invoke-ListCippQueue.ps1 b/Modules/CIPPCore/Public/CippQueue/Invoke-ListCippQueue.ps1
index e5f7a93a5e2a..a8e38d64bc16 100644
--- a/Modules/CIPPCore/Public/CippQueue/Invoke-ListCippQueue.ps1
+++ b/Modules/CIPPCore/Public/CippQueue/Invoke-ListCippQueue.ps1
@@ -1,6 +1,9 @@
function Invoke-ListCippQueue {
- # Input bindings are passed in via param block.
- param($Request = $null, $TriggerMetadata)
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
+ param($Request = $null, $TriggerMetadata = $null)
if ($Request) {
$APIName = $TriggerMetadata.FunctionName
@@ -11,13 +14,58 @@ function Invoke-ListCippQueue {
}
$CippQueue = Get-CippTable -TableName 'CippQueue'
- $CippQueueData = Get-CIPPAzDataTableEntity @CippQueue | Where-Object { ($_.Timestamp.DateTime) -ge (Get-Date).ToUniversalTime().AddHours(-1) } | Sort-Object -Property Timestamp -Descending
+ $CippQueueTasks = Get-CippTable -TableName 'CippQueueTasks'
+ $CippQueueData = Get-CIPPAzDataTableEntity @CippQueue | Where-Object { ($_.Timestamp.DateTime) -ge (Get-Date).ToUniversalTime().AddHours(-3) } | Sort-Object -Property Timestamp -Descending
+
+ $QueueData = foreach ($Queue in $CippQueueData) {
+ $Tasks = Get-CIPPAzDataTableEntity @CippQueueTasks -Filter "QueueId eq '$($Queue.RowKey)'" | Where-Object { $_.Name } | Select-Object Timestamp, Name, Status
+ $TaskStatus = @{}
+ $Tasks | Group-Object -Property Status | ForEach-Object {
+ $TaskStatus.$($_.Name) = $_.Count
+ }
+
+ if ($Tasks) {
+ if ($Tasks.Status -notcontains 'Running' -and ($TaskStatus.Completed + $TaskStatus.Failed) -eq $Queue.TotalTasks) {
+ if ($Tasks.Status -notcontains 'Failed') {
+ $Queue.Status = 'Completed'
+ } else {
+ $Queue.Status = 'Completed (with errors)'
+ }
+ } else {
+ $Queue.Status = 'Running'
+ }
+ }
+
+ $TotalCompleted = $TaskStatus.Completed ?? 0
+ $TotalFailed = $TaskStatus.Failed ?? 0
+ $TotalRunning = $TaskStatus.Running ?? 0
+
+ [PSCustomObject]@{
+ PartitionKey = $Queue.PartitionKey
+ RowKey = $Queue.RowKey
+ Name = $Queue.Name
+ Link = $Queue.Link
+ Reference = $Queue.Reference
+ TotalTasks = $Queue.TotalTasks
+ CompletedTasks = $TotalCompleted + $TotalFailed
+ RunningTasks = $TotalRunning
+ FailedTasks = $TotalFailed
+ PercentComplete = [math]::Round(((($TotalCompleted + $TotalFailed) / $Queue.TotalTasks) * 100), 1)
+ PercentFailed = [math]::Round((($TotalFailed / $Queue.TotalTasks) * 100), 1)
+ PercentRunning = [math]::Round((($TotalRunning / $Queue.TotalTasks) * 100), 1)
+ Tasks = $Tasks
+ Status = $Queue.Status
+ Timestamp = $Queue.Timestamp
+ }
+
+ }
+
if ($request) {
Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
StatusCode = [HttpStatusCode]::OK
- Body = @($CippQueueData)
+ Body = @($QueueData)
})
} else {
- return $CippQueueData
+ return $QueueData
}
}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/CippQueue/Invoke-RemoveCippQueue.ps1 b/Modules/CIPPCore/Public/CippQueue/Invoke-RemoveCippQueue.ps1
index 92212db7f6f8..32c577f6d356 100644
--- a/Modules/CIPPCore/Public/CippQueue/Invoke-RemoveCippQueue.ps1
+++ b/Modules/CIPPCore/Public/CippQueue/Invoke-RemoveCippQueue.ps1
@@ -1,5 +1,8 @@
function Invoke-RemoveCippQueue {
- # Input bindings are passed in via param block.
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Request, $TriggerMetadata)
$APIName = $TriggerMetadata.FunctionName
@@ -10,6 +13,8 @@ function Invoke-RemoveCippQueue {
$CippQueue = Get-CippTable -TableName 'CippQueue'
Clear-AzDataTable @CippQueue
+ $CippQueueTasks = Get-CippTable -TableName 'CippQueueTasks'
+ Clear-AzDataTable @CippQueueTasks
Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
StatusCode = [HttpStatusCode]::OK
diff --git a/Modules/CIPPCore/Public/CippQueue/New-CippQueueEntry.ps1 b/Modules/CIPPCore/Public/CippQueue/New-CippQueueEntry.ps1
index a64351dcfdb2..e5489ba33e37 100644
--- a/Modules/CIPPCore/Public/CippQueue/New-CippQueueEntry.ps1
+++ b/Modules/CIPPCore/Public/CippQueue/New-CippQueueEntry.ps1
@@ -1,8 +1,13 @@
function New-CippQueueEntry {
+ <#
+ .FUNCTIONALITY
+ Internal
+ #>
Param(
- $Name,
- $Link,
- $Reference
+ [string]$Name,
+ [string]$Link,
+ [string]$Reference,
+ [int]$TotalTasks = 1
)
$CippQueue = Get-CippTable -TableName CippQueue
@@ -14,6 +19,7 @@ function New-CippQueueEntry {
Link = $Link
Reference = $Reference
Status = 'Queued'
+ TotalTasks = $TotalTasks
}
$CippQueue.Entity = $QueueEntry
diff --git a/Modules/CIPPCore/Public/CippQueue/Set-CippQueueTask.ps1 b/Modules/CIPPCore/Public/CippQueue/Set-CippQueueTask.ps1
new file mode 100644
index 000000000000..33c48d2adff4
--- /dev/null
+++ b/Modules/CIPPCore/Public/CippQueue/Set-CippQueueTask.ps1
@@ -0,0 +1,27 @@
+function Set-CippQueueTask {
+ <#
+ .FUNCTIONALITY
+ Internal
+ #>
+ param(
+ [string]$QueueId,
+ [string]$TaskId = (New-Guid).Guid.ToString(),
+ [string]$Name,
+ [ValidateSet('Queued', 'Running', 'Completed', 'Failed')]
+ [string]$Status = 'Queued'
+ )
+
+ $CippQueueTasks = Get-CippTable -TableName CippQueueTasks
+
+ $QueueTaskEntry = @{
+ PartitionKey = 'Task'
+ RowKey = $TaskId
+ QueueId = $QueueId
+ Name = $Name
+ Status = $Status
+ }
+ $CippQueueTasks.Entity = $QueueTaskEntry
+
+ Add-CIPPAzDataTableEntity @CippQueueTasks -Force
+ return $QueueTaskEntry
+}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/CippQueue/Update-CippQueueEntry.ps1 b/Modules/CIPPCore/Public/CippQueue/Update-CippQueueEntry.ps1
index 2662d71bf750..e0202b01baf3 100644
--- a/Modules/CIPPCore/Public/CippQueue/Update-CippQueueEntry.ps1
+++ b/Modules/CIPPCore/Public/CippQueue/Update-CippQueueEntry.ps1
@@ -1,4 +1,8 @@
function Update-CippQueueEntry {
+ <#
+ .FUNCTIONALITY
+ Internal
+ #>
Param(
[Parameter(Mandatory = $true)]
$RowKey,
@@ -18,7 +22,7 @@ function Update-CippQueueEntry {
if ($Name) {
$QueueEntry.Name = $Name
}
- Update-AzDataTableEntity @CippQueue -Entity $QueueEntry
+ Add-CIPPAzDataTableEntity @CippQueue -Entity $QueueEntry -Force
$QueueEntry
} else {
return $false
diff --git a/Modules/CIPPCore/Public/ConversionTable.csv b/Modules/CIPPCore/Public/ConversionTable.csv
index c1fd92909966..dc18a7df450d 100644
--- a/Modules/CIPPCore/Public/ConversionTable.csv
+++ b/Modules/CIPPCore/Public/ConversionTable.csv
@@ -43,6 +43,10 @@ Azure Information Protection Plan 1,RIGHTSMANAGEMENT_CE,a0e6a48f-b056-4037-af70-
Azure Information Protection Premium P1_USGOV_GCCHIGH,RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH,c57afa2a-d468-46c4-9a90-f86cb1b3c54a,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Azure Information Protection Premium P1_USGOV_GCCHIGH,RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH,c57afa2a-d468-46c4-9a90-f86cb1b3c54a,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,Azure Information Protection Premium P1
Azure Information Protection Premium P1_USGOV_GCCHIGH,RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH,c57afa2a-d468-46c4-9a90-f86cb1b3c54a,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Basic Collaboration,OFFICEBASIC,4468c39a-28b2-42fb-9094-840bcf28771f,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
+Basic Collaboration,OFFICEBASIC,4468c39a-28b2-42fb-9094-840bcf28771f,ONEDRIVELITE_IW,b4ac11a0-32ff-4e78-982d-e039fa803dec,Office for the web with OneDrive for business
+Basic Collaboration,OFFICEBASIC,4468c39a-28b2-42fb-9094-840bcf28771f,MCOBASIC,448898aa-3ae7-478c-b49a-1fac7a8a35cf,Skype Meetings
+Basic Collaboration,OFFICEBASIC,4468c39a-28b2-42fb-9094-840bcf28771f,YAMMER_BASIC,6db7aeea-6c4a-475d-bbb0-7338bc73d646,Yammer
Business Apps (free),SMB_APPS,90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96,DYN365BC_MS_INVOICING,39b5c996-467e-4e60-bd62-46066f572726,Microsoft Invoicing
Business Apps (free),SMB_APPS,90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
Common Data Service for Apps File Capacity,CDS_FILE_CAPACITY,631d5fb1-a668-4c2a-9427-8830665a742e,CDS_FILE_CAPACITY,dd12a3a8-caec-44f8-b4fb-2f1a864b51e3,Common Data Service for Apps File Capacity
@@ -195,6 +199,8 @@ Dynamics 365 Customer Service Professional,DYN365_CUSTOMER_SERVICE_PRO,1439b6e2-
Dynamics 365 Customer Service Professional,DYN365_CUSTOMER_SERVICE_PRO,1439b6e2-5d59-4873-8c59-d60e2a196e92,FLOW_CUSTOMER_SERVICE_PRO,0368fc9c-3721-437f-8b7d-3d0f888cdefc,Power Automate for Customer Service Pro
Dynamics 365 Customer Service Professional,DYN365_CUSTOMER_SERVICE_PRO,1439b6e2-5d59-4873-8c59-d60e2a196e92,PROJECT_ESSENTIALS,1259157c-8581-4875-bca7-2ffb18c51bda,Project Online Essentials
Dynamics 365 Customer Service Professional,DYN365_CUSTOMER_SERVICE_PRO,1439b6e2-5d59-4873-8c59-d60e2a196e92,SHAREPOINTENTERPRISE,5dbe027f-2339-4123-9542-606e4d348a72,SharePoint (Plan 2)
+Dynamics 365 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer,D365_CUSTOMER_SERVICE_PRO_ATTACH,19dec69d-d9f3-4792-8a39-d8ecdf51937b,D365_CUSTOMER_SERVICE_PRO_ATTACH,a9dd2dca-10ae-4da2-aaf0-d3fe8a825110,Dynamics 365 for Customer Service Pro Attach
+Dynamics 365 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer,D365_CUSTOMER_SERVICE_PRO_ATTACH,19dec69d-d9f3-4792-8a39-d8ecdf51937b,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 Customer Voice,DYN365_CUSTOMER_VOICE_BASE,359ea3e6-8130-4a57-9f8f-ad897a0342f1,Customer_Voice_Base,296820fe-dce5-40f4-a4f2-e14b8feef383,Dynamics 365 Customer Voice Base Plan
Dynamics 365 Customer Voice,DYN365_CUSTOMER_VOICE_BASE,359ea3e6-8130-4a57-9f8f-ad897a0342f1,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 Customer Voice Additional Responses,Forms_Pro_AddOn,446a86f8-a0cb-4095-83b3-d100eb050e3d,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
@@ -311,6 +317,11 @@ Dynamics 365 for Field Service for Government,D365_ENTERPRISE_FIELD_SERVICE_GOV,
Dynamics 365 for Financials Business Edition,DYN365_FINANCIALS_BUSINESS_SKU,cc13a803-544e-4464-b4e4-6d6169a138fa,DYN365_FINANCIALS_BUSINESS,920656a2-7dd8-4c83-97b6-a356414dbd36,FLOW FOR DYNAMICS 365
Dynamics 365 for Financials Business Edition,DYN365_FINANCIALS_BUSINESS_SKU,cc13a803-544e-4464-b4e4-6d6169a138fa,FLOW_DYN_APPS,7e6d7d78-73de-46ba-83b1-6d25117334ba,POWERAPPS FOR DYNAMICS 365
Dynamics 365 for Financials Business Edition,DYN365_FINANCIALS_BUSINESS_SKU,cc13a803-544e-4464-b4e4-6d6169a138fa,POWERAPPS_DYN_APPS,874fc546-6efe-4d22-90b8-5c4e7aa59f4b,DYNAMICS 365 FOR FINANCIALS
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,D365_GUIDES_VIRAL_TRIAL,fe986032-d840-4817-82d4-51fe4fbbe163,Dynamics 365 Guides vTrial
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,DYN365_CDS_VIRAL,17ab22cd-a0b3-4536-910a-cb6eb12696c0,Common Data Service
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,POWER_APPS_DYN365_VIRAL_TRIAL_MIXED_REALITY,066e2fd1-ba15-40e7-aa96-d6636b1cdf71,Power Apps for Dynamics 365 Mixed Reality
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,POWER_AUTOMATE_DYN365_VIRAL_TRIAL_MIXED_REALITY,26fa8a18-2812-4b3d-96b4-864818ce26be,Power Automate for Dynamics 365 Mixed Reality
Dynamics 365 Hybrid Connector,CRM_HYBRIDCONNECTOR,de176c31-616d-4eae-829a-718918d7ec23,CRM_HYBRIDCONNECTOR,0210d5c8-49d2-4dd1-a01b-a91c7c14e0bf,CRM Hybrid Connector
Dynamics 365 Hybrid Connector,CRM_HYBRIDCONNECTOR,de176c31-616d-4eae-829a-718918d7ec23,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 for Marketing Additional Application,DYN365_MARKETING_APPLICATION_ADDON,99c5688b-6c75-4496-876f-07f0fbd69add,DYN365_MARKETING_APPLICATION_ADDON,51cf0638-4861-40c0-8b20-1161ab2f80be,Dynamics 365 for Marketing Additional Application
@@ -327,6 +338,20 @@ Dynamics 365 for Marketing USL,D365_MARKETING_USER,4b32a493-9a67-4649-8eb9-9fc5a
Dynamics 365 for Marketing USL,D365_MARKETING_USER,4b32a493-9a67-4649-8eb9-9fc5a5f75c12,DYN365_MARKETING_USER,5d7a6abc-eebd-46ab-96e1-e4a2f54a2248,Dynamics 365 for Marketing USL
Dynamics 365 for Marketing USL,D365_MARKETING_USER,4b32a493-9a67-4649-8eb9-9fc5a5f75c12,Forms_Pro_Marketing,76366ba0-d230-47aa-8087-b6d55dae454f,Microsoft Dynamics 365 Customer Voice for Marketing
Dynamics 365 for Marketing USL,D365_MARKETING_USER,4b32a493-9a67-4649-8eb9-9fc5a5f75c12,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,DYN365_RETAIL_Activity,f06754ec-6d72-4bf6-991c-4cb5413d9932,Dynamics 365 for Retail Activity
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,DYN365_Enterprise_Talent_Attract_Activity,aac5a56b-b02e-4608-8014-b076646d4011,Dynamics 365 for Talent - Attract Experience Activity
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,DYN365_Enterprise_Talent_Onboard_Activity,db225597-e9c2-4d96-8ace-5424744c80f8,Dynamics 365 for Talent - Onboard Experience
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,Dynamics_365_for_Talent_Activity,1f87ee90-5c3a-4cf9-b6fd-e3e8017c26ec,Dynamics 365 for Talent Activity
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,Dynamics_365_for_Operations_Activity,6bddf93e-d6f4-4991-b9fc-30cfdf07ee7b,Dynamics365 for Operations Activity
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,D365CDSforProjectOperations,7df1d500-ca5c-4229-8cea-815bc88798c9,Common Data Service for Dynamics 365 Project Operations
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,D365_ProjectOperationsCDSAttach,e564d403-7eaf-4c91-b92f-bb0dc62026e1,Dynamics 365 Project Operations CDS Attach
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,Power_Pages_Internal_User,60bf28f9-2b70-4522-96f7-335f5e06c941,Power Pages Internal User
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,D365_ProjectOperations,69f07c66-bee4-4222-b051-195095efee5b,Dynamics 365 Project Operations
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,D365_ProjectOperationsAttach,fa7675bd-6717-40e7-8172-d0bbcbe1ab12,Dynamics 365 Project Operations Attach
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,PROJECT_FOR_PROJECT_OPERATIONS_ATTACH,6d8e07c6-9613-484f-8cc1-a66c5c3979bb,Project for Project Operations Attach
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,SHAREPOINTSTANDARD,c7699d2e-19aa-44de-8edf-1736da088ca1,SharePoint (Plan 1)
Dynamics 365 for Project Service Automation Enterprise Edition for Government,DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV,1ec19b5f-7542-4b20-b01f-fb5d3f040e2d,DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV,1d8c8e0e-4308-4db5-8a41-b129dbdaea20,Dynamics 365 for Project Service Automation for Government
Dynamics 365 for Project Service Automation Enterprise Edition for Government,DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV,1ec19b5f-7542-4b20-b01f-fb5d3f040e2d,Forms_Pro_PS_GCC,e98256c5-17d0-4987-becc-e991c52d55c6,Microsoft Dynamics 365 Customer Voice for Project Service Automation for GCC
Dynamics 365 for Project Service Automation Enterprise Edition for Government,DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV,1ec19b5f-7542-4b20-b01f-fb5d3f040e2d,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
@@ -386,6 +411,12 @@ Dynamics 365 Sales Premium,DYN365_SALES_PREMIUM,2edaa1dc-966d-4475-93d6-8ee8dfd9
Dynamics 365 Sales Premium,DYN365_SALES_PREMIUM,2edaa1dc-966d-4475-93d6-8ee8dfd96877,Power_Pages_Internal_User,60bf28f9-2b70-4522-96f7-335f5e06c941,Power Pages Internal User
Dynamics 365 Sales Premium,DYN365_SALES_PREMIUM,2edaa1dc-966d-4475-93d6-8ee8dfd96877,Forms_Pro_SalesEnt,8839ef0e-91f1-4085-b485-62e06e7c7987,Microsoft Dynamics 365 Customer Voice for Sales Enterprise
Dynamics 365 Sales Premium,DYN365_SALES_PREMIUM,2edaa1dc-966d-4475-93d6-8ee8dfd96877,DYN365_ENTERPRISE_SALES,2da8e897-7791-486b-b08f-cc63c8129df7,Dynamics 365 for Sales
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,Power_Pages_Internal_User,60bf28f9-2b70-4522-96f7-335f5e06c941,Power Pages Internal User
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,DYN365_CDS_SUPPLYCHAINMANAGEMENT,b6a8b974-2956-4e14-ae81-f0384c363528,Common Data Service for Dynamics 365 Supply Chain Management
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,CDS_FOR_IOM,2bb89402-51e9-4c5a-be33-e954a9dd1ba6,Dataverse for IOM
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,DYN365_REGULATORY_SERVICE,c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65,"Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service"
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,D365_SCM_Attach,b21c777f-c2d5-486e-88f6-fc0a3e474271,Dynamics 365 for Supply Chain Management Attach
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 for Marketing Business Edition,DYN365_BUSINESS_MARKETING,238e2f8d-e429-4035-94db-6926be4ffe7b,DYN365_BUSINESS_Marketing,393a0c96-9ba1-4af0-8975-fa2f853a25ac,Dynamics 365 Marketing
Dynamics 365 for Marketing Business Edition,DYN365_BUSINESS_MARKETING,238e2f8d-e429-4035-94db-6926be4ffe7b,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 Regulatory Service - Enterprise Edition Trial,DYN365_REGULATORY_SERVICE,7ed4877c-0863-4f69-9187-245487128d4f,DYN365_REGULATORY_SERVICE,c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65,Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service
@@ -1139,7 +1170,7 @@ Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,OFFICE_BUSINESS,094e7854-93fc-4d55-b2c0-3ab5369ebdc1,Microsoft 365 Apps for business
@@ -1173,7 +1204,7 @@ Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,FLOW_O365_P1,0f9b09cb-62d1-4ff4-9129-43f4996f83f4,Power Automate for Office 365
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,DYN365BC_MS_INVOICING,39b5c996-467e-4e60-bd62-46066f572726,Microsoft Invoicing
-Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing Chat Enterprise
+Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
@@ -1258,7 +1289,7 @@ Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,MESH_AVA
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,BPOS_S_DlpAddOn,9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed,Data Loss Prevention
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
@@ -1310,7 +1341,7 @@ Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,FLOW_O36
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,DYN365BC_MS_INVOICING,39b5c996-467e-4e60-bd62-46066f572726,Microsoft Invoicing
-Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing Chat Enterprise
+Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,BPOS_S_DlpAddOn,9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed,Data Loss Prevention
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
@@ -1358,15 +1389,19 @@ Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Busine
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,POWERAPPS_O365_P1,92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c,Power Apps for Office 365
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,FLOW_O365_P1,0f9b09cb-62d1-4ff4-9129-43f4996f83f4,Power Automate for Office 365
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
+Microsoft 365 Business Voice (US),BUSINESS_VOICE_MED2_TELCO,08d7bce8-6e16-490e-89db-1d508e5e9609,MCOMEETADV,3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40,Microsoft 365 Audio Conferencing
+Microsoft 365 Business Voice (US),BUSINESS_VOICE_MED2_TELCO,08d7bce8-6e16-490e-89db-1d508e5e9609,MCOPSTN1,4ed3ff63-69d7-4fb7-b984-5aec7f605ca8,Microsoft 365 Domestic Calling Plan
+Microsoft 365 Business Voice (US),BUSINESS_VOICE_MED2_TELCO,08d7bce8-6e16-490e-89db-1d508e5e9609,MCOEV,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,Microsoft 365 Phone System
Microsoft 365 Domestic Calling Plan (120 Minutes),MCOPSTN_5,11dee6af-eca8-419f-8061-6864517c1875,MCOPSTN5,54a152dc-90de-4996-93d2-bc47e670fc06,MICROSOFT 365 DOMESTIC CALLING PLAN (120 min)
Microsoft 365 Domestic Calling Plan for GCC,MCOPSTN_1_GOV,923f58ab-fca1-46a1-92f9-89fda21238a8,MCOPSTN1_GOV,3c8a8792-7866-409b-bb61-1b20ace0368b,Domestic Calling for Government
Microsoft 365 Domestic Calling Plan for GCC,MCOPSTN_1_GOV,923f58ab-fca1-46a1-92f9-89fda21238a8,EXCHANGE_S_FOUNDATION_GOV,922ba911-5694-4e99-a794-73aed9bfeec8,Exchange Foundation for Government
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
+Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MESH_IMMERSIVE_FOR_TEAMS,f0ff6ac6-297d-49cd-be34-6dfef97f0c28,Immersive spaces for Teams
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
@@ -1409,57 +1444,58 @@ Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,INTUNE_A,c1ec4a95-1
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,POWERAPPS_O365_P2,c68f8d98-5534-41c8-bf36-22fa496fa792,Power Apps for Office 365
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Azure Rights Management,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,RMS_S_ENTERPRISE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Common Data Service for Teams,95b76021-6a53-4741-ab8b-1d1f3d66a95a,CDS_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Copilot,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing_Chat_Enterprise
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Exchange Online (Plan 2),efb87545-963c-4e0d-99df-69c6916d9eb0,EXCHANGE_S_ENTERPRISE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Information Protection and Governance Analytics � Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,ContentExplorer_Standard
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Information Protection for Office 365 - Standard,5136a095-5cf0-4aff-bec3-e84448b38ea5,MIP_S_CLP1
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Insights by MyAnalytics,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,MYANALYTICS_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft 365 Apps for enterprise,43de0ff5-c92c-492b-9116-175376d08c38,OFFICESUBSCRIPTION
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft 365 Lighthouse (Plan 1),6f23d6a9-adbf-481c-8538-b4c095654487,M365_LIGHTHOUSE_CUSTOMER_PLAN1
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft 365 Lighthouse (Plan 2),d55411c9-cfff-40a9-87c7-240f14df7da5,M365_LIGHTHOUSE_PARTNER_PLAN1
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Bookings,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,MICROSOFTBOOKINGS
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Clipchamp,a1ace008-72f3-4ea0-8dac-33b3a23a2472,CLIPCHAMP
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Defender for Endpoint Plan 1,292cc034-7b7c-4950-aaf5-943befd3f1d4,MDE_LITE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Forms (Plan E3),2789c901-c14e-48ab-a76a-be334d9d793a,FORMS_PLAN_E3
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Kaizala Pro,aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1,KAIZALA_O365_P3
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Planner,b737dad2-2f6c-4c65-90e3-ca563267e8b9,PROJECTWORKMANAGEMENT
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Search,94065c59-bc8e-4e8b-89e5-5138d471eaff,MICROSOFT_SEARCH
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft StaffHub,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Deskless
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Stream for Office 365 E3,9e700747-8b1d-45e5-ab8d-ef187ceec156,STREAM_O365_E3
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Mobile Device Management for Office 365,882e1d05-acd1-4ccb-8708-6ee03664b117,INTUNE_O365
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,OFFICESUBSCRIPTION,43de0ff5-c92c-492b-9116-175376d08c38,Microsoft 365 Apps for enterprise
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,M365_LIGHTHOUSE_CUSTOMER_PLAN1,6f23d6a9-adbf-481c-8538-b4c095654487,Microsoft 365 Lighthouse (Plan 1)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,M365_LIGHTHOUSE_PARTNER_PLAN1,d55411c9-cfff-40a9-87c7-240f14df7da5,Microsoft 365 Lighthouse (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,CLIPCHAMP,a1ace008-72f3-4ea0-8dac-33b3a23a2472,Microsoft Clipchamp
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MDE_LITE,292cc034-7b7c-4950-aaf5-943befd3f1d4,Microsoft Defender for Endpoint Plan 1
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,FORMS_PLAN_E3,2789c901-c14e-48ab-a76a-be334d9d793a,Microsoft Forms (Plan E3)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,KAIZALA_O365_P3,aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1,Microsoft Kaizala Pro
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,PROJECTWORKMANAGEMENT,b737dad2-2f6c-4c65-90e3-ca563267e8b9,Microsoft Planner
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MICROSOFT_SEARCH,94065c59-bc8e-4e8b-89e5-5138d471eaff,Microsoft Search
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Deskless,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Microsoft StaffHub
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,STREAM_O365_E3,9e700747-8b1d-45e5-ab8d-ef187ceec156,Microsoft Stream for Office 365 E3
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,INTUNE_O365,882e1d05-acd1-4ccb-8708-6ee03664b117,Mobile Device Management for Office 365
Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Nucleus,db4d623d-b514-490b-b7ef-8885eee514de,Nucleus
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Office for the Web,e95bec33-7c88-4a70-8e19-b10bd9d0c014,SHAREPOINTWAC
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Project for Office (Plan E3),31b4e2fc-4cd6-4e7d-9c1b-41407303bd66,PROJECT_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,SharePoint (Plan 2),5dbe027f-2339-4123-9542-606e4d348a72,SHAREPOINTENTERPRISE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Skype for Business Online (Plan 2),0feaeb32-d00e-4d66-bd5a-43b5b83db82c,MCOSTANDARD
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Sway,a23b959c-7ce8-4e57-9140-b90eb88a9e97,SWAY
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,To-Do (Plan 2),c87f142c-d1e9-4363-8630-aaea9c4d9ae5,BPOS_S_TODO_2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Viva Engage Core,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,VIVAENGAGE_CORE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Viva Learning Seeded,b76fb638-6ba6-402a-b9f9-83d28acb3d86,VIVA_LEARNING_SEEDED
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Whiteboard (Plan 2),94a54592-cd8b-425e-87c6-97868b000b91,WHITEBOARD_PLAN2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Yammer Enterprise,7547a3fe-08ee-4ccb-b430-5077c5041653,YAMMER_ENTERPRISE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Universal Print,795f6fe0-cc4d-4773-b050-5dde4dc704c9,UNIVERSAL_PRINT_01
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Windows 10/11 Enterprise (Original),21b439ba-a0ca-424f-a6cc-52f954a5b111,WIN10_PRO_ENT_SUB
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Windows Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows_Autopatch
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Windows Update for Business Deployment Service,7bf960f6-2cd9-443a-8046-5dbff9558365,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Azure Information Protection Premium P1,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,RMS_S_PREMIUM
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Common Data Service,4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14,DYN365_CDS_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Azure Multi-Factor Authentication,8a256a2b-b617-496d-b51b-e76466e88db0,MFA_PREMIUM
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Defender for Cloud Apps Discovery,932ad362-64a8-4783-9106-97849a1a30b9,ADALLOM_S_DISCOVERY
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Entra ID P1,41781fb2-bc02-4b7c-bd55-b576c07bb09d,AAD_PREMIUM
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Intune Plan 1,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,INTUNE_A
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Power Apps for Office 365,c68f8d98-5534-41c8-bf36-22fa496fa792,POWERAPPS_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Power Automate for Office 365,76846ad7-7776-4c40-a281-a386362dd1b9,FLOW_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Power Virtual Agents for Office 365,041fe683-03e4-45b6-b1af-c0cdc516daee,POWER_VIRTUAL_AGENTS_O365_P2
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,SHAREPOINTWAC,e95bec33-7c88-4a70-8e19-b10bd9d0c014,Office for the Web
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,PROJECT_O365_P2,31b4e2fc-4cd6-4e7d-9c1b-41407303bd66,Project for Office (Plan E3)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,SHAREPOINTENTERPRISE,5dbe027f-2339-4123-9542-606e4d348a72,SharePoint (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MCOSTANDARD,0feaeb32-d00e-4d66-bd5a-43b5b83db82c,Skype for Business Online (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,SWAY,a23b959c-7ce8-4e57-9140-b90eb88a9e97,Sway
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,BPOS_S_TODO_2,c87f142c-d1e9-4363-8630-aaea9c4d9ae5,To-Do (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,VIVAENGAGE_CORE,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,Viva Engage Core
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,VIVA_LEARNING_SEEDED,b76fb638-6ba6-402a-b9f9-83d28acb3d86,Viva Learning Seeded
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,WHITEBOARD_PLAN2,94a54592-cd8b-425e-87c6-97868b000b91,Whiteboard (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,Yammer Enterprise
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,UNIVERSAL_PRINT_01,795f6fe0-cc4d-4773-b050-5dde4dc704c9,Universal Print
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,WIN10_PRO_ENT_SUB,21b439ba-a0ca-424f-a6cc-52f954a5b111,Windows 10/11 Enterprise (Original)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,Azure Information Protection Premium P1
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,DYN365_CDS_O365_P2,4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14,Common Data Service
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MFA_PREMIUM,8a256a2b-b617-496d-b51b-e76466e88db0,Microsoft Azure Multi-Factor Authentication
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,ADALLOM_S_DISCOVERY,932ad362-64a8-4783-9106-97849a1a30b9,Microsoft Defender for Cloud Apps Discovery
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,Microsoft Entra ID P1
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune Plan 1
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,POWERAPPS_O365_P2,c68f8d98-5534-41c8-bf36-22fa496fa792,Power Apps for Office 365
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
-Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,CLIPCHAMP,a1ace008-72f3-4ea0-8dac-33b3a23a2472,Microsoft Clipchamp
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,MICROSOFT_LOOP,c4b8c31a-fb44-4c65-9837-a21f55fcabda,Microsoft Loop
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
-Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing Chat Enterprise
+Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
+Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
@@ -1505,7 +1541,7 @@ Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
@@ -1551,7 +1587,7 @@ Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-00
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
@@ -1595,7 +1631,7 @@ Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-00
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
@@ -1668,13 +1704,14 @@ Microsoft 365 E3_USGOV_GCCHIGH,SPE_E3_USGOV_GCCHIGH,ca9d1dd9-dfe9-4fef-b97c-9bc1
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,GRAPH_CONNECTORS_SEARCH_INDEX,a6520331-d7d4-4276-95f5-15c0933bc757,Graph Connectors Search with Index
+Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,MESH_IMMERSIVE_FOR_TEAMS,f0ff6ac6-297d-49cd-be34-6dfef97f0c28,Immersive spaces for Teams
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,INFORMATION_BARRIERS,c4801e8a-cb58-4c35-aca6-f2dcc106f287,Information Barriers
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,Content_Explorer,d9fa6af4-e046-4c89-9226-729a0786685d,Information Protection and Governance Analytics - Premium
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
@@ -1824,7 +1861,7 @@ Microsoft 365 E5 EEA (no Teams) with Calling Minutes,Microsoft_365_E5_EEA_(no_Te
Microsoft 365 E5 EEA (no Teams) with Calling Minutes,Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes,6ee4114a-9b2d-4577-9e7a-49fa43d222d3,FLOW_O365_P1,0f9b09cb-62d1-4ff4-9129-43f4996f83f4,Power Automate for Office 365
Microsoft 365 E5 EEA (no Teams) with Calling Minutes,Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes,6ee4114a-9b2d-4577-9e7a-49fa43d222d3,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
-Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing Chat Enterprise
+Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
@@ -1905,7 +1942,7 @@ Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -1987,7 +2024,7 @@ Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPAC
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2077,85 +2114,85 @@ Microsoft 365 E5 Compliance,INFORMATION_PROTECTION_COMPLIANCE,184efa21-98c3-4e5d
Microsoft 365 E5 Compliance,INFORMATION_PROTECTION_COMPLIANCE,184efa21-98c3-4e5d-95ab-d07053a96e67,MICROSOFTENDPOINTDLP,64bfac92-2b17-4482-b5e5-a0304429de3e,Microsoft Endpoint DLP
Microsoft 365 E5 Compliance,INFORMATION_PROTECTION_COMPLIANCE,184efa21-98c3-4e5d-95ab-d07053a96e67,RMS_S_PREMIUM2,5689bec4-755d-4753-8b61-40975025187c,Azure Information Protection Premium P2
Microsoft 365 E5 Compliance,INFORMATION_PROTECTION_COMPLIANCE,184efa21-98c3-4e5d-95ab-d07053a96e67,ADALLOM_S_STANDALONE,2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2,Microsoft Defender for Cloud Apps
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SharePoint Online (Plan 2),5dbe027f-2339-4123-9542-606e4d348a72,SHAREPOINTENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Bing Chat Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing_Chat_Enterprise
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Common Data Service for Teams,afa73018-811e-46e9-988f-f75d2b1b8430,CDS_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Customer Lockbox,9f431833-0334-42de-a7dc-70aa40db46db,LOCKBOX_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Customer Lockbox (A),3ec18638-bd4c-4d3b-8905-479ed636b83e,CustomerLockboxA_Enterprise
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Data Classification in Microsoft 365,cd31b152-6326-4d1b-ae1b-997b625182e6,MIP_S_Exchange
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Exchange Online (Plan 2),efb87545-963c-4e0d-99df-69c6916d9eb0,EXCHANGE_S_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Graph Connectors Search with Index,a6520331-d7d4-4276-95f5-15c0933bc757,GRAPH_CONNECTORS_SEARCH_INDEX
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Barriers,c4801e8a-cb58-4c35-aca6-f2dcc106f287,INFORMATION_BARRIERS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Protection and Governance Analytics - Premium,d9fa6af4-e046-4c89-9226-729a0786685d,Content_Explorer
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Protection and Governance Analytics � Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,ContentExplorer_Standard
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Protection for Office 365 - Premium,efb0351d-3b08-4503-993d-383af8de41e3,MIP_S_CLP2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Protection for Office 365 - Standard,5136a095-5cf0-4aff-bec3-e84448b38ea5,MIP_S_CLP1
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Insights by MyAnalytics,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,MYANALYTICS_P2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Advanced Auditing,2f442157-a11c-46b9-ae5b-6e39ff4e5849,M365_ADVANCED_AUDITING
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Apps for enterprise,43de0ff5-c92c-492b-9116-175376d08c38,OFFICESUBSCRIPTION
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Audio Conferencing,3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40,MCOMEETADV
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Audit Platform,f6de4823-28fa-440b-b886-4783fa86ddba,M365_AUDIT_PLATFORM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Communication Compliance,a413a9ff-720c-4822-98ef-2f37c2a21f4c,MICROSOFT_COMMUNICATION_COMPLIANCE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Defender,bf28f719-7844-4079-9c78-c1307898e192,MTP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Lighthouse (Plan 1),6f23d6a9-adbf-481c-8538-b4c095654487,M365_LIGHTHOUSE_CUSTOMER_PLAN1
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Phone System,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,MCOEV
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Bookings,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,MICROSOFTBOOKINGS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Clipchamp,a1ace008-72f3-4ea0-8dac-33b3a23a2472,CLIPCHAMP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Communications DLP,6dc145d6-95dd-4191-b9c3-185575ee6f6b,COMMUNICATIONS_DLP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Customer Key,6db1f1db-2b46-403f-be40-e39395f08dbb,CUSTOMER_KEY
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Data Investigations,46129a58-a698-46f0-aa5b-17f6586297d9,DATA_INVESTIGATIONS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Office 365 (Plan 1),f20fedf3-f3c3-43c3-8267-2bfdd51c0939,ATP_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Office 365 (Plan 2),8e0c0a52-6a6c-4d40-8370-dd62790dcd70,THREAT_INTELLIGENCE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Excel Advanced Analytics,531ee2f8-b1cb-453b-9c21-d2180d014ca5,EXCEL_PREMIUM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Forms (Plan E5),e212cbc7-0961-4c40-9825-01117710dcb1,FORMS_PLAN_E5
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Information Governance,e26c2fcc-ab91-4a61-b35c-03cdc8dddf66,INFO_GOVERNANCE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Insider Risk Management,d587c7a3-bda9-4f99-8776-9bcf59c84f75,INSIDER_RISK
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Kaizala Pro,0898bdbb-73b0-471a-81e5-20f1fe4dd66e,KAIZALA_STANDALONE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft ML-Based Classification,d2d51368-76c9-4317-ada2-a12c004c432f,ML_CLASSIFICATION
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft MyAnalytics (Full),34c0d7a0-a70f-4668-9238-47f9fc208882,EXCHANGE_ANALYTICS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Planner,b737dad2-2f6c-4c65-90e3-ca563267e8b9,PROJECTWORKMANAGEMENT
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Records Management,65cc641f-cccd-4643-97e0-a17e3045e541,RECORDS_MANAGEMENT
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Search,94065c59-bc8e-4e8b-89e5-5138d471eaff,MICROSOFT_SEARCH
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft StaffHub,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Deskless
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Stream for Office 365 E5,6c6042f5-6f01-4d67-b8c1-eb99d36eed3e,STREAM_O365_E5
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Mobile Device Management for Office 365,882e1d05-acd1-4ccb-8708-6ee03664b117,INTUNE_O365
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SHAREPOINTENTERPRISE,5dbe027f-2339-4123-9542-606e4d348a72,SharePoint Online (Plan 2)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,GRAPH_CONNECTORS_SEARCH_INDEX,a6520331-d7d4-4276-95f5-15c0933bc757,Graph Connectors Search with Index
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INFORMATION_BARRIERS,c4801e8a-cb58-4c35-aca6-f2dcc106f287,Information Barriers
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Content_Explorer,d9fa6af4-e046-4c89-9226-729a0786685d,Information Protection and Governance Analytics - Premium
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MIP_S_CLP2,efb0351d-3b08-4503-993d-383af8de41e3,Information Protection for Office 365 - Premium
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,M365_ADVANCED_AUDITING,2f442157-a11c-46b9-ae5b-6e39ff4e5849,Microsoft 365 Advanced Auditing
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,OFFICESUBSCRIPTION,43de0ff5-c92c-492b-9116-175376d08c38,Microsoft 365 Apps for enterprise
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MCOMEETADV,3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40,Microsoft 365 Audio Conferencing
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,M365_AUDIT_PLATFORM,f6de4823-28fa-440b-b886-4783fa86ddba,Microsoft 365 Audit Platform
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MICROSOFT_COMMUNICATION_COMPLIANCE,a413a9ff-720c-4822-98ef-2f37c2a21f4c,Microsoft 365 Communication Compliance
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MTP,bf28f719-7844-4079-9c78-c1307898e192,Microsoft 365 Defender
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,M365_LIGHTHOUSE_CUSTOMER_PLAN1,6f23d6a9-adbf-481c-8538-b4c095654487,Microsoft 365 Lighthouse (Plan 1)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MCOEV,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,Microsoft 365 Phone System
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,CLIPCHAMP,a1ace008-72f3-4ea0-8dac-33b3a23a2472,Microsoft Clipchamp
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,COMMUNICATIONS_DLP,6dc145d6-95dd-4191-b9c3-185575ee6f6b,Microsoft Communications DLP
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,CUSTOMER_KEY,6db1f1db-2b46-403f-be40-e39395f08dbb,Microsoft Customer Key
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,DATA_INVESTIGATIONS,46129a58-a698-46f0-aa5b-17f6586297d9,Microsoft Data Investigations
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ATP_ENTERPRISE,f20fedf3-f3c3-43c3-8267-2bfdd51c0939,Microsoft Defender for Office 365 (Plan 1)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,THREAT_INTELLIGENCE,8e0c0a52-6a6c-4d40-8370-dd62790dcd70,Microsoft Defender for Office 365 (Plan 2)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,EXCEL_PREMIUM,531ee2f8-b1cb-453b-9c21-d2180d014ca5,Microsoft Excel Advanced Analytics
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,FORMS_PLAN_E5,e212cbc7-0961-4c40-9825-01117710dcb1,Microsoft Forms (Plan E5)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INFO_GOVERNANCE,e26c2fcc-ab91-4a61-b35c-03cdc8dddf66,Microsoft Information Governance
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INSIDER_RISK,d587c7a3-bda9-4f99-8776-9bcf59c84f75,Microsoft Insider Risk Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,KAIZALA_STANDALONE,0898bdbb-73b0-471a-81e5-20f1fe4dd66e,Microsoft Kaizala Pro
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ML_CLASSIFICATION,d2d51368-76c9-4317-ada2-a12c004c432f,Microsoft ML-Based Classification
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,EXCHANGE_ANALYTICS,34c0d7a0-a70f-4668-9238-47f9fc208882,Microsoft MyAnalytics (Full)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,PROJECTWORKMANAGEMENT,b737dad2-2f6c-4c65-90e3-ca563267e8b9,Microsoft Planner
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RECORDS_MANAGEMENT,65cc641f-cccd-4643-97e0-a17e3045e541,Microsoft Records Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MICROSOFT_SEARCH,94065c59-bc8e-4e8b-89e5-5138d471eaff,Microsoft Search
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Deskless,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Microsoft StaffHub
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,STREAM_O365_E5,6c6042f5-6f01-4d67-b8c1-eb99d36eed3e,Microsoft Stream for Office 365 E5
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INTUNE_O365,882e1d05-acd1-4ccb-8708-6ee03664b117,Mobile Device Management for Office 365
Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Nucleus,db4d623d-b514-490b-b7ef-8885eee514de,Nucleus
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office 365 Advanced eDiscovery,4de31727-a228-4ec3-a5bf-8e45b5ca48cc,EQUIVIO_ANALYTICS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office 365 Cloud App Security,8c098270-9dd4-4350-9b30-ba4703f3b36b,ADALLOM_S_O365
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office 365 Privileged Access Management,b1188c4c-1b36-4018-b48b-ee07604f6feb,PAM_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office 365 SafeDocs,bf6f5520-59e3-4f82-974b-7dbbc4fd27c7,SAFEDOCS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office for the Web,e95bec33-7c88-4a70-8e19-b10bd9d0c014,SHAREPOINTWAC
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Power Apps for Office 365 (Plan 3),9c0dab89-a30c-4117-86e7-97bda240acd2,POWERAPPS_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Premium Encryption in Office 365,617b097b-4b93-4ede-83de-5f075bb5fb2f,PREMIUM_ENCRYPTION
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Project for Office (Plan E5),b21a6b06-1988-436e-a07b-51ec6d9f52ad,PROJECT_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RETIRED - Microsoft Communications Compliance,41fcdd7d-4733-4863-9cf4-c65b83ce2df4,COMMUNICATIONS_COMPLIANCE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RETIRED - Microsoft Insider Risk Management,9d0c4ee5-e4a1-4625-ab39-d82b619b1a34,INSIDER_RISK_MANAGEMENT
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Skype for Business Online (Plan 2),0feaeb32-d00e-4d66-bd5a-43b5b83db82c,MCOSTANDARD
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Sway,a23b959c-7ce8-4e57-9140-b90eb88a9e97,SWAY
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,To-Do (Plan 3),3fb82609-8c27-4f7b-bd51-30634711ee67,BPOS_S_TODO_3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Viva Engage Core,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,VIVAENGAGE_CORE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Viva Learning Seeded,b76fb638-6ba6-402a-b9f9-83d28acb3d86,VIVA_LEARNING_SEEDED
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Whiteboard (Plan 3),4a51bca5-1eff-43f5-878c-177680f191af,WHITEBOARD_PLAN3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Yammer Enterprise,7547a3fe-08ee-4ccb-b430-5077c5041653,YAMMER_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Endpoint,871d91ec-ec1a-452b-a83f-bd76c7d770ef,WINDEFATP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Endpoint DLP,64bfac92-2b17-4482-b5e5-a0304429de3e,MICROSOFTENDPOINTDLP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Universal Print,795f6fe0-cc4d-4773-b050-5dde4dc704c9,UNIVERSAL_PRINT_01
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Windows 10/11 Enterprise (Original),21b439ba-a0ca-424f-a6cc-52f954a5b111,WIN10_PRO_ENT_SUB
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Windows Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows_Autopatch
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Windows Update for Business Deployment Service,7bf960f6-2cd9-443a-8046-5dbff9558365,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Azure Information Protection Premium P1,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,RMS_S_PREMIUM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Azure Information Protection Premium P2,5689bec4-755d-4753-8b61-40975025187c,RMS_S_PREMIUM2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Azure Rights Management,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,RMS_S_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Common Data Service,28b0fa46-c39a-4188-89e2-58e979a6b014,DYN365_CDS_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Azure Multi-Factor Authentication,8a256a2b-b617-496d-b51b-e76466e88db0,MFA_PREMIUM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Cloud Apps,2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2,ADALLOM_S_STANDALONE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Identity,14ab5db5-e6c4-4b20-b4bc-13e36fd2227f,ATA
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Entra ID P1,41781fb2-bc02-4b7c-bd55-b576c07bb09d,AAD_PREMIUM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Entra ID P2,eec0eb4f-6444-4f95-aba0-50c24d67f998,AAD_PREMIUM_P2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Intune Plan 1,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,INTUNE_A
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Power Automate for Office 365,07699545-9485-468e-95b6-2fca3738be01,FLOW_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Power BI Pro,70d33638-9c74-4d01-bfd3-562de28bd4ba,BI_AZURE_P2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Power Virtual Agents for Office 365,ded3d325-1bdc-453e-8432-5bac26d7a014,POWER_VIRTUAL_AGENTS_O365_P3
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,EQUIVIO_ANALYTICS,4de31727-a228-4ec3-a5bf-8e45b5ca48cc,Office 365 Advanced eDiscovery
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ADALLOM_S_O365,8c098270-9dd4-4350-9b30-ba4703f3b36b,Office 365 Cloud App Security
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,PAM_ENTERPRISE,b1188c4c-1b36-4018-b48b-ee07604f6feb,Office 365 Privileged Access Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SAFEDOCS,bf6f5520-59e3-4f82-974b-7dbbc4fd27c7,Office 365 SafeDocs
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SHAREPOINTWAC,e95bec33-7c88-4a70-8e19-b10bd9d0c014,Office for the Web
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,POWERAPPS_O365_P3,9c0dab89-a30c-4117-86e7-97bda240acd2,Power Apps for Office 365 (Plan 3)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,PREMIUM_ENCRYPTION,617b097b-4b93-4ede-83de-5f075bb5fb2f,Premium Encryption in Office 365
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,PROJECT_O365_P3,b21a6b06-1988-436e-a07b-51ec6d9f52ad,Project for Office (Plan E5)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,COMMUNICATIONS_COMPLIANCE,41fcdd7d-4733-4863-9cf4-c65b83ce2df4,RETIRED - Microsoft Communications Compliance
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INSIDER_RISK_MANAGEMENT,9d0c4ee5-e4a1-4625-ab39-d82b619b1a34,RETIRED - Microsoft Insider Risk Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MCOSTANDARD,0feaeb32-d00e-4d66-bd5a-43b5b83db82c,Skype for Business Online (Plan 2)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SWAY,a23b959c-7ce8-4e57-9140-b90eb88a9e97,Sway
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,BPOS_S_TODO_3,3fb82609-8c27-4f7b-bd51-30634711ee67,To-Do (Plan 3)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,VIVAENGAGE_CORE,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,Viva Engage Core
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,VIVA_LEARNING_SEEDED,b76fb638-6ba6-402a-b9f9-83d28acb3d86,Viva Learning Seeded
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,WHITEBOARD_PLAN3,4a51bca5-1eff-43f5-878c-177680f191af,Whiteboard (Plan 3)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,Yammer Enterprise
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,WINDEFATP,871d91ec-ec1a-452b-a83f-bd76c7d770ef,Microsoft Defender for Endpoint
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MICROSOFTENDPOINTDLP,64bfac92-2b17-4482-b5e5-a0304429de3e,Microsoft Endpoint DLP
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,UNIVERSAL_PRINT_01,795f6fe0-cc4d-4773-b050-5dde4dc704c9,Universal Print
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,WIN10_PRO_ENT_SUB,21b439ba-a0ca-424f-a6cc-52f954a5b111,Windows 10/11 Enterprise (Original)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,Azure Information Protection Premium P1
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RMS_S_PREMIUM2,5689bec4-755d-4753-8b61-40975025187c,Azure Information Protection Premium P2
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,DYN365_CDS_O365_P3,28b0fa46-c39a-4188-89e2-58e979a6b014,Common Data Service
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MFA_PREMIUM,8a256a2b-b617-496d-b51b-e76466e88db0,Microsoft Azure Multi-Factor Authentication
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ADALLOM_S_STANDALONE,2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2,Microsoft Defender for Cloud Apps
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ATA,14ab5db5-e6c4-4b20-b4bc-13e36fd2227f,Microsoft Defender for Identity
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,Microsoft Entra ID P1
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,AAD_PREMIUM_P2,eec0eb4f-6444-4f95-aba0-50c24d67f998,Microsoft Entra ID P2
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune Plan 1
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,FLOW_O365_P3,07699545-9485-468e-95b6-2fca3738be01,Power Automate for Office 365
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,BI_AZURE_P2,70d33638-9c74-4d01-bfd3-562de28bd4ba,Power BI Pro
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 E5 Security,IDENTITY_THREAT_PROTECTION,26124093-3d78-432b-b5dc-48bf992543d5,MTP,bf28f719-7844-4079-9c78-c1307898e192,Microsoft 365 Defender
Microsoft 365 E5 Security,IDENTITY_THREAT_PROTECTION,26124093-3d78-432b-b5dc-48bf992543d5,ATP_ENTERPRISE,f20fedf3-f3c3-43c3-8267-2bfdd51c0939,Microsoft Defender for Office 365 (Plan 1)
Microsoft 365 E5 Security,IDENTITY_THREAT_PROTECTION,26124093-3d78-432b-b5dc-48bf992543d5,THREAT_INTELLIGENCE,8e0c0a52-6a6c-4d40-8370-dd62790dcd70,Microsoft Defender for Office 365 (Plan 2)
@@ -2173,7 +2210,7 @@ Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-a
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2256,7 +2293,7 @@ Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2339,7 +2376,7 @@ Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2418,7 +2455,7 @@ Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2499,7 +2536,7 @@ Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(50
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
@@ -2656,8 +2693,10 @@ Microsoft 365 F1 EEA (no Teams),Microsoft_365_F1_EEA_(no_Teams),0666269f-b167-4c
Microsoft 365 F1 EEA (no Teams),Microsoft_365_F1_EEA_(no_Teams),0666269f-b167-4c5b-a76f-fc574f2b1118,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune Plan 1
Microsoft 365 F1 EEA (no Teams),Microsoft_365_F1_EEA_(no_Teams),0666269f-b167-4c5b-a76f-fc574f2b1118,STREAM_O365_K,3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9,Microsoft Stream for Office 365 F3
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,CDS_O365_F1,90db65a7-bf11-4904-a79f-ef657605145b,Common Data Service for Teams
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,EXCHANGE_S_DESKLESS,4a82b400-a79f-41a4-b4e2-e94f5787b113,Exchange Online Kiosk
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,M365_LIGHTHOUSE_CUSTOMER_PLAN1,6f23d6a9-adbf-481c-8538-b4c095654487,Microsoft 365 Lighthouse (Plan 1)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,FORMS_PLAN_K,f07046bd-2a3c-4b96-b0be-dea79d7cbfb8,Microsoft Forms (Plan F1)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,KAIZALA_O365_P1,73b2a583-6a59-42e3-8e83-54db46bc3278,Microsoft Kaizala Pro
@@ -2674,23 +2713,24 @@ Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,SHAREPOINTDESKLESS,
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,MCOIMP,afc06cb0-b4f4-4473-8286-d644f70d8faf,Skype for Business Online (Plan 1)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,SWAY,a23b959c-7ce8-4e57-9140-b90eb88a9e97,Sway
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,BPOS_S_TODO_FIRSTLINE,80873e7a-cd2a-4e67-b061-1b5381a676a5,To-Do (Firstline)
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,VIVAENGAGE_CORE,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,Viva Engage Core
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,VIVA_LEARNING_SEEDED,b76fb638-6ba6-402a-b9f9-83d28acb3d86,Viva Learning Seeded
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,WHITEBOARD_FIRSTLINE1,36b29273-c6d0-477a-aca6-6fbe24f538e3,Whiteboard (Firstline)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,WIN10_ENT_LOC_F1,e041597c-9c7f-4ed9-99b0-2663301576f7,Windows 10 Enterprise E3 (Local Only)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,Yammer Enterprise
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,UNIVERSAL_PRINT_01,795f6fe0-cc4d-4773-b050-5dde4dc704c9,Universal Print
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
-Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,Microsoft Entra ID P1
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,Azure Information Protection Premium P1
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,DYN365_CDS_O365_F1,ca6e61ec-d4f4-41eb-8b88-d96e0e14323f,Common Data Service
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,MFA_PREMIUM,8a256a2b-b617-496d-b51b-e76466e88db0,Microsoft Azure Multi-Factor Authentication
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,ADALLOM_S_DISCOVERY,932ad362-64a8-4783-9106-97849a1a30b9,Microsoft Defender for Cloud Apps Discovery
-Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,Microsoft Entra ID P1
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune Plan 1
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,STREAM_O365_K,3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9,Microsoft Stream for Office 365 F3
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,POWERAPPS_O365_S1,e0287f9f-e222-4f98-9a83-f379e249159a,Power Apps for Office 365 F3
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,FLOW_O365_S1,bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a,Power Automate for Office 365 F3
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,POWER_VIRTUAL_AGENTS_O365_F1,ba2fdb48-290b-4632-b46a-e4ecc58ac11a,Power Virtual Agents for Office 365
-Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,VIVAENGAGE_CORE,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,Viva Engage Core
Microsoft 365 F3 EEA (no Teams),Microsoft_365_F3_EEA_(no_Teams),f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 F3 EEA (no Teams),Microsoft_365_F3_EEA_(no_Teams),f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87,CDS_O365_F1,90db65a7-bf11-4904-a79f-ef657605145b,Common Data Service for Teams
Microsoft 365 F3 EEA (no Teams),Microsoft_365_F3_EEA_(no_Teams),f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87,EXCHANGE_S_DESKLESS,4a82b400-a79f-41a4-b4e2-e94f5787b113,Exchange Online Kiosk
@@ -2974,8 +3014,9 @@ Microsoft 365 Audio Conferencing for GCC,MCOMEETADV_GOV,2d3091c7-0712-488b-b3d8-
Microsoft 365 Audio Conferencing for GCC,MCOMEETADV_GOV,2d3091c7-0712-488b-b3d8-6b97bde6a1f5,MCOMEETADV_GOV,f544b08d-1645-4287-82de-8d91f37c02a1,MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
-Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
+Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,MESH_IMMERSIVE_FOR_TEAMS,f0ff6ac6-297d-49cd-be34-6dfef97f0c28,Immersive spaces for Teams
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Content_Explorer,d9fa6af4-e046-4c89-9226-729a0786685d,Information Protection and Governance Analytics - Premium
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,CLIPCHAMP,a1ace008-72f3-4ea0-8dac-33b3a23a2472,Microsoft Clipchamp
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,INSIDER_RISK,d587c7a3-bda9-4f99-8776-9bcf59c84f75,Microsoft Insider Risk Management
@@ -2985,6 +3026,7 @@ Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,PURVIEW_DISCOVERY,c948ea65-2053-4a5a-8a62-9eaaaf11b522,Purview Discovery
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,MICROSOFTENDPOINTDLP,64bfac92-2b17-4482-b5e5-a0304429de3e,Microsoft Endpoint DLP
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
+Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Defender_for_Iot_Enterprise,99cd49a9-0e54-4e07-aea1-d8d9f5f704f5,Defender for IoT - Enterprise IoT Security
Microsoft 365 F1,M365_F1_COMM,50f60901-3181-4b75-8a2c-4c8e4c1d5a72,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,AAD_PREMIUM
Microsoft 365 F1,M365_F1_COMM,50f60901-3181-4b75-8a2c-4c8e4c1d5a72,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,RMS_S_PREMIUM
@@ -3099,6 +3141,7 @@ Microsoft Cloud for Sustainability vTrial,Microsoft_Cloud_for_Sustainability_vTr
Microsoft Cloud for Sustainability vTrial,Microsoft_Cloud_for_Sustainability_vTrial,556640c0-53ea-4773-907d-29c55332983f,DYN365_CDS_VIRAL,17ab22cd-a0b3-4536-910a-cb6eb12696c0,Common Data Service
Microsoft Defender for Endpoint,WIN_DEF_ATP,111046dd-295b-4d6d-9724-d52ac90bd1f2,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft Defender for Endpoint,WIN_DEF_ATP,111046dd-295b-4d6d-9724-d52ac90bd1f2,WINDEFATP,871d91ec-ec1a-452b-a83f-bd76c7d770ef,MICROSOFT DEFENDER FOR ENDPOINT
+Microsoft Defender for Endpoint F2,Microsoft_Defender_for_Endpoint_F2,e430a580-c37b-4d16-adba-d881d7cd0364,WINDEFATP,871d91ec-ec1a-452b-a83f-bd76c7d770ef,Microsoft Defender for Endpoint
Microsoft Defender for Endpoint P1,DEFENDER_ENDPOINT_P1,16a55f2f-ff35-4cd5-9146-fb784e3761a5,Intune_Defender,1689aade-3d6a-4bfc-b017-46d2672df5ad,MDE_SecurityManagement
Microsoft Defender for Endpoint P1,DEFENDER_ENDPOINT_P1,16a55f2f-ff35-4cd5-9146-fb784e3761a5,MDE_LITE,292cc034-7b7c-4950-aaf5-943befd3f1d4,Microsoft Defender for Endpoint Plan 1
Microsoft Defender for Endpoint P1 for EDU,DEFENDER_ENDPOINT_P1_EDU,bba890d4-7881-4584-8102-0c3fdfb739a7,MDE_LITE,292cc034-7b7c-4950-aaf5-943befd3f1d4,Microsoft Defender for Endpoint Plan 1
@@ -3127,6 +3170,7 @@ Microsoft Dynamics CRM Online,CRMSTANDARD,d17b27af-3f49-4822-99f9-56a661538792,F
Microsoft Dynamics CRM Online,CRMSTANDARD,d17b27af-3f49-4822-99f9-56a661538792,MDM_SALES_COLLABORATION,3413916e-ee66-4071-be30-6f94d4adfeda,MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY
Microsoft Dynamics CRM Online,CRMSTANDARD,d17b27af-3f49-4822-99f9-56a661538792,NBPROFESSIONALFORCRM,3e58e97c-9abe-ebab-cd5f-d543d1529634,MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY
Microsoft Dynamics CRM Online,CRMSTANDARD,d17b27af-3f49-4822-99f9-56a661538792,POWERAPPS_DYN_APPS,874fc546-6efe-4d22-90b8-5c4e7aa59f4b,POWERAPPS FOR DYNAMICS 365
+Microsoft Entra ID Governance,Microsoft_Entra_ID_Governance,cf6b0d46-4093-4546-a0ab-0b1546dcc10e,Entra_Identity_Governance,e866a266-3cff-43a3-acca-0c90a7e00c8b,Entra Identity Governance
Microsoft Fabric (Free),POWER_BI_STANDARD,a403ebcc-fae0-4ca2-8c8c-7a907fd6c235,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft Fabric (Free),POWER_BI_STANDARD,a403ebcc-fae0-4ca2-8c8c-7a907fd6c235,BI_AZURE_P0,2049e525-b859-401b-b2a0-e0a31c4b1fe4,Power BI (free)
Microsoft Fabric (Free) for faculty,POWER_BI_STANDARD_FACULTY,ade29b5f-397e-4eb9-a287-0344bd46c68d,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,EXCHANGE_S_FOUNDATION
@@ -3187,6 +3231,10 @@ Microsoft Stream Plan 2,STREAM_P2,ec156933-b85b-4c50-84ec-c9e5603709ef,EXCHANGE_
Microsoft Stream Plan 2,STREAM_P2,ec156933-b85b-4c50-84ec-c9e5603709ef,STREAM_P2,d3a458d0-f10d-48c2-9e44-86f3f684029e,Microsoft Stream Plan 2
Microsoft Stream Storage Add-On (500 GB),STREAM_STORAGE,9bd7c846-9556-4453-a542-191d527209e8,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft Stream Storage Add-On (500 GB),STREAM_STORAGE,9bd7c846-9556-4453-a542-191d527209e8,STREAM_STORAGE,83bced11-77ce-4071-95bd-240133796768,Microsoft Stream Storage Add-On
+Microsoft Sustainability Manager USL Essentials,Microsoft_Cloud_for_Sustainability_USL,ece037b4-a52b-4cf8-93ea-649e5d83767a,MCS_BizApps_Cloud_for_Sustainability_USL,c46c42af-d654-4385-8c85-29a84f3dfb22,MCS - BizApps - Cloud for Sustainability USL
+Microsoft Sustainability Manager USL Essentials,Microsoft_Cloud_for_Sustainability_USL,ece037b4-a52b-4cf8-93ea-649e5d83767a,POWER_APPS_FOR_MCS_USL,5ffd371c-037a-41a2-98a3-6452f8c5de17,Power Apps for Cloud for Sustainability USL
+Microsoft Sustainability Manager USL Essentials,Microsoft_Cloud_for_Sustainability_USL,ece037b4-a52b-4cf8-93ea-649e5d83767a,POWER_AUTOMATE_FOR_MCS_USL,ccbe468e-7973-442c-8ec4-5fbe16438711,Power Automate for Cloud for Sustainability USL
+Microsoft Sustainability Manager USL Essentials,Microsoft_Cloud_for_Sustainability_USL,ece037b4-a52b-4cf8-93ea-649e5d83767a,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft Teams Audio Conferencing with dial-out to USA/CAN,Microsoft_Teams_Audio_Conferencing_select_dial_out,1c27243e-fb4d-42b1-ae8c-fe25c9616588,MCOMEETBASIC,9974d6cf-cd24-4ba2-921c-e2aa687da846,Microsoft Teams Audio Conferencing with dial-out to select geographies
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,EXCHANGE FOUNDATION
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,MCOFREE,617d9209-3b90-4879-96e6-838c42b2701d,MCO FREE FOR MICROSOFT TEAMS (FREE)
@@ -3194,6 +3242,8 @@ Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,TEAMS_FRE
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,SHAREPOINTDESKLESS,902b47e5-dcb2-4fdc-858b-c63a90a2bdb9,SHAREPOINT KIOSK
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,TEAMS_FREE_SERVICE,bd6f2ac2-991a-49f9-b23c-18c96a02c228,TEAMS FREE SERVICE
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,WHITEBOARD_FIRSTLINE1,36b29273-c6d0-477a-aca6-6fbe24f538e3,WHITEBOARD (FIRSTLINE)
+Microsoft Teams Calling Plan pay-as-you-go (country zone 1 - US),Microsoft_Teams_Calling_Plan_pay_as_you_go_(country_zone_1_US),9b196e97-5830-4c2e-adc2-1e10ebf5dee5,MCOPSTN_PAYG_1,156a1efe-17cd-4b03-9f17-2eb512298fb3,Microsoft Teams Calling Plan pay-as-you-go - country zone 1
+Microsoft Teams Domestic Calling Plan (240 min),MCOPSTN_6,729dbb8f-8d56-4994-8e33-2f218f549544,MCOPSTN6,346d83bf-6fe6-42ca-b424-b9300d2e21bf,Microsoft 365 Domestic Calling Plan (240 min)
Microsoft Teams Essentials,Teams_Ess,fde42873-30b6-436b-b361-21af5a6b84ae,TeamsEss,f4f2f6de-6830-442b-a433-e92249faebe2,Microsoft Teams Essentials
Microsoft Teams Essentials (AAD Identity),TEAMS_ESSENTIALS_AAD,3ab6abff-666f-4424-bfb7-f0bc274ec7bc,EXCHANGE_S_DESKLESS,4a82b400-a79f-41a4-b4e2-e94f5787b113,Exchange Online Kiosk
Microsoft Teams Essentials (AAD Identity),TEAMS_ESSENTIALS_AAD,3ab6abff-666f-4424-bfb7-f0bc274ec7bc,FORMS_PLAN_E1,159f4cd6-e380-449f-a816-af1a9ef76344,Microsoft Forms (Plan E1)
@@ -3755,27 +3805,29 @@ Office 365 E2,STANDARDWOFFPACK,6634e0ce-1a9f-428c-a498-f84ec7b8aa2e,STREAM_O365_
Office 365 E2,STANDARDWOFFPACK,6634e0ce-1a9f-428c-a498-f84ec7b8aa2e,SWAY,a23b959c-7ce8-4e57-9140-b90eb88a9e97,SWAY
Office 365 E2,STANDARDWOFFPACK,6634e0ce-1a9f-428c-a498-f84ec7b8aa2e,TEAMS1,57ff2da0-773e-42df-b2af-ffb7a2317929,TEAMS1
Office 365 E2,STANDARDWOFFPACK,6634e0ce-1a9f-428c-a498-f84ec7b8aa2e,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,YAMMER_ENTERPRISE
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,DYN365_CDS_O365_P2,4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14,Common Data Service - O365 P2
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams_P2
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics - Standard
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MESH_IMMERSIVE_FOR_TEAMS,f0ff6ac6-297d-49cd-be34-6dfef97f0c28,Immersive spaces for Teams
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,OFFICESUBSCRIPTION,43de0ff5-c92c-492b-9116-175376d08c38,Microsoft 365 Apps for enterprise
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Microsoft Microsoft Entra Rights
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,OFFICESUBSCRIPTION,43de0ff5-c92c-492b-9116-175376d08c38,Microsoft 365 Apps for Enterprise
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,M365_LIGHTHOUSE_CUSTOMER_PLAN1,6f23d6a9-adbf-481c-8538-b4c095654487,Microsoft 365 Lighthouse (Plan 1)
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,FORMS_PLAN_E3,2789c901-c14e-48ab-a76a-be334d9d793a,Microsoft Forms (Plan E3)
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,KAIZALA_O365_P3,aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1,Microsoft Kaizala Pro Plan 3
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,KAIZALA_O365_P3,aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1,Microsoft Kaizala Pro
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,PROJECTWORKMANAGEMENT,b737dad2-2f6c-4c65-90e3-ca563267e8b9,Microsoft Planner
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MICROSOFT_SEARCH,94065c59-bc8e-4e8b-89e5-5138d471eaff,Microsoft Search
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,Deskless,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Microsoft StaffHub
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,STREAM_O365_E3,9e700747-8b1d-45e5-ab8d-ef187ceec156,Microsoft Stream for O365 E3 SKU
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,STREAM_O365_E3,9e700747-8b1d-45e5-ab8d-ef187ceec156,Microsoft Stream for Office 365 E3
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,TEAMS1,57ff2da0-773e-42df-b2af-ffb7a2317929,Microsoft Teams
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,INTUNE_O365,882e1d05-acd1-4ccb-8708-6ee03664b117,Mobile Device Management for Office 365
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,SHAREPOINTWAC,e95bec33-7c88-4a70-8e19-b10bd9d0c014,Office for the web
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,POWERAPPS_O365_P2,c68f8d98-5534-41c8-bf36-22fa496fa792,Power Apps for Office 365
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365 P2
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,Nucleus,db4d623d-b514-490b-b7ef-8885eee514de,Nucleus
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,SHAREPOINTWAC,e95bec33-7c88-4a70-8e19-b10bd9d0c014,Office for the Web
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,PROJECT_O365_P2,31b4e2fc-4cd6-4e7d-9c1b-41407303bd66,Project for Office (Plan E3)
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,SHAREPOINTENTERPRISE,5dbe027f-2339-4123-9542-606e4d348a72,SharePoint (Plan 2)
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MCOSTANDARD,0feaeb32-d00e-4d66-bd5a-43b5b83db82c,Skype for Business Online (Plan 2)
@@ -3785,6 +3837,10 @@ Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,VIVAENGAGE_COR
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,VIVA_LEARNING_SEEDED,b76fb638-6ba6-402a-b9f9-83d28acb3d86,Viva Learning Seeded
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,WHITEBOARD_PLAN2,94a54592-cd8b-425e-87c6-97868b000b91,Whiteboard (Plan 2)
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,Yammer Enterprise
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,DYN365_CDS_O365_P2,4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14,Common Data Service
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,POWERAPPS_O365_P2,c68f8d98-5534-41c8-bf36-22fa496fa792,Power Apps for Office 365
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
Office 365 E3 EEA (no Teams),O365_w/o_Teams_Bundle_E3,d711d25a-a21c-492f-bd19-aae1e8ebaf30,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
Office 365 E3 EEA (no Teams),O365_w/o_Teams_Bundle_E3,d711d25a-a21c-492f-bd19-aae1e8ebaf30,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Office 365 E3 EEA (no Teams),O365_w/o_Teams_Bundle_E3,d711d25a-a21c-492f-bd19-aae1e8ebaf30,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
@@ -4435,6 +4491,11 @@ Power Apps per app plan for Government,POWERAPPS_PER_APP_GCC,8623b2d7-5e24-4281-
Power Apps per app plan for Government,POWERAPPS_PER_APP_GCC,8623b2d7-5e24-4281-b6b7-086a5f3b0b1c,CDS_PER_APP_GCC,d7f9c9bc-0a28-4da4-b5f1-731acb27a3e4,CDS PowerApps per app plan for GCC
Power Apps per app plan for Government,POWERAPPS_PER_APP_GCC,8623b2d7-5e24-4281-b6b7-086a5f3b0b1c,POWERAPPS_PER_APP_GCC,be6e5cba-3661-424c-b79a-6d95fa1d849a,Power Apps per App Plan for Government
Power Apps per app plan for Government,POWERAPPS_PER_APP_GCC,8623b2d7-5e24-4281-b6b7-086a5f3b0b1c,Flow_Per_APP_GCC,8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9,Power Automate for Power Apps per App Plan for Government
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,Power_Pages_Internal_User,60bf28f9-2b70-4522-96f7-335f5e06c941,Power Pages Internal User
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,CDS_ POWERAPPS_PER_USER_CUSTOM,2e8dde43-6986-479d-b179-7dbe31c31f60,CDS Power Apps Per User Custom
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,POWERAPPS_PER_USER,ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86,Power Apps per User Plan
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,Flow_PowerApps_PerUser,dc789ed8-0170-4b65-a415-eb77d5bb350a,Power Automate for Power Apps per User Plan
Power Apps per user plan,POWERAPPS_PER_USER,b30411f5-fea1-4a59-9ad9-3db7c7ead579,DYN365_CDS_P2,6ea4c1ef-c259-46df-bce2-943342cd3cb2,Common Data Service - P2
Power Apps per user plan,POWERAPPS_PER_USER,b30411f5-fea1-4a59-9ad9-3db7c7ead579,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Power Apps per user plan,POWERAPPS_PER_USER,b30411f5-fea1-4a59-9ad9-3db7c7ead579,POWERAPPS_PER_USER,ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86,Power Apps per User Plan
@@ -4785,8 +4846,17 @@ Skype for Business PSTN Domestic and International Calling,MCOPSTN2,d3b4fe1f-999
Skype for Business PSTN Domestic Calling,MCOPSTN1,0dab259f-bf13-4952-b7f8-7db8f131b28d,MCOPSTN1,4ed3ff63-69d7-4fb7-b984-5aec7f605ca8,DOMESTIC CALLING PLAN
Skype for Business PSTN Domestic Calling (120 Minutes),MCOPSTN5,54a152dc-90de-4996-93d2-bc47e670fc06,MCOPSTN5,54a152dc-90de-4996-93d2-bc47e670fc06,DOMESTIC CALLING PLAN
Skype for Business PSTN Usage Calling Plan,MCOPSTNPP,06b48c5f-01d9-4b18-9015-03b52040f51a,MCOPSTN3,6b340437-d6f9-4dc5-8cc2-99163f7f83d6,MCOPSTN3
+Teams Phone Mobile,Operator_Connect_Mobile,b84d58c9-0a0d-46cf-8a4b-d9f23c1674d5,MCOFMC1,cb22fbd7-ed7d-4786-a27a-e4cd617b69c0,Teams Phone Mobile
Teams Phone with Calling Plan,MCOTEAMS_ESSENTIALS,ae2343d1-0999-43f6-ae18-d816516f6e78,MCOPSTN1,4ed3ff63-69d7-4fb7-b984-5aec7f605ca8,Microsoft 365 Domestic Calling Plan
Teams Phone with Calling Plan,MCOTEAMS_ESSENTIALS,ae2343d1-0999-43f6-ae18-d816516f6e78,MCOEV,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,Microsoft 365 Phone System
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,MICROSOFT_ECDN,85704d55-2e73-47ee-93b4-4b8ea14db92b,Microsoft eCDN
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,MESH_IMMERSIVE,acbca54f-c771-423b-a476-6d7a98cbbcec,Microsoft Mesh
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_MGMT,0504111f-feb8-4a3c-992a-70280f9a2869,Microsoft Teams Premium Intelligent
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_CUST,cc8c0802-a325-43df-8cba-995d0c6cb373,Microsoft Teams Premium Personalized
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_PROTECTION,f8b44f54-18bb-46a3-9658-44ab58712968,Microsoft Teams Premium Secure
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_VIRTUALAPPT,9104f592-f2a7-4f77-904c-ca5a5715883f,Microsoft Teams Premium Virtual Appointment
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,MCO_VIRTUAL_APPT,711413d0-b36e-4cd4-93db-0a50a4ab7ea3,Microsoft Teams Premium Virtual Appointments
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_WEBINAR,78b58230-ec7e-4309-913c-93a45cc4735b,Microsoft Teams Premium Webinar
Teams Rooms Premium,MTR_PREM,4fb214cb-a430-4a91-9c91-4976763aa78f,MMR_P1,bdaa59a3-74fd-4137-981a-31d4f84eb8a0,Meeting Room Managed Services
Teams Rooms Premium,MTR_PREM,4fb214cb-a430-4a91-9c91-4976763aa78f,MCOMEETADV,3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40,Microsoft 365 Audio Conferencing
Teams Rooms Premium,MTR_PREM,4fb214cb-a430-4a91-9c91-4976763aa78f,MCOEV,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,Microsoft 365 Phone System
@@ -4823,6 +4893,7 @@ Visio Plan 2 for Faculty,VISIOCLIENT_FACULTY,bf95fd32-576a-4742-8d7a-6dc4940b953
Visio Plan 2 for Faculty,VISIOCLIENT_FACULTY,bf95fd32-576a-4742-8d7a-6dc4940b9532,ONEDRIVE_BASIC,da792a53-cbc0-4184-a10d-e544dd34b3c1,OneDrive for Business (Basic)
Visio Plan 2 for Faculty,VISIOCLIENT_FACULTY,bf95fd32-576a-4742-8d7a-6dc4940b9532,VISIO_CLIENT_SUBSCRIPTION,663a804f-1c30-4ff0-9915-9db84f0d1cea,Visio Desktop App
Visio Plan 2 for Faculty,VISIOCLIENT_FACULTY,bf95fd32-576a-4742-8d7a-6dc4940b9532,VISIOONLINE,2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f,Visio Web App
+Viva Goals User-led,Viva_Goals_User_led,3a349c99-ffec-43d2-a2e8-6b97fcb71103,Viva_Goals_Premium,b44c6eaf-5c9f-478c-8f16-8cea26353bfb,Viva Goals
Viva Topics,TOPIC_EXPERIENCES,4016f256-b063-4864-816e-d818aad600c9,GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP,b74d57b2-58e9-484a-9731-aeccbba954f0,Graph Connectors Search with Index (Viva Topics)
Viva Topics,TOPIC_EXPERIENCES,4016f256-b063-4864-816e-d818aad600c9,CORTEX,c815c93d-0759-4bb8-b857-bc921a71be83,Viva Topics
Windows 10/11 Enterprise E5 (Original),WIN_ENT_E5,1e7e1070-8ccb-4aca-b470-d7cb538cb07e,DATAVERSE_FOR_POWERAUTOMATE_DESKTOP,59231cdf-b40d-4534-a93e-14d0cd31d27e,Dataverse for PAD
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserDomain.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserDomain.ps1
index c5aa1f420919..c80d265bf0ba 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserDomain.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserDomain.ps1
@@ -1,4 +1,8 @@
function Push-DomainAnalyserDomain {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Item)
$DomainTable = Get-CippTable -tablename 'Domains'
$Filter = "PartitionKey eq 'TenantDomains' and RowKey eq '{0}'" -f $Item.RowKey
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserTenant.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserTenant.ps1
index b376215dca70..d8aa48ac28e9 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserTenant.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Domain Analyser/Push-DomainAnalyserTenant.ps1
@@ -5,22 +5,22 @@ function Push-DomainAnalyserTenant {
#>
param($Item)
- $Tenant = Get-Tenants | Where-Object { $_.customerId -eq $Item.customerId }
+ $Tenant = Get-Tenants -IncludeAll | Where-Object { $_.customerId -eq $Item.customerId } | Select-Object -First 1
$DomainTable = Get-CippTable -tablename 'Domains'
if ($Tenant.Excluded -eq $true) {
- $Filter = "PartitionKey eq 'TenantDomains' and TenantId eq '{0}'" -f $Exclude.defaultDomainName
+ $Filter = "PartitionKey eq 'TenantDomains' and TenantId eq '{0}'" -f $Tenant.defaultDomainName
$CleanupRows = Get-CIPPAzDataTableEntity @DomainTable -Filter $Filter
$CleanupCount = ($CleanupRows | Measure-Object).Count
if ($CleanupCount -gt 0) {
- Write-LogMessage -API 'DomainAnalyser' -tenant $Exclude.defaultDomainName -message "Cleaning up $CleanupCount domain(s) for excluded tenant" -sev Info
+ Write-LogMessage -API 'DomainAnalyser' -tenant $Tenant.defaultDomainName -message "Cleaning up $CleanupCount domain(s) for excluded tenant" -sev Info
Remove-AzDataTableEntity @DomainTable -Entity $CleanupRows
}
} elseif ($Tenant.GraphErrorCount -gt 50) {
return
} else {
try {
- $Domains = New-GraphGetRequest -uri 'https://graph.microsoft.com/v1.0/domains' -tenantid $Tenant.defaultDomainName | Where-Object { ($_.id -notlike '*.microsoftonline.com' -and $_.id -NotLike '*.exclaimer.cloud' -and $_.id -Notlike '*.excl.cloud' -and $_.id -NotLike '*.codetwo.online' -and $_.id -NotLike '*.call2teams.com' -and $_.isVerified) }
+ $Domains = New-GraphGetRequest -uri 'https://graph.microsoft.com/v1.0/domains' -tenantid $Tenant.customerId | Where-Object { ($_.id -notlike '*.microsoftonline.com' -and $_.id -NotLike '*.exclaimer.cloud' -and $_.id -Notlike '*.excl.cloud' -and $_.id -NotLike '*.codetwo.online' -and $_.id -NotLike '*.call2teams.com' -and $_.isVerified) }
$TenantDomains = foreach ($d in $domains) {
[PSCustomObject]@{
@@ -40,29 +40,29 @@ function Push-DomainAnalyserTenant {
$DomainCount = ($TenantDomains | Measure-Object).Count
if ($DomainCount -gt 0) {
- Write-Host "$TenantCount tenant Domains"
+ Write-Host "$DomainCount tenant Domains"
try {
- $TenantDomainObjects = foreach ($Tenant in $TenantDomains) {
- $TenantDetails = ($Tenant | ConvertTo-Json -Compress).ToString()
- $Filter = "PartitionKey eq '{0}' and RowKey eq '{1}'" -f $Tenant.Tenant, $Tenant.Domain
+ $TenantDomainObjects = foreach ($Domain in $TenantDomains) {
+ $TenantDetails = ($Domain | ConvertTo-Json -Compress).ToString()
+ $Filter = "PartitionKey eq '{0}' and RowKey eq '{1}'" -f $Domain.Tenant, $Domain.Domain
$OldDomain = Get-CIPPAzDataTableEntity @DomainTable -Filter $Filter
if ($OldDomain) {
Remove-AzDataTableEntity @DomainTable -Entity $OldDomain | Out-Null
}
- $Filter = "PartitionKey eq 'TenantDomains' and RowKey eq '{0}'" -f $Tenant.Domain
+ $Filter = "PartitionKey eq 'TenantDomains' and RowKey eq '{0}'" -f $Domain.Domain
$Domain = Get-CIPPAzDataTableEntity @DomainTable -Filter $Filter
if (!$Domain -or $null -eq $Domain.TenantGUID) {
$DomainObject = [pscustomobject]@{
DomainAnalyser = ''
TenantDetails = $TenantDetails
- TenantId = $Tenant.Tenant
- TenantGUID = $Tenant.TenantGUID
+ TenantId = $Domain.Tenant
+ TenantGUID = $Domain.TenantGUID
DkimSelectors = ''
MailProviders = ''
- RowKey = $Tenant.Domain
+ RowKey = $Domain.Domain
PartitionKey = 'TenantDomains'
}
@@ -89,6 +89,7 @@ function Push-DomainAnalyserTenant {
Batch = $TenantDomainObjects | Select-Object RowKey, @{n = 'FunctionName'; exp = { 'DomainAnalyserDomain' } }
OrchestratorName = "DomainAnalyser_$($Tenant.defaultDomainName)"
SkipLog = $true
+ DurableMode = 'Sequence'
}
Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Compress -Depth 5)
} catch {
@@ -99,7 +100,7 @@ function Push-DomainAnalyserTenant {
}
}
} catch {
- Write-Host (Get-CippException -Exception $_)
+ Write-Host (Get-CippException -Exception $_ | ConvertTo-Json)
Write-LogMessage -API 'DomainAnalyser' -tenant $tenant.defaultDomainName -message 'DNS Analyser GraphGetRequest' -LogData (Get-CippException -Exception $_) -sev Error
}
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListGraphRequestQueue.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Graph Requests/Push-ListGraphRequestQueue.ps1
similarity index 86%
rename from Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListGraphRequestQueue.ps1
rename to Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Graph Requests/Push-ListGraphRequestQueue.ps1
index 1705df9a7f70..6e0c07abeec3 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListGraphRequestQueue.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Graph Requests/Push-ListGraphRequestQueue.ps1
@@ -3,14 +3,13 @@ function Push-ListGraphRequestQueue {
.FUNCTIONALITY
Entrypoint
#>
- # Input bindings are passed in via param block.
param($Item)
# Write out the queue message and metadata to the information log.
Write-Host "PowerShell queue trigger function processed work item: $($Item.Endpoint) - $($Item.TenantFilter)"
- $TenantQueueName = '{0} - {1}' -f $Item.QueueName, $Item.TenantFilter
- Update-CippQueueEntry -RowKey $Item.QueueId -Status 'Processing' -Name $TenantQueueName
+ #$TenantQueueName = '{0} - {1}' -f $Item.QueueName, $Item.TenantFilter
+ #Update-CippQueueEntry -RowKey $Item.QueueId -Status 'Processing' -Name $TenantQueueName
$ParamCollection = [System.Web.HttpUtility]::ParseQueryString([String]::Empty)
foreach ($Param in ($Item.Parameters.GetEnumerator() | Sort-Object -CaseSensitive -Property Key)) {
@@ -59,9 +58,8 @@ function Push-ListGraphRequestQueue {
}
try {
Add-CIPPAzDataTableEntity @Table -Entity $GraphResults -Force | Out-Null
- Update-CippQueueEntry -RowKey $Item.QueueId -Status 'Completed'
} catch {
Write-Host "Queue Error: $($_.Exception.Message)"
- Update-CippQueueEntry -RowKey $Item.QueueId -Status 'Failed'
+ throw $_
}
}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-AddAlertSubscription_Queue.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-AddAlertSubscription_Queue.ps1
index 611be3f2a23a..27bcafc91bf3 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-AddAlertSubscription_Queue.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-AddAlertSubscription_Queue.ps1
@@ -3,7 +3,6 @@ function Push-AddAlertSubscription_Queue {
.FUNCTIONALITY
Entrypoint
#>
- # Input bindings are passed in via param block.
param($QueueItem, $TriggerMetadata)
try {
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAdminPassword.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAdminPassword.ps1
index 63f371b10aa6..b0cd6985acb5 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAdminPassword.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAdminPassword.ps1
@@ -1,5 +1,9 @@
function Push-CIPPAlertAdminPassword {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertApnCertExpiry.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertApnCertExpiry.ps1
index 13a411f105e9..a612a39ad14c 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertApnCertExpiry.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertApnCertExpiry.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertApnCertExpiry {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAppSecretExpiry.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAppSecretExpiry.ps1
index 7b1b8b12fd4f..a7b8d25c672c 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAppSecretExpiry.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAppSecretExpiry.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertAppSecretExpiry {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDefenderMalware.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDefenderMalware.ps1
index 0d4d1c7b02ab..7a2bfed92590 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDefenderMalware.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDefenderMalware.ps1
@@ -1,5 +1,9 @@
function Push-CIPPAlertDefenderMalware {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDefenderStatus.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDefenderStatus.ps1
index 7b42affa4e00..1a8c186b1f71 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDefenderStatus.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDefenderStatus.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertDefenderStatus {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDepTokenExpiry.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDepTokenExpiry.ps1
index 8d457fcb012a..0a1ddad5863f 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDepTokenExpiry.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertDepTokenExpiry.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertDepTokenExpiry {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertExpiringLicenses.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertExpiringLicenses.ps1
index 6e2a704b9ba3..f13939b7086a 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertExpiringLicenses.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertExpiringLicenses.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertExpiringLicenses {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertMFAAdmins.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertMFAAdmins.ps1
index 6b933fbf64a0..7b2a83e349a2 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertMFAAdmins.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertMFAAdmins.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertMFAAdmins {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertMFAAlertUsers.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertMFAAlertUsers.ps1
index 6af3ca798606..e97d7f173c26 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertMFAAlertUsers.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertMFAAlertUsers.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertMFAAlertUsers {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNewAppApproval.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNewAppApproval.ps1
index f5317b9769a5..254f9bbbb394 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNewAppApproval.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNewAppApproval.ps1
@@ -1,5 +1,9 @@
function Push-CIPPAlertNewAppApproval {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNewRole.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNewRole.ps1
index 8ef2727ebb66..1945d32c3148 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNewRole.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNewRole.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertNewRole {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNoCAConfig.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNoCAConfig.ps1
index c9b8309963ca..75de187daed7 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNoCAConfig.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertNoCAConfig.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertNoCAConfig {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertOverusedLicenses.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertOverusedLicenses.ps1
index d314a064a88a..8897ab42a184 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertOverusedLicenses.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertOverusedLicenses.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertOverusedLicenses {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertQuotaUsed.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertQuotaUsed.ps1
index 49ae4105071c..762c4f04457f 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertQuotaUsed.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertQuotaUsed.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertQuotaUsed {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertSecDefaultsUpsell.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertSecDefaultsUpsell.ps1
index b89347a828a8..bfa15eefa2da 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertSecDefaultsUpsell.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertSecDefaultsUpsell.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertSecDefaultsUpsell {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertSharepointQuota.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertSharepointQuota.ps1
index 58dedd4888a8..579ab727c851 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertSharepointQuota.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertSharepointQuota.ps1
@@ -1,5 +1,9 @@
function Push-CIPPAlertSharepointQuota {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertUnusedLicenses.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertUnusedLicenses.ps1
index 74be1a6e4030..b83ae1fb4701 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertUnusedLicenses.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertUnusedLicenses.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertUnusedLicenses {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertVppTokenExpiry.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertVppTokenExpiry.ps1
index d9a2e70d6531..6cbab2e3c0ff 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertVppTokenExpiry.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertVppTokenExpiry.ps1
@@ -1,4 +1,8 @@
function Push-CIPPAlertVppTokenExpiry {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPStandard.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPStandard.ps1
index dd9849da8514..ba923ab1bb3f 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPStandard.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPStandard.ps1
@@ -1,4 +1,8 @@
function Push-CIPPStandard {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param (
$Item
)
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecAddMultiTenantApp.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecAddMultiTenantApp.ps1
index f567ef62932f..62e04ac8ba5b 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecAddMultiTenantApp.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecAddMultiTenantApp.ps1
@@ -1,4 +1,8 @@
function Push-ExecAddMultiTenantApp($QueueItem, $TriggerMetadata) {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
try {
$Queueitem = $QueueItem | ConvertTo-Json -Depth 10 | ConvertFrom-Json
Write-Host "$($Queueitem | ConvertTo-Json -Depth 10)"
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecGDAPInviteQueue.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecGDAPInviteQueue.ps1
index 833b498eb34e..806287b7a4e9 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecGDAPInviteQueue.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecGDAPInviteQueue.ps1
@@ -1,5 +1,8 @@
function Push-ExecGDAPInviteQueue {
- # Input bindings are passed in via param block.
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Item)
# Write out the queue message and metadata to the information log.
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecScheduledCommand.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecScheduledCommand.ps1
index 8e53dcbd8bd4..8321209ac94c 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecScheduledCommand.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ExecScheduledCommand.ps1
@@ -1,5 +1,8 @@
function Push-ExecScheduledCommand {
- # Input bindings are passed in via param block.
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Item)
$Table = Get-CippTable -tablename 'ScheduledTasks'
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-GetPendingWebhooks.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-GetPendingWebhooks.ps1
index 11e518c782bd..7cef525b561d 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-GetPendingWebhooks.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-GetPendingWebhooks.ps1
@@ -1,6 +1,11 @@
function Push-GetPendingWebhooks {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
+ Param($Item)
$Table = Get-CIPPTable -TableName WebhookIncoming
- $Webhooks = Get-CIPPAzDataTableEntity @Table
+ $Webhooks = Get-CIPPAzDataTableEntity @Table -Property RowKey, FunctionName
$WebhookCount = ($Webhooks | Measure-Object).Count
$Message = 'Processing {0} webhooks' -f $WebhookCount
Write-LogMessage -API 'Webhooks' -message $Message -sev Info
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-GetTenants.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-GetTenants.ps1
index 4d9e274b7aaa..b5239d8bd92c 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-GetTenants.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-GetTenants.ps1
@@ -1,9 +1,17 @@
function Push-GetTenants {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
Param($Item)
$Params = $Item.TenantParams | ConvertTo-Json | ConvertFrom-Json -AsHashtable
try {
- Get-Tenants @Params | Select-Object customerId, @{n = 'FunctionName'; e = { $Item.DurableName } }
+ if ($Item.QueueId) {
+ Get-Tenants @Params | Select-Object customerId, @{n = 'FunctionName'; e = { $Item.DurableName } }, @{n = 'QueueId'; e = { $Item.QueueId } }, @{n = 'QueueName'; e = { $_.defaultDomainName } }
+ } else {
+ Get-Tenants @Params | Select-Object customerId, @{n = 'FunctionName'; e = { $Item.DurableName } }
+ }
} catch {
Write-Host "GetTenants Exception $($_.Exception.Message)"
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListLicensesQueue.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListLicensesQueue.ps1
index f587fa65fe39..cc6ba8a7bf10 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListLicensesQueue.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListLicensesQueue.ps1
@@ -1,5 +1,8 @@
function Push-ListLicensesQueue {
- # Input bindings are passed in via param block.
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Item)
# Write out the queue message and metadata to the information log.
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListMFAUsersQueue.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListMFAUsersQueue.ps1
index 89e9d1dbd3bd..37ac2186d265 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListMFAUsersQueue.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListMFAUsersQueue.ps1
@@ -1,5 +1,8 @@
function Push-ListMFAUsersQueue {
- # Input bindings are passed in via param block.
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Item)
# Write out the queue message and metadata to the information log.
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListMailboxRulesQueue.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListMailboxRulesQueue.ps1
index 5c7ba40b2f06..e0829bdf1fcd 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListMailboxRulesQueue.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListMailboxRulesQueue.ps1
@@ -1,5 +1,8 @@
function Push-ListMailboxRulesQueue {
- # Input bindings are passed in via param block.
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Item)
# Write out the queue message and metadata to the information log.
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-PublicWebhookProcess.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-PublicWebhookProcess.ps1
index fa4872195b0e..cb8e46acde61 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-PublicWebhookProcess.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-PublicWebhookProcess.ps1
@@ -1,19 +1,24 @@
function Push-PublicWebhookProcess {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Item)
+ $Table = Get-CIPPTable -TableName WebhookIncoming
+ $Webhook = Get-CIPPAzDataTableEntity @Table -Filter "RowKey eq '$($Item.RowKey)'"
try {
- if ($Item.Type -eq 'GraphSubscription') {
- Invoke-CippGraphWebhookProcessing -Data ($Item.Data | ConvertFrom-Json) -CIPPID $Item.CIPPID -WebhookInfo ($Item.Webhookinfo | ConvertFrom-Json)
- } elseif ($Item.Type -eq 'AuditLog') {
- Invoke-CippWebhookProcessing -TenantFilter $Item.TenantFilter -Data ($Item.Data | ConvertFrom-Json) -CIPPPURL $Item.CIPPURL
- } elseif ($Item.Type -eq 'PartnerCenter') {
- Invoke-CippPartnerWebhookProcessing -Data ($Item.Data | ConvertFrom-Json)
+ if ($Webhook.Type -eq 'GraphSubscription') {
+ Invoke-CippGraphWebhookProcessing -Data ($Webhook.Data | ConvertFrom-Json) -CIPPID $Webhook.CIPPID -WebhookInfo ($Webhook.Webhookinfo | ConvertFrom-Json)
+ } elseif ($Webhook.Type -eq 'AuditLog') {
+ Invoke-CippWebhookProcessing -TenantFilter $Webhook.TenantFilter -Data ($Webhook.Data | ConvertFrom-Json) -CIPPPURL $Webhook.CIPPURL
+ } elseif ($Webhook.Type -eq 'PartnerCenter') {
+ Invoke-CippPartnerWebhookProcessing -Data ($Webhook.Data | ConvertFrom-Json)
}
} catch {
Write-Host "Webhook Exception: $($_.Exception.Message)"
} finally {
- $WebhookIncoming = Get-CIPPTable -TableName WebhookIncoming
- $Entity = $Item | Select-Object -Property RowKey, PartitionKey
- Remove-AzDataTableEntity @WebhookIncoming -Entity $Entity
+ $Entity = $Webhook | Select-Object -Property RowKey, PartitionKey
+ Remove-AzDataTableEntity @Table -Entity $Entity
}
}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerAlert.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerAlert.ps1
index 43a1433ce573..12aa7b58f394 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerAlert.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerAlert.ps1
@@ -1,4 +1,8 @@
function Push-SchedulerAlert {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param (
$Item
)
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerCIPPNotifications.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerCIPPNotifications.ps1
index 3ec9e8b7d9a2..407a2c2411ab 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerCIPPNotifications.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerCIPPNotifications.ps1
@@ -1,4 +1,8 @@
function Push-SchedulerCIPPNotifications {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param (
$QueueItem, $TriggerMetadata
)
@@ -8,7 +12,7 @@ function Push-SchedulerCIPPNotifications {
$Config = [pscustomobject](Get-CIPPAzDataTableEntity @Table -Filter $Filter)
$Settings = [System.Collections.ArrayList]@('Alerts')
- $Config.psobject.properties.name | ForEach-Object { $settings.add($_) }
+ $Config.psobject.properties.name | ForEach-Object { $settings.add($_) }
$severity = $Config.Severity -split ','
Write-Host "Our Severity table is: $severity"
if (!$severity) {
@@ -18,7 +22,7 @@ function Push-SchedulerCIPPNotifications {
$Table = Get-CIPPTable
$PartitionKey = Get-Date -UFormat '%Y%m%d'
$Filter = "PartitionKey eq '{0}'" -f $PartitionKey
- $Currentlog = Get-CIPPAzDataTableEntity @Table -Filter $Filter | Where-Object {
+ $Currentlog = Get-CIPPAzDataTableEntity @Table -Filter $Filter | Where-Object {
$_.API -In $Settings -and $_.SentAsAlert -ne $true -and $_.Severity -In $severity
}
Write-Host ($Currentlog).count
@@ -38,9 +42,9 @@ function Push-SchedulerCIPPNotifications {
"contentType": "HTML",
"content": "You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log:
-
+
$($HTMLLog)
-
+
"
},
"toRecipients": [
@@ -67,9 +71,9 @@ function Push-SchedulerCIPPNotifications {
"contentType": "HTML",
"content": "You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log:
-
+
$($HTMLLog)
-
+
"
},
"toRecipients": [
@@ -97,7 +101,7 @@ function Push-SchedulerCIPPNotifications {
'*webhook.office.com*' {
$Log = $Currentlog | ConvertTo-Html -frag | Out-String
- $JSonBody = "{`"text`": `"You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log.
$Log`"}"
+ $JSonBody = "{`"text`": `"You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log.
$Log`"}"
Invoke-RestMethod -Uri $config.webhook -Method POST -ContentType 'Application/json' -Body $JSONBody
}
@@ -112,7 +116,7 @@ function Push-SchedulerCIPPNotifications {
'*discord.com*' {
$Log = $Currentlog | ConvertTo-Html -frag | Out-String
- $JSonBody = "{`"content`": `"You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log. $Log`"}"
+ $JSonBody = "{`"content`": `"You've setup your alert policies to be alerted whenever specific events happen. We've found some of these events in the log. $Log`"}"
Invoke-RestMethod -Uri $config.webhook -Method POST -ContentType 'Application/json' -Body $JSONBody
}
default {
@@ -124,7 +128,7 @@ function Push-SchedulerCIPPNotifications {
Write-LogMessage -API 'Alerts' -tenant $Tenant -message "Sent Webhook to $($config.webhook)" -sev Debug
}
- $UpdateLogs = $CurrentLog | ForEach-Object {
+ $UpdateLogs = $CurrentLog | ForEach-Object {
$_.SentAsAlert = $true
$_
}
@@ -146,7 +150,7 @@ function Push-SchedulerCIPPNotifications {
AlertTitle = "$tenant CIPP Alert: Alerts found starting at $((Get-Date).AddMinutes(-15))"
}
New-CippExtAlert -Alert $Alert
- $UpdateLogs = $CurrentLog | ForEach-Object {
+ $UpdateLogs = $CurrentLog | ForEach-Object {
$_.SentAsAlert = $true
$_
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-Schedulerwebhookcreation.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-Schedulerwebhookcreation.ps1
index 82e1a47d55c5..d3a02c62063d 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-Schedulerwebhookcreation.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-Schedulerwebhookcreation.ps1
@@ -1,5 +1,8 @@
-function Push-Schedulerwebhookcreation
- {
+function Push-Schedulerwebhookcreation {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param (
$QueueItem, $TriggerMetadata
)
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-UpdatePermissionsQueue.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-UpdatePermissionsQueue.ps1
index 672f1f196b65..abc0fd0b7814 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-UpdatePermissionsQueue.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-UpdatePermissionsQueue.ps1
@@ -1,5 +1,8 @@
function Push-UpdatePermissionsQueue {
- # Input bindings are passed in via param block.
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Item)
Write-Host "Applying permissions for $($Item.defaultDomainName)"
$Table = Get-CIPPTable -TableName cpvtenants
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-UpdateTenants.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-UpdateTenants.ps1
index 259dc3e326d7..f60a27a57b26 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-UpdateTenants.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-UpdateTenants.ps1
@@ -1,4 +1,8 @@
function Push-UpdateTenants {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
Param($Item)
$QueueReference = 'UpdateTenants'
$RunningQueue = Invoke-ListCippQueue | Where-Object { $_.Reference -eq $QueueReference -and $_.Status -ne 'Completed' -and $_.Status -ne 'Failed' }
diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-Z_CIPPQueueTrigger.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-Z_CIPPQueueTrigger.ps1
index da3e22e1885a..b8336c9975ff 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-Z_CIPPQueueTrigger.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-Z_CIPPQueueTrigger.ps1
@@ -1,4 +1,8 @@
function Push-Z_CIPPQueueTrigger {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
Param($QueueItem, $TriggerMetadata)
$APIName = $QueueItem.FunctionName
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecAddAlert.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecAddAlert.ps1
new file mode 100644
index 000000000000..2fb140ce0b5f
--- /dev/null
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecAddAlert.ps1
@@ -0,0 +1,19 @@
+using namespace System.Net
+
+Function Invoke-ExecAddAlert {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
+ [CmdletBinding()]
+ param($Request, $TriggerMetadata)
+
+
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API 'Manual Alert Generator' -message $request.body.text -Sev $request.body.Severity
+ # Associate values to output bindings by calling 'Push-OutputBinding'.
+ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
+ StatusCode = [HttpStatusCode]::OK
+ Body = 'Successfully generated alert.'
+ })
+
+}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecPartnerWebhook.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecPartnerWebhook.ps1
index 1644f9a961dc..a5af73c686da 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecPartnerWebhook.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecPartnerWebhook.ps1
@@ -1,4 +1,8 @@
function Invoke-ExecPartnerWebhook {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
Param($Request, $TriggerMetadata)
switch ($Request.Query.Action) {
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-GetCippAlerts.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-GetCippAlerts.ps1
index 9a5e25e55df5..d0bbaea27dfc 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-GetCippAlerts.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-GetCippAlerts.ps1
@@ -13,6 +13,7 @@ Function Invoke-GetCippAlerts {
$PartitionKey = Get-Date -UFormat '%Y%m%d'
$Filter = "PartitionKey eq '{0}'" -f $PartitionKey
$Rows = Get-CIPPAzDataTableEntity @Table -Filter $Filter | Sort-Object TableTimestamp -Descending | Select-Object -First 10
+ $role = ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($request.headers.'x-ms-client-principal')) | ConvertFrom-Json).userRoles
$APIVersion = Get-Content 'version_latest.txt' | Out-String
$CIPPVersion = $request.query.localversion
@@ -40,10 +41,7 @@ Function Invoke-GetCippAlerts {
if ($env:ApplicationID -eq 'LongApplicationID' -or $null -eq $ENV:ApplicationID) { $Alerts.add(@{Alert = 'You have not yet setup your SAM Setup. Please go to the SAM Wizard in settings to finish setup'; link = '/cipp/setup'; type = 'warning' }) }
- if ($env:FUNCTIONS_EXTENSION_VERSION -ne '~4') {
- $Alerts.add(@{Alert = 'Your Function App is running on a Runtime version lower than 4. This impacts performance. Go to Settings -> Backend -> Function App Configuration -> Function Runtime Settings and set this to 4 for maximum performance'; link = '/cipp/setup'; type = 'warning' })
- }
- if ($psversiontable.psversion.toString() -lt 7.2) { $Alerts.add(@{Alert = 'Your Function App is running on Powershell 7. This impacts performance. Go to Settings -> Backend -> Function App Configuration -> General Settings and set PowerShell Core Version to 7.2 for maximum performance'; link = '/cipp/setup'; type = 'danger' }) }
+ if ($role -like '*superadmin*') { $Alerts.add(@{Alert = 'You are logged in under a superadmin account. This account should not be used for normal usage.'; link = 'https://docs.cipp.app/setup/installation/owntenant'; type = 'danger' }) }
if ($env:WEBSITE_RUN_FROM_PACKAGE -ne '1') {
$Alerts.add(
@{Alert = 'Your Function App is running in write mode. This will cause performance issues and increase cost. Please check this '
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-AddScheduledItem.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-AddScheduledItem.ps1
index 22be136d7623..9c7021dfaae9 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-AddScheduledItem.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-AddScheduledItem.ps1
@@ -8,6 +8,7 @@ Function Invoke-AddScheduledItem {
[CmdletBinding()]
param($Request, $TriggerMetadata)
$Result = Add-CIPPScheduledTask -Task $Request.body -hidden $false
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message $Result -Sev 'Info'
Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
StatusCode = [HttpStatusCode]::OK
diff --git a/Modules/CIPPCore/Public/Invoke-RemoveScheduledItem.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-RemoveScheduledItem.ps1
similarity index 65%
rename from Modules/CIPPCore/Public/Invoke-RemoveScheduledItem.ps1
rename to Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-RemoveScheduledItem.ps1
index 8c5a00f3a086..414de1edb6e7 100644
--- a/Modules/CIPPCore/Public/Invoke-RemoveScheduledItem.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-RemoveScheduledItem.ps1
@@ -18,11 +18,7 @@ Function Invoke-RemoveScheduledItem {
StatusCode = [HttpStatusCode]::OK
Body = @{ Results = 'Task removed successfully.' }
})
- $Table = Get-CIPPTable -TableName 'ScheduledTasks'
- Remove-AzDataTableEntity @Table -Entity $task
- Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
- StatusCode = [HttpStatusCode]::OK
- Body = @{ Results = 'Task removed successfully.' }
- })
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message 'Task removed' -Sev 'Debug'
+
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecExtensionMapping.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecExtensionMapping.ps1
index f35e5a38c94f..5e408d64e1ef 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecExtensionMapping.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecExtensionMapping.ps1
@@ -68,7 +68,7 @@ Function Invoke-ExecExtensionMapping {
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
$Body = [pscustomobject]@{'Results' = 'Automapping Request has been queued. Exact name matches will appear first and matches on device names and serials will take longer. Please check the CIPP Logbook and refresh the page once complete.' }
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecExtensionSync.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecExtensionSync.ps1
index 57e44b3f946f..c7b436294b74 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecExtensionSync.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecExtensionSync.ps1
@@ -58,7 +58,7 @@ Function Invoke-ExecExtensionSync {
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
$Results = [pscustomobject]@{'Results' = "NinjaOne Synchronization Queued for $($Tenant.NinjaOneName)" }
@@ -79,7 +79,7 @@ Function Invoke-ExecExtensionSync {
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
$Results = [pscustomobject]@{'Results' = "NinjaOne Synchronization Queuing $(($TenantsToProcess | Measure-Object).count) Tenants" }
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecPartnerMode.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecPartnerMode.ps1
new file mode 100644
index 000000000000..b7a2a621fb64
--- /dev/null
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Settings/Invoke-ExecPartnerMode.ps1
@@ -0,0 +1,50 @@
+using namespace System.Net
+
+Function Invoke-ExecPartnerMode {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
+ [CmdletBinding()]
+ param($Request, $TriggerMetadata)
+
+ $roles = ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($request.headers.'x-ms-client-principal')) | ConvertFrom-Json).userRoles
+ if ('superadmin' -notin $roles) {
+ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
+ StatusCode = [HttpStatusCode]::Forbidden
+ Body = @{ error = 'You do not have permission to perform this action.' }
+ })
+ return
+ } else {
+ $Table = Get-CippTable -tablename 'tenantMode'
+ if ($request.body.TenantMode) {
+ Add-CIPPAzDataTableEntity @Table -Entity @{
+ PartitionKey = 'Setting'
+ RowKey = 'PartnerModeSetting'
+ state = $request.body.TenantMode
+ } -Force
+ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
+ StatusCode = [HttpStatusCode]::OK
+ Body = @{ results = "Set Tenant mode to $($Request.body.TenantMode)" }
+ })
+
+ }
+
+ if ($request.query.action -eq 'ListCurrent') {
+ $CurrentState = Get-CIPPAzDataTableEntity @Table
+ $CurrentState = if (!$CurrentState) {
+ [PSCustomObject]@{
+ TenantMode = 'default'
+ }
+ } else {
+ [PSCustomObject]@{
+ TenantMode = $CurrentState.state
+ }
+ }
+ }
+ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
+ StatusCode = [HttpStatusCode]::OK
+ Body = $CurrentState
+ })
+ }
+}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Setup/Invoke-ExecSAMSetup.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Setup/Invoke-ExecSAMSetup.ps1
index ba829541e6dc..97e293d285ce 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Setup/Invoke-ExecSAMSetup.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Setup/Invoke-ExecSAMSetup.ps1
@@ -163,6 +163,11 @@ Function Invoke-ExecSAMSetup {
} catch {
Write-Host "didn't deploy spn for Teams, probably already there."
}
+ try {
+ $SPNPartnerCenter = (Invoke-RestMethod 'https://graph.microsoft.com/v1.0/servicePrincipals' -Headers @{ authorization = "Bearer $($Token.Access_Token)" } -Method POST -Body "{ `"appId`": `"fa3d9a0c-3fb0-42cc-9193-47c7ecd2edbd`" }" -ContentType 'application/json')
+ } catch {
+ Write-Host "didn't deploy spn for PartnerCenter, probably already there."
+ }
$SPN = (Invoke-RestMethod 'https://graph.microsoft.com/v1.0/servicePrincipals' -Headers @{ authorization = "Bearer $($Token.Access_Token)" } -Method POST -Body "{ `"appId`": `"$($AppId.appId)`" }" -ContentType 'application/json')
Start-Sleep 3
$GroupID = (Invoke-RestMethod "https://graph.microsoft.com/v1.0/groups?`$filter=startswith(displayName,'AdminAgents')" -Headers @{ authorization = "Bearer $($Token.Access_Token)" } -Method Get -ContentType 'application/json').value.id
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddChocoApp.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddChocoApp.ps1
index d469e507a5db..7c94dbe33d81 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddChocoApp.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddChocoApp.ps1
@@ -45,9 +45,8 @@ Function Invoke-AddChocoApp {
PartitionKey = 'apps'
}
"Successfully added Choco App for $($Tenant) to queue."
- Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant -message "Chocolatey Application $($intunebody.Displayname) queued to add" -Sev 'Info'
- }
- catch {
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant -message "Successfully added Choco App $($intunebody.Displayname) to queue" -Sev 'Info'
+ } catch {
"Failed adding Choco App for $($Tenant) to queue"
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant -message "Failed to add Chocolatey Application $($intunebody.Displayname) to queue" -Sev 'Error'
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddMSPApp.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddMSPApp.ps1
index 5bf0df7bf86d..5ecd0a49fcb9 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddMSPApp.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddMSPApp.ps1
@@ -78,9 +78,8 @@ Function Invoke-AddMSPApp {
status = 'Not Deployed yet'
}
"Successfully added MSP App for $($Tenant.defaultDomainName) to queue. "
- Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant.defaultDomainName -message "MSP Application $($intunebody.Displayname) queued to add" -Sev 'Info'
- }
- catch {
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant.defaultDomainName -message "MSP Application $($intunebody.Displayname) added to queue" -Sev 'Info'
+ } catch {
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant.defaultDomainName -message "Failed to add MSP Application $($intunebody.Displayname) to queue" -Sev 'Error'
"Failed to add MSP app for $($Tenant.defaultDomainName) to queue"
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddOfficeApp.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddOfficeApp.ps1
index a5f9ec87c351..865449257a89 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddOfficeApp.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddOfficeApp.ps1
@@ -68,8 +68,7 @@ Function Invoke-AddOfficeApp {
}
Write-Host ($ObjBody | ConvertTo-Json -Compress)
$OfficeAppID = New-graphPostRequest -Uri 'https://graph.microsoft.com/beta/deviceAppManagement/mobileApps' -tenantid $tenant -Body (ConvertTo-Json -InputObject $ObjBody -Depth 10) -type POST
- }
- else {
+ } else {
"Office deployment already exists for $($Tenant)"
Continue
}
@@ -80,10 +79,9 @@ Function Invoke-AddOfficeApp {
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenant) -message "Assigned Office to $AssignTo" -Sev 'Info'
}
"Successfully added Office App for $($Tenant)"
- }
- catch {
+ } catch {
"Failed to add Office App for $($Tenant): $($_.Exception.Message)"
- Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenant) -message "Failed adding Autopilot Profile $($Displayname). Error: $($_.Exception.Message)" -Sev 'Error'
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenant) -message "Failed to add Office App. Error: $($_.Exception.Message)" -Sev 'Error'
continue
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddWinGetApp.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddWinGetApp.ps1
index 508484dfeb6c..d59307524615 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddWinGetApp.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Endpoint/Applications/Invoke-AddWinGetApp.ps1
@@ -46,10 +46,9 @@ Function Invoke-AddWinGetApp {
status = 'Not Deployed yet'
}
"Successfully added Store App for $($Tenant) to queue."
- Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant -message "Chocolatey Application $($intunebody.Displayname) queued to add" -Sev 'Info'
- }
- catch {
- Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant -message "Failed to add Chocolatey Application $($intunebody.Displayname) to queue" -Sev 'Error'
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant -message "Successfully added Store App $($intunebody.Displayname) to queue" -Sev 'Info'
+ } catch {
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $tenant -message "Failed to add Store App $($intunebody.Displayname) to queue" -Sev 'Error'
"Failed added Store App for $($Tenant) to queue"
}
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUserBulk.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUserBulk.ps1
index 14d52620943d..31c3fbbaa687 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUserBulk.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Identity/Administration/Users/Invoke-AddUserBulk.ps1
@@ -16,7 +16,7 @@ Function Invoke-AddUserBulk {
Write-Host 'PowerShell HTTP trigger function processed a request.'
try {
$password = if ($userobj.password) { $userobj.password } else { New-passwordString }
- $UserprincipalName = "$($UserObj.mailNickName)@$($UserObj.domain)"
+ $UserprincipalName = "$($userobj.mailNickName)@$($userobj.domain)"
$BodyToship = $userobj
#Remove domain from body to ship
$BodyToship = $BodyToship | Select-Object * -ExcludeProperty password, domain
@@ -27,9 +27,10 @@ Function Invoke-AddUserBulk {
if ($userobj.businessPhones) { $bodytoShip.businessPhones = @($userobj.businessPhones) }
$bodyToShip = ConvertTo-Json -Depth 10 -InputObject $BodyToship -Compress
Write-Host "Our body to ship is $bodyToShip"
- $GraphRequest = New-GraphPostRequest -uri 'https://graph.microsoft.com/beta/users' -tenantid $TenantFilter -type POST -body $BodyToship -verbose
+ $GraphRequest = New-GraphPostRequest -uri 'https://graph.microsoft.com/beta/users' -tenantid $TenantFilter -type POST -body $BodyToship
+ Write-Host "Graph request is $GraphRequest"
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($TenantFilter) -message "Created user $($userobj.displayname) with id $($GraphRequest.id) " -Sev 'Info'
- $results.add("Created user $($UserprincipalName). Password is $password")
+ $results.add("Created user $($UserprincipalName). Password is $password") | Out-Null
} catch {
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($TenantFilter) -message "Failed to create user. Error:$($_.Exception.Message)" -Sev 'Error'
$body = $results.add("Failed to create user. $($_.Exception.Message)" )
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Alerts/Invoke-PublicWebhooks.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Alerts/Invoke-PublicWebhooks.ps1
index 9f843768ab9b..e81e26af2191 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Alerts/Invoke-PublicWebhooks.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Alerts/Invoke-PublicWebhooks.ps1
@@ -1,6 +1,9 @@
using namespace System.Net
function Invoke-PublicWebhooks {
- # Input bindings are passed in via param block.
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Request, $TriggerMetadata)
Set-Location (Get-Item $PSScriptRoot).Parent.FullName
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Application Approval/Invoke-ExecAddMultiTenantApp.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Application Approval/Invoke-ExecAddMultiTenantApp.ps1
index cb68a725d7e3..ef76692431bb 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Application Approval/Invoke-ExecAddMultiTenantApp.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Application Approval/Invoke-ExecAddMultiTenantApp.ps1
@@ -1,6 +1,10 @@
using namespace System.Net
function Invoke-ExecAddMultiTenantApp {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Request, $TriggerMetadata)
$APIName = $TriggerMetadata.FunctionName
@@ -22,9 +26,9 @@ function Invoke-ExecAddMultiTenantApp {
}
#This needs to be moved to a queue.
if ('allTenants' -in $Request.body.SelectedTenants.defaultDomainName) {
- $TenantFilter = (Get-Tenants).defaultDomainName
+ $TenantFilter = (Get-Tenants).defaultDomainName
} else {
- $TenantFilter = $Request.body.SelectedTenants.defaultDomainName
+ $TenantFilter = $Request.body.SelectedTenants.defaultDomainName
}
foreach ($Tenant in $TenantFilter) {
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Invoke-ExecOnboardTenant.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Invoke-ExecOnboardTenant.ps1
index 41365297ca4f..2048509e85d1 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Invoke-ExecOnboardTenant.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Invoke-ExecOnboardTenant.ps1
@@ -1,12 +1,15 @@
using namespace System.Net
function Invoke-ExecOnboardTenant {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
param($Request, $TriggerMetadata)
$APIName = 'ExecOnboardTenant'
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message 'Accessed this API' -Sev 'Debug'
-
- $Id = $Request.Body.Id
+ $Id = $Request.Body.id
if ($Id) {
try {
$OnboardTable = Get-CIPPTable -TableName 'TenantOnboarding'
@@ -59,12 +62,12 @@ function Invoke-ExecOnboardTenant {
AddMissingGroups = $Request.Body.addMissingGroups
AutoMapRoles = $Request.Body.autoMapRoles
}
-
+
$InputObject = @{
OrchestratorName = 'OnboardingOrchestrator'
Batch = @($Item)
}
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
}
$Steps = $TenantOnboarding.OnboardingSteps | ConvertFrom-Json
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Invoke-UpdateSecureScore.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Invoke-UpdateSecureScore.ps1
new file mode 100644
index 000000000000..b1ffb9bee098
--- /dev/null
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Administration/Invoke-UpdateSecureScore.ps1
@@ -0,0 +1,33 @@
+using namespace System.Net
+
+Function Invoke-ExecUpdateSecureScore {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
+ [CmdletBinding()]
+ param($Request, $TriggerMetadata)
+
+ $APIName = $TriggerMetadata.FunctionName
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message 'Accessed this API' -Sev 'Debug'
+
+ # Interact with query parameters or the body of the request.
+ $Body = @{
+ comment = $request.body.reason
+ state = $request.body.resolutionType
+ vendorInformation = $request.body.vendorInformation
+ }
+ try {
+ $GraphRequest = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/security/secureScoreControlProfiles/$($Request.body.ControlName)" -tenantid $Request.body.TenantFilter -type PATCH -Body $($Body | ConvertTo-Json -Compress)
+ $Results = [pscustomobject]@{'Results' = "Succesfully set control to $($body.state) " }
+ } catch {
+ $Results = [pscustomobject]@{'Results' = "Failed to set Control to $($body.state) $($_.Exception.Message)" }
+ }
+
+ # Associate values to output bindings by calling 'Push-OutputBinding'.
+ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
+ StatusCode = [HttpStatusCode]::OK
+ Body = $Results
+ })
+
+}
diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Standards/Invoke-AddStandardsDeploy.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Standards/Invoke-AddStandardsDeploy.ps1
index a97bb06cf6de..4a43292deba6 100644
--- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Standards/Invoke-AddStandardsDeploy.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Standards/Invoke-AddStandardsDeploy.ps1
@@ -15,8 +15,8 @@ Function Invoke-AddStandardsDeploy {
$username = ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($user)) | ConvertFrom-Json).userDetails
try {
- $Tenants = $Request.body.Tenant
- $Settings = ($request.body | Select-Object -Property *, v2* -ExcludeProperty Select_*, None )
+ $Tenant = $Request.body.tenant
+ $Settings = ($request.body | Select-Object -Property * -ExcludeProperty Select_*, None )
$Settings | Add-Member -NotePropertyName 'v2.1' -NotePropertyValue $true -Force
if ($Settings.phishProtection.remediate) {
$URL = $request.headers.'x-ms-original-url'.split('/api') | Select-Object -First 1
@@ -31,25 +31,23 @@ Function Invoke-AddStandardsDeploy {
$Settings.psobject.properties.remove($_)
}
+ $object = [PSCustomObject]@{
+ Tenant = $Tenant
+ AddedBy = $username
+ AppliedAt = (Get-Date).ToString('s')
+ Standards = $Settings
+ v2 = $true
+ } | ConvertTo-Json -Depth 10
- foreach ($Tenant in $tenants) {
-
- $object = [PSCustomObject]@{
- Tenant = $tenant
- AddedBy = $username
- AppliedAt = (Get-Date).ToString('s')
- Standards = $Settings
- v2 = $true
- } | ConvertTo-Json -Depth 10
- $Table = Get-CippTable -tablename 'standards'
- $Table.Force = $true
- Add-CIPPAzDataTableEntity @Table -Entity @{
- JSON = "$object"
- RowKey = "$Tenant"
- PartitionKey = 'standards'
- }
- Write-LogMessage -user $request.headers.'x-ms-client-principal' -tenant $tenant -API 'Standards' -message 'Successfully added standards deployment' -Sev 'Info'
+ $Table = Get-CippTable -tablename 'standards'
+ $Table.Force = $true
+ Add-CIPPAzDataTableEntity @Table -Entity @{
+ JSON = "$object"
+ RowKey = "$Tenant"
+ PartitionKey = 'standards'
}
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -tenant $tenant -API 'Standards' -message 'Successfully added standards deployment' -Sev 'Info'
+
$body = [pscustomobject]@{'Results' = 'Successfully added standards deployment' }
} catch {
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API 'Standards' -message "Standards API failed. Error:$($_.Exception.Message)" -Sev 'Error'
diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListCalendarPermissions.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListCalendarPermissions.ps1
index 3bbefa764b84..918b3d572871 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListCalendarPermissions.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListCalendarPermissions.ps1
@@ -15,7 +15,7 @@ Function Invoke-ListCalendarPermissions {
try {
$GetCalParam = @{Identity = $UserID; FolderScope = 'Calendar' }
- $CalendarFolder = New-ExoRequest -tenantid $Tenantfilter -cmdlet 'Get-MailboxFolderStatistics' -cmdParams $GetCalParam | Select-Object -First 1
+ $CalendarFolder = New-ExoRequest -tenantid $Tenantfilter -cmdlet 'Get-MailboxFolderStatistics' -cmdParams $GetCalParam -UseSystemMailbox $true | Select-Object -First 1
$CalParam = @{Identity = "$($UserID):\$($CalendarFolder.name)" }
$GraphRequest = New-ExoRequest -tenantid $Tenantfilter -cmdlet 'Get-MailboxFolderPermission' -cmdParams $CalParam -UseSystemMailbox $true | Select-Object Identity, User, AccessRights, FolderName
Write-LogMessage -API 'List Calendar Permissions' -tenant $tenantfilter -message "Calendar permissions listed for $($tenantfilter)" -sev Debug
diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListFunctionParameters.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListFunctionParameters.ps1
index 9460428ac793..2be8941920f1 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListFunctionParameters.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListFunctionParameters.ps1
@@ -5,7 +5,6 @@ function Invoke-ListFunctionParameters {
.FUNCTIONALITY
Entrypoint
#>
- # Input bindings are passed in via param block.
param($Request, $TriggerMetadata)
$APIName = $TriggerMetadata.FunctionName
@@ -26,7 +25,7 @@ function Invoke-ListFunctionParameters {
$CommandQuery.Name = $Function
}
$IgnoreList = 'entryPoint', 'internal'
- $CommonParameters = @('Verbose', 'Debug', 'ErrorAction', 'WarningAction', 'InformationAction', 'ErrorVariable', 'WarningVariable', 'InformationVariable', 'OutVariable', 'OutBuffer', 'PipelineVariable', 'TenantFilter', 'APIName', 'ExecutingUser')
+ $CommonParameters = @('Verbose', 'Debug', 'ErrorAction', 'WarningAction', 'InformationAction', 'ErrorVariable', 'WarningVariable', 'InformationVariable', 'OutVariable', 'OutBuffer', 'PipelineVariable', 'TenantFilter', 'APIName', 'ExecutingUser', 'ProgressAction')
$TemporaryBlacklist = 'Get-CIPPAuthentication', 'Invoke-CippWebhookProcessing', 'Invoke-ListFunctionParameters', 'New-CIPPAPIConfig', 'New-CIPPGraphSubscription'
try {
$Functions = Get-Command @CommandQuery | Where-Object { $_.Visibility -eq 'Public' }
diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListGraphRequest.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListGraphRequest.ps1
index 95866c41c395..a5dc6a739d6b 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListGraphRequest.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListGraphRequest.ps1
@@ -135,7 +135,7 @@ function Invoke-ListGraphRequest {
if ($request.Query.Sort) {
$GraphRequestData.Results = $GraphRequestData.Results | Sort-Object -Property $request.Query.Sort
- }
+ }
$Outputdata = $GraphRequestData | ConvertTo-Json -Depth 20 -Compress
Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListLicenses.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListLicenses.ps1
index 6870b020be6e..69627154a009 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListLicenses.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListLicenses.ps1
@@ -41,7 +41,7 @@ Function Invoke-ListLicenses {
SkipLog = $true
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
}
} else {
diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMFAUsers.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMFAUsers.ps1
index 99209bfc9c8f..118ca8d4b050 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMFAUsers.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMFAUsers.ps1
@@ -40,7 +40,7 @@ Function Invoke-ListMFAUsers {
SkipLog = $true
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
}
} else {
diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMailboxRules.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMailboxRules.ps1
index d1de06beada8..6e3cb79e42c3 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMailboxRules.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMailboxRules.ps1
@@ -45,7 +45,7 @@ Function Invoke-ListMailboxRules {
SkipLog = $true
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListServiceHealth.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListServiceHealth.ps1
index 48144aa28668..1c497fb40f9e 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListServiceHealth.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListServiceHealth.ps1
@@ -13,23 +13,34 @@ Function Invoke-ListServiceHealth {
# Write to the Azure Functions log stream.
Write-Host 'PowerShell HTTP trigger function processed a request.'
-
- $ResultHealthSummary = Get-Tenants | ForEach-Object -Parallel {
- Import-Module '.\Modules\AzBobbyTables'
- Import-Module '.\Modules\CIPPCore'
- $tenantname = $_.displayName
- Write-Host $tenantname
- $prop = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/admin/serviceAnnouncement/issues?`$filter=endDateTime eq null" -tenantid $_.defaultDomainName
- $prop | Add-Member -NotePropertyName 'tenant' -NotePropertyValue $tenantname
- $prop
+ if ($Request.query.tenantFilter -eq 'AllTenants') {
+ $ResultHealthSummary = Get-Tenants | ForEach-Object -Parallel {
+ Import-Module '.\Modules\AzBobbyTables'
+ Import-Module '.\Modules\CIPPCore'
+ $TenantName = $_.displayName
+ Write-Host "Processed Service Health for $TenantName via AllTenants"
+ $prop = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/admin/serviceAnnouncement/issues?`$filter=endDateTime eq null" -tenantid $_.defaultDomainName
+ $prop | Add-Member -NotePropertyName 'tenant' -NotePropertyValue $TenantName
+ $prop | Add-Member -NotePropertyName 'defaultDomainName' -NotePropertyValue $_.defaultDomainName
+ $prop
+ }
+ } else {
+ $TenantName = $Request.query.displayName
+ $TenantID = $Request.query.tenantFilter
+ $DefaultDomainName = $Request.query.defaultDomainName
+ $ResultHealthSummary = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/admin/serviceAnnouncement/issues?`$filter=endDateTime eq null" -tenantid $TenantID
+ $ResultHealthSummary | Add-Member -NotePropertyName 'tenant' -NotePropertyValue $TenantName
+ $ResultHealthSummary | Add-Member -NotePropertyName 'defaultDomainName' -NotePropertyValue $DefaultDomainName
+ Write-Host "Processed Service Health for $TenantName"
}
$Results = foreach ($h in $ResultHealthSummary) {
[PSCustomObject]@{
- TenantName = $h.tenant
- issueId = $h.ID
- service = $h.service
- type = $h.feature
- desc = $h.impactDescription
+ TenantName = $h.tenant
+ DefaultDomainName = $h.defaultDomainName
+ issueId = $h.ID
+ service = $h.service
+ type = $h.feature
+ desc = $h.impactDescription
}
}
diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListStandards.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListStandards.ps1
index de338c53e239..9f5df838f246 100644
--- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListStandards.ps1
+++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListStandards.ps1
@@ -10,38 +10,41 @@ Function Invoke-ListStandards {
$APIName = $TriggerMetadata.FunctionName
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message 'Accessed this API' -Sev 'Debug'
- $Table = Get-CippTable -tablename 'standards'
- $Filter = "PartitionKey eq 'standards'"
-
- try {
- if ($Request.query.TenantFilter) {
- $tenants = (Get-CIPPAzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json -Depth 15 -ErrorAction Stop | Where-Object Tenant -EQ $Request.query.tenantFilter
- } else {
- $Tenants = (Get-CIPPAzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json -Depth 15 -ErrorAction Stop
- }
- } catch {}
-
- $CurrentStandards = foreach ($tenant in $tenants) {
- [PSCustomObject]@{
- displayName = $tenant.tenant
- appliedBy = $tenant.addedBy
- appliedAt = $tenant.appliedAt
- standards = $tenant.Standards
- StandardsExport = ($tenant.Standards.psobject.properties.name) -join ', '
+ if ($Request.Query.ShowConsolidated -eq $true) {
+ $CurrentStandards = @(Get-CIPPStandards -TenantFilter $Request.Query.TenantFilter)
+ } else {
+ $Table = Get-CippTable -tablename 'standards'
+ $Filter = "PartitionKey eq 'standards'"
+
+ try {
+ if ($Request.query.TenantFilter) {
+ $tenants = (Get-CIPPAzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json -Depth 15 -ErrorAction Stop | Where-Object Tenant -EQ $Request.query.tenantFilter
+ } else {
+ $Tenants = (Get-CIPPAzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json -Depth 15 -ErrorAction Stop
+ }
+ } catch {}
+
+ $CurrentStandards = foreach ($tenant in $tenants) {
+ [PSCustomObject]@{
+ displayName = $tenant.tenant
+ appliedBy = $tenant.addedBy
+ appliedAt = $tenant.appliedAt
+ standards = $tenant.Standards
+ StandardsExport = ($tenant.Standards.psobject.properties.name) -join ', '
+ }
}
- }
- if (!$CurrentStandards) {
- $CurrentStandards = [PSCustomObject]@{
- displayName = 'No Standards applied'
- appliedBy = $null
- appliedAt = $null
- standards = @{none = $null }
+ if (!$CurrentStandards) {
+ $CurrentStandards = [PSCustomObject]@{
+ displayName = 'No Standards applied'
+ appliedBy = $null
+ appliedAt = $null
+ standards = @{none = $null }
+ }
}
- }
-
- $CurrentStandards = ConvertTo-Json -InputObject @($CurrentStandards) -Depth 15 -Compress
+ $CurrentStandards = ConvertTo-Json -InputObject @($CurrentStandards) -Depth 15 -Compress
+ }
# Associate values to output bindings by calling 'Push-OutputBinding'.
Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
StatusCode = [HttpStatusCode]::OK
diff --git a/Modules/CIPPCore/Public/Get-CIPPDomainAnalyser.ps1 b/Modules/CIPPCore/Public/Get-CIPPDomainAnalyser.ps1
index fc4ad53915a1..33aa626e7c88 100644
--- a/Modules/CIPPCore/Public/Get-CIPPDomainAnalyser.ps1
+++ b/Modules/CIPPCore/Public/Get-CIPPDomainAnalyser.ps1
@@ -1,6 +1,19 @@
function Get-CIPPDomainAnalyser {
+ <#
+ .SYNOPSIS
+ Domain Analyser list
+
+ .DESCRIPTION
+ This function returns a list of domain analyser results for the selected tenant filter
+
+ .PARAMETER TenantFilter
+ Tenant to filter by, enter AllTenants to get all results
+
+ .EXAMPLE
+ Get-CIPPDomainAnalyser -TenantFilter 'AllTenants'
+ #>
[CmdletBinding()]
- Param($TenantFilter)
+ Param([string]$TenantFilter)
$DomainTable = Get-CIPPTable -Table 'Domains'
# Get all the things
diff --git a/Modules/CIPPCore/Public/Get-CIPPMFAState.ps1 b/Modules/CIPPCore/Public/Get-CIPPMFAState.ps1
index 40eb80366161..319f9a81e726 100644
--- a/Modules/CIPPCore/Public/Get-CIPPMFAState.ps1
+++ b/Modules/CIPPCore/Public/Get-CIPPMFAState.ps1
@@ -36,7 +36,7 @@ function Get-CIPPMFAState {
$ExcludeSpecific = New-Object System.Collections.ArrayList
foreach ($Policy in $CAPolicies) {
- if (($policy.grantControls.builtincontrols -eq 'mfa') -or ($policy.grantControls.customAuthenticationFactors -eq 'RequireDuoMfa')) {
+ if (($policy.grantControls.builtincontrols -eq 'mfa') -or ($policy.grantControls.authenticationStrength.requirementsSatisfied -eq 'mfa') -or ($policy.grantControls.customAuthenticationFactors -eq 'RequireDuoMfa')) {
if ($Policy.conditions.applications.includeApplications -ne 'All') {
Write-Host $Policy.conditions.applications.includeApplications
$CAState.Add("$($policy.displayName) - Specific Applications - $($policy.state)") | Out-Null
@@ -97,4 +97,4 @@ function Get-CIPPMFAState {
}
return $GraphRequest
-}
\ No newline at end of file
+}
diff --git a/Modules/CIPPCore/Public/GraphHelper/Get-Tenants.ps1 b/Modules/CIPPCore/Public/GraphHelper/Get-Tenants.ps1
index 02196d6f58e4..951efb4bb1b9 100644
--- a/Modules/CIPPCore/Public/GraphHelper/Get-Tenants.ps1
+++ b/Modules/CIPPCore/Public/GraphHelper/Get-Tenants.ps1
@@ -50,8 +50,10 @@ function Get-Tenants {
Remove-AzDataTableEntity @TenantsTable -Entity $_
}
}
+ $PartnerModeTable = Get-CippTable -tablename 'tenantMode'
+ $PartnerTenantState = Get-CIPPAzDataTableEntity @PartnerModeTable
- if ($BuildRequired -or $TriggerRefresh.IsPresent) {
+ if (($BuildRequired -or $TriggerRefresh.IsPresent) -and $PartnerTenantState.state -ne 'owntenant') {
#get the full list of tenants
$GDAPRelationships = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships?`$filter=status eq 'active' and not startsWith(displayName,'MLT_')&`$select=customer,autoExtendDuration,endDateTime" -NoAuthCheck:$true
$GDAPList = foreach ($Relationship in $GDAPRelationships) {
@@ -67,6 +69,13 @@ function Get-Tenants {
$TenantList = $ActiveRelationships | Group-Object -Property customerId | ForEach-Object {
Write-Host "Processing $($_.Name) to add to tenant list."
$ExistingTenantInfo = Get-CIPPAzDataTableEntity @TenantsTable -Filter "PartitionKey eq 'Tenants' and RowKey eq '$($_.Name)'"
+
+ if ($TriggerRefresh.IsPresent) {
+ # Reset error count
+ $ExistingTenantInfo.GraphErrorCount = 0
+ Add-CIPPAzDataTableEntity @TenantsTable -Entity $ExistingTenantInfo -Force | Out-Null
+ }
+
if ($ExistingTenantInfo -and $ExistingTenantInfo.RequiresRefresh -eq $false) {
Write-Host 'Existing tenant found. We already have it cached, skipping.'
$ExistingTenantInfo
@@ -117,13 +126,15 @@ function Get-Tenants {
}
}
$IncludedTenantsCache = [system.collections.generic.list[object]]::new()
- if ($env:PartnerTenantAvailable) {
+ if ($PartnerTenantState.state -eq 'PartnerTenantAvailable') {
# Add partner tenant if env is set
+ $Domains = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/domains' -tenantid $env:TenantID -NoAuthCheck:$true
$IncludedTenantsCache.Add([PSCustomObject]@{
RowKey = $env:TenantID
PartitionKey = 'Tenants'
customerId = $env:TenantID
- defaultDomainName = $env:TenantID
+ defaultDomainName = ($Domains | Where-Object { $_.isInitial -eq $true }).id
+ initialDomainName = ($Domains | Where-Object { $_.isInitial -eq $true }).id
displayName = '*Partner Tenant'
domains = 'PartnerTenant'
Excluded = $false
@@ -131,21 +142,45 @@ function Get-Tenants {
ExcludeDate = ''
GraphErrorCount = 0
LastGraphError = ''
+ RequiresRefresh = [bool]$RequiresRefresh
LastRefresh = (Get-Date).ToUniversalTime()
}) | Out-Null
}
foreach ($Tenant in $TenantList) {
if ($Tenant.defaultDomainName -eq 'Invalid' -or !$Tenant.defaultDomainName) {
Write-LogMessage -API 'Get-Tenants' -message "We're skipping $($Tenant.displayName) as it has an invalid default domain name. Something is up with this instance." -level 'Critical'
- continue
+ continue
}
$IncludedTenantsCache.Add($Tenant) | Out-Null
}
+
if ($IncludedTenantsCache) {
Add-CIPPAzDataTableEntity @TenantsTable -Entity $IncludedTenantsCache -Force | Out-Null
}
}
+ if ($PartnerTenantState.state -eq 'owntenant' -and $IncludedTenantsCache.RowKey.count -eq 0) {
+ $Domains = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/domains' -tenantid $env:TenantID -NoAuthCheck:$true
+ $IncludedTenantsCache = @([PSCustomObject]@{
+ RowKey = $env:TenantID
+ PartitionKey = 'Tenants'
+ customerId = $env:TenantID
+ defaultDomainName = ($Domains | Where-Object { $_.isInitial -eq $true }).id
+ initialDomainName = ($Domains | Where-Object { $_.isInitial -eq $true }).id
+ displayName = ($Domains | Where-Object { $_.isInitial -eq $true }).id
+ domains = 'PartnerTenant'
+ Excluded = $false
+ ExcludeUser = ''
+ ExcludeDate = ''
+ GraphErrorCount = 0
+ LastGraphError = ''
+ RequiresRefresh = [bool]$RequiresRefresh
+ LastRefresh = (Get-Date).ToUniversalTime()
+ })
+ if ($IncludedTenantsCache) {
+ Add-CIPPAzDataTableEntity @TenantsTable -Entity $IncludedTenantsCache -Force | Out-Null
+ }
+ }
return ($IncludedTenantsCache | Where-Object { $null -ne $_.defaultDomainName -and ($_.defaultDomainName -notmatch 'Domain Error' -or $IncludeAll.IsPresent) } | Sort-Object -Property displayName)
}
diff --git a/Modules/CIPPCore/Public/GraphHelper/New-ExoBulkRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-ExoBulkRequest.ps1
new file mode 100644
index 000000000000..3197e0606748
--- /dev/null
+++ b/Modules/CIPPCore/Public/GraphHelper/New-ExoBulkRequest.ps1
@@ -0,0 +1,87 @@
+
+
+function New-ExoBulkRequest ($tenantid, $cmdletArray, $useSystemMailbox, $Anchor, $NoAuthCheck, $Select) {
+ <#
+ .FUNCTIONALITY
+ Internal
+ #>
+ if ((Get-AuthorisedRequest -TenantID $tenantid) -or $NoAuthCheck -eq $True) {
+ $token = Get-ClassicAPIToken -resource 'https://outlook.office365.com' -Tenantid $tenantid
+ $Tenant = Get-Tenants -IncludeErrors | Where-Object { $_.defaultDomainName -eq $tenantid -or $_.customerId -eq $tenantid }
+ $Headers = @{
+ Authorization = "Bearer $($token.access_token)"
+ Prefer = 'odata.maxpagesize = 1000;odata.continue-on-error'
+ 'parameter-based-routing' = $true
+ 'X-AnchorMailbox' = $anchor
+ }
+ try {
+ if ($Select) { $Select = "`$select=$Select" }
+ $URL = "https://outlook.office365.com/adminapi/beta/$($tenant.customerId)/InvokeCommand?$Select"
+ $BatchURL = "https://outlook.office365.com/adminapi/beta/$($tenant.customerId)/`$batch"
+ $BatchBodyObj = @{
+ requests = @()
+ }
+ # Split the cmdletArray into batches of 10
+ $batches = [System.Collections.ArrayList]@()
+ for ($i = 0; $i -lt $cmdletArray.Length; $i += 10) {
+ $null = $batches.Add($cmdletArray[$i..[math]::Min($i + 9, $cmdletArray.Length - 1)])
+ }
+
+ # Process each batch
+ $ReturnedData = foreach ($batch in $batches) {
+ $BatchBodyObj.requests = [System.Collections.ArrayList]@()
+ foreach ($cmd in $batch) {
+ $cmdparams = $cmd.CmdletInput.Parameters
+ if ($cmdparams.Identity) { $Anchor = $cmdparams.Identity }
+ if ($cmdparams.anr) { $Anchor = $cmdparams.anr }
+ if ($cmdparams.User) { $Anchor = $cmdparams.User }
+ if (!$Anchor -or $useSystemMailbox) {
+ $OnMicrosoft = $Tenant.initialDomainName
+ $anchor = "UPN:SystemMailbox{8cc370d3-822a-4ab8-a926-bb94bd0641a9}@$($OnMicrosoft)"
+ }
+ $headers['X-AnchorMailbox'] = $Anchor
+ $Headers['X-CmdletName'] = $cmd.CmdletInput.CmdletName
+ $headers['Accept'] = 'application/json; odata.metadata=minimal'
+ $headers['Accept-Encoding'] = 'gzip'
+ $BatchRequest = @{
+ url = $URL
+ method = 'POST'
+ body = $cmd
+ headers = $Headers.Clone()
+ id = "$(New-Guid)"
+ }
+ $null = $BatchBodyObj['requests'].add($BatchRequest)
+ }
+ $Results = Invoke-RestMethod $BatchURL -ResponseHeadersVariable responseHeaders -Method POST -Body (ConvertTo-Json -InputObject $BatchBodyObj -Depth 10) -Headers $Headers -ContentType 'application/json; charset=utf-8'
+ $Results
+ Write-Host "Batch #$($batches.IndexOf($batch) + 1) of $($batches.Count) processed"
+ }
+ } catch {
+ $ErrorMess = $($_.Exception.Message)
+ $ReportedError = ($_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue)
+ $Message = if ($ReportedError.error.details.message) {
+ $ReportedError.error.details.message
+ } elseif ($ReportedError.error.message) { $ReportedError.error.message }
+ else { $ReportedError.error.innererror.internalException.message }
+ if ($null -eq $Message) { $Message = $ErrorMess }
+ throw $Message
+ }
+ $FinalData = foreach ($item in $ReturnedData.responses.body) {
+ if ($item.'@adminapi.warnings') {
+ Write-Warning $($item.'@adminapi.warnings' | Out-String)
+ }
+ if ($item.error) {
+ if ($item.error.details.message) {
+ $msg = [pscustomobject]@{error = $item.error.details.message; target = $item.error.details.target }
+ } else {
+ $msg = [pscustomobject]@{error = $item.error.message; target = $item.error.details.target }
+ }
+ $item | Add-Member -MemberType NoteProperty -Name 'value' -Value $msg -Force
+ }
+ [pscustomobject]$item.value
+ }
+ return $FinalData
+ } else {
+ Write-Error 'Not allowed. You cannot manage your own tenant or tenants not under your scope'
+ }
+}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/GraphHelper/New-GraphPOSTRequest.ps1 b/Modules/CIPPCore/Public/GraphHelper/New-GraphPOSTRequest.ps1
index 315881e1048b..dfbb5445c5e8 100644
--- a/Modules/CIPPCore/Public/GraphHelper/New-GraphPOSTRequest.ps1
+++ b/Modules/CIPPCore/Public/GraphHelper/New-GraphPOSTRequest.ps1
@@ -1,5 +1,5 @@
-function New-GraphPOSTRequest ($uri, $tenantid, $body, $type, $scope, $AsApp, $NoAuthCheck, $skipTokenCache, $AddedHeaders, $contentType, $IgnoreErrors) {
+function New-GraphPOSTRequest ($uri, $tenantid, $body, $type, $scope, $AsApp, $NoAuthCheck, $skipTokenCache, $AddedHeaders, $contentType, $IgnoreErrors = $false) {
<#
.FUNCTIONALITY
Internal
diff --git a/Modules/CIPPCore/Public/GraphHelper/Write-CippFunctionStats.ps1 b/Modules/CIPPCore/Public/GraphHelper/Write-CippFunctionStats.ps1
index 91d7ce2cd4cc..d5a86a35e34f 100644
--- a/Modules/CIPPCore/Public/GraphHelper/Write-CippFunctionStats.ps1
+++ b/Modules/CIPPCore/Public/GraphHelper/Write-CippFunctionStats.ps1
@@ -28,7 +28,7 @@ function Write-CippFunctionStats {
$StatEntity.ErrorMsg = $ErrorMsg
$Entity = [PSCustomObject]$Entity
foreach ($Property in $Entity.PSObject.Properties.Name) {
- if ($Entity.$Property.GetType().Name -in ('Hashtable', 'PSCustomObject')) {
+ if ($Entity.$Property.GetType().Name -in ('Hashtable', 'PSCustomObject', 'OrderedHashtable')) {
$StatEntity.$Property = [string]($Entity.$Property | ConvertTo-Json -Compress)
} elseif ($Property -notin ('ETag', 'RowKey', 'PartitionKey', 'Timestamp', 'LastRefresh')) {
$StatEntity.$Property = $Entity.$Property
diff --git a/Modules/CIPPCore/Public/GraphRequests/Get-GraphRequestList.ps1 b/Modules/CIPPCore/Public/GraphRequests/Get-GraphRequestList.ps1
index fa9490364e83..81d301c67891 100644
--- a/Modules/CIPPCore/Public/GraphRequests/Get-GraphRequestList.ps1
+++ b/Modules/CIPPCore/Public/GraphRequests/Get-GraphRequestList.ps1
@@ -89,29 +89,34 @@ function Get-GraphRequestList {
Write-Host ( 'GET [ {0} ]' -f $GraphQuery.ToString())
- if ($QueueId) {
- $Table = Get-CIPPTable -TableName $TableName
- $Filter = "QueueId eq '{0}'" -f $QueueId
- $Rows = Get-CIPPAzDataTableEntity @Table -Filter $Filter
- $Type = 'Queue'
- } elseif ($TenantFilter -eq 'AllTenants' -or (!$SkipCache.IsPresent -and !$ClearCache.IsPresent -and !$CountOnly.IsPresent)) {
- $Table = Get-CIPPTable -TableName $TableName
- if ($TenantFilter -eq 'AllTenants') {
- $Filter = "PartitionKey eq '{0}' and QueueType eq 'AllTenants'" -f $PartitionKey
+ try {
+ if ($QueueId) {
+ $Table = Get-CIPPTable -TableName $TableName
+ $Filter = "QueueId eq '{0}'" -f $QueueId
+ $Rows = Get-CIPPAzDataTableEntity @Table -Filter $Filter
+ $Type = 'Queue'
+ } elseif ($TenantFilter -eq 'AllTenants' -or (!$SkipCache.IsPresent -and !$ClearCache.IsPresent -and !$CountOnly.IsPresent)) {
+ $Table = Get-CIPPTable -TableName $TableName
+ if ($TenantFilter -eq 'AllTenants') {
+ $Filter = "PartitionKey eq '{0}' and QueueType eq 'AllTenants'" -f $PartitionKey
+ } else {
+ $Filter = "PartitionKey eq '{0}' and Tenant eq '{1}'" -f $PartitionKey, $TenantFilter
+ }
+ #Write-Host $Filter
+ $Rows = Get-CIPPAzDataTableEntity @Table -Filter $Filter | Where-Object { $_.Timestamp.DateTime -gt (Get-Date).ToUniversalTime().AddHours(-1) }
+ $Type = 'Cache'
} else {
- $Filter = "PartitionKey eq '{0}' and Tenant eq '{1}'" -f $PartitionKey, $TenantFilter
+ $Type = 'None'
+ $Rows = @()
}
- #Write-Host $Filter
- $Rows = Get-CIPPAzDataTableEntity @Table -Filter $Filter | Where-Object { $_.Timestamp.DateTime -gt (Get-Date).ToUniversalTime().AddHours(-1) }
- $Type = 'Cache'
- } else {
- $Type = 'None'
- $Rows = @()
- }
- Write-Host "Cached: $(($Rows | Measure-Object).Count) rows (Type: $($Type))"
+ Write-Host "Cached: $(($Rows | Measure-Object).Count) rows (Type: $($Type))"
- $QueueReference = '{0}-{1}' -f $TenantFilter, $PartitionKey
- $RunningQueue = Invoke-ListCippQueue | Where-Object { $_.Reference -eq $QueueReference -and $_.Status -ne 'Completed' -and $_.Status -ne 'Failed' }
+
+ $QueueReference = '{0}-{1}' -f $TenantFilter, $PartitionKey
+ $RunningQueue = Invoke-ListCippQueue | Where-Object { $_.Reference -eq $QueueReference -and $_.Status -ne 'Completed' -and $_.Status -ne 'Failed' }
+ } catch {
+ Write-Host $_.InvocationInfo.PositionMessage
+ }
if ($TenantFilter -ne 'AllTenants' -and $Endpoint -match '%tenantid%') {
$TenantId = (Get-Tenants -IncludeErrors | Where-Object { $_.defaultDomainName -eq $TenantFilter -or $_.customerId -eq $TenantFilter }).customerId
@@ -129,9 +134,8 @@ function Get-GraphRequestList {
'AllTenants' {
if ($SkipCache) {
Get-Tenants -IncludeErrors | ForEach-Object -Parallel {
- Import-Module '.\Modules\AzBobbyTables'
- Import-Module '.\Modules\CIPPCore'
-
+ Import-Module AzBobbyTables
+ Import-Module CIPPCore
$GraphRequestParams = @{
TenantFilter = $_.defaultDomainName
@@ -162,7 +166,8 @@ function Get-GraphRequestList {
Queued = $true
}
} else {
- $Queue = New-CippQueueEntry -Name "$QueueName (All Tenants)" -Link $CippLink -Reference $QueueReference
+ $TenantList = Get-Tenants -IncludeErrors
+ $Queue = New-CippQueueEntry -Name "$QueueName (All Tenants)" -Link $CippLink -Reference $QueueReference -TotalTasks ($TenantList | Measure-Object).Count
[PSCustomObject]@{
QueueMessage = 'Loading data for all tenants. Please check back after the job completes'
Queued = $true
@@ -170,14 +175,14 @@ function Get-GraphRequestList {
}
Write-Host 'Pushing output bindings'
try {
- $Batch = Get-Tenants -IncludeErrors | ForEach-Object {
+ $Batch = $TenantList | ForEach-Object {
$TenantFilter = $_.defaultDomainName
[PSCustomObject]@{
FunctionName = 'ListGraphRequestQueue'
TenantFilter = $TenantFilter
Endpoint = $Endpoint
QueueId = $Queue.RowKey
- QueueName = $QueueName
+ QueueName = $TenantFilter
QueueType = 'AllTenants'
Parameters = $Parameters
PartitionKey = $PartitionKey
@@ -195,7 +200,7 @@ function Get-GraphRequestList {
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json -Depth 5)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
} catch {
Write-Host "QUEUE ERROR: $($_.Exception.Message)"
}
@@ -238,13 +243,13 @@ function Get-GraphRequestList {
Queued = $true
}
} else {
- $Queue = New-CippQueueEntry -Name $QueueName -Link $CippLink -Reference $QueueReference
+ $Queue = New-CippQueueEntry -Name $QueueName -Link $CippLink -Reference $QueueReference -TotalTasks 1
$QueueTenant = [PSCustomObject]@{
FunctionName = 'ListGraphRequestQueue'
TenantFilter = $TenantFilter
Endpoint = $Endpoint
QueueId = $Queue.RowKey
- QueueName = $QueueName
+ QueueName = $TenantFilter
QueueType = 'SingleTenant'
Parameters = $Parameters
PartitionKey = $PartitionKey
@@ -257,7 +262,7 @@ function Get-GraphRequestList {
OrchestratorName = 'GraphRequestOrchestrator'
Batch = @($QueueTenant)
}
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
#Push-OutputBinding -Name QueueItem -Value $QueueTenant
diff --git a/Modules/CIPPCore/Public/Invoke-CIPPStandardsRun.ps1 b/Modules/CIPPCore/Public/Invoke-CIPPStandardsRun.ps1
index 8dd8055c6c93..56476c2acc35 100644
--- a/Modules/CIPPCore/Public/Invoke-CIPPStandardsRun.ps1
+++ b/Modules/CIPPCore/Public/Invoke-CIPPStandardsRun.ps1
@@ -6,83 +6,18 @@ function Invoke-CIPPStandardsRun {
[string]$TenantFilter = 'allTenants'
)
Write-Host "Starting process for standards - $($tenantFilter)"
- $Table = Get-CippTable -tablename 'standards'
- $SkipList = Get-Tenants -SkipList
- if ($tenantfilter -ne 'allTenants') {
- $Filter = "PartitionKey eq 'standards' and RowKey eq '$($tenantfilter)'"
- } else {
- $Filter = "PartitionKey eq 'standards'"
- }
- $Tenants = (Get-CIPPAzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json
-
- #Migrate from old standards to new standards.
- $Tenants | Where-Object -Property 'v2.1' -NE $null | ForEach-Object {
- $OldStd = $_
- $OldStd.standards.psobject.properties.name | ForEach-Object {
- if ($_ -eq 'MailContacts') {
- $OldStd.Standards.$_ = [pscustomobject]@{
- GeneralContact = $OldStd.Standards.MailContacts.GeneralContact.Mail
- SecurityContact = $OldStd.Standards.MailContacts.SecurityContact.Mail
- MarketingContact = $OldStd.Standards.MailContacts.MarketingContact.Mail
- TechContact = $OldStd.Standards.MailContacts.TechContact.Mail
- remediate = $true
- }
- } else {
- if ($OldStd.Standards.$_ -eq $true -and $_ -ne 'v2.1') {
- $OldStd.Standards.$_ = @{ remediate = $true }
- } else {
- $OldStd.Standards.$_ | Add-Member -NotePropertyName 'remediate' -NotePropertyValue $true -Force
- }
-
- }
- }
- $OldStd | Add-Member -NotePropertyName 'v2.1' -NotePropertyValue $true -PassThru -Force
- $Entity = @{
- PartitionKey = 'standards'
- RowKey = "$($OldStd.Tenant)"
- JSON = "$($OldStd | ConvertTo-Json -Depth 10)"
- }
- Add-CIPPAzDataTableEntity @Table -Entity $Entity -Force
- }
- #Execute standards
-
- $object = foreach ($Tenant in $Tenants) {
- $Tenant.standards.psobject.properties.name | ForEach-Object {
- $Standard = $_
- if ($Tenant.Tenant -ne 'AllTenants' -and $SkipList.defaultDomainName -notcontains $Tenant.Tenant) {
- if ($Standard -ne 'OverrideAllTenants') {
- [pscustomobject]@{
- Tenant = $tenant.Tenant
- Standard = $Standard
- Settings = $Tenant.standards.$Standard
- }
- }
- } elseif ($Tenant.Tenant -eq 'AllTenants') {
- Write-Host "Working on all Tenants Standard. Showing which tasks we'll run below this."
- Get-Tenants | ForEach-Object {
- $TenantForStandard = $_
- $TenantStandard = $Tenants | Where-Object { $_.Tenant -eq $TenantForStandard.defaultDomainName }
- if ($TenantStandard.standards.OverrideAllTenants.remediate -ne $true) {
- Write-Host "$($TenantForStandard.defaultDomainName) - $Standard"
- [pscustomobject]@{
- Tenant = $_.defaultDomainName
- Standard = $Standard
- Settings = $Tenant.standards.$Standard
- }
- }
- }
- }
- }
- }
+ $AllTasks = Get-CIPPStandards -TenantFilter $TenantFilter
#For each item in our object, run the queue.
-
- $Batch = foreach ($task in $object | Where-Object { $_.Standard -NotLike 'v2*' -and ($_.Settings.remediate -eq $true -or $_.Settings.alert -eq $true -or $_.Settings.report -eq $true) }) {
+ $Queue = New-CippQueueEntry -Name "Applying Standards ($TenantFilter)" -TotalTasks ($AllTasks | Measure-Object).Count
+ $Batch = foreach ($task in $AllTasks) {
[PSCustomObject]@{
Tenant = $task.Tenant
Standard = $task.Standard
Settings = $task.Settings
+ QueueId = $Queue.RowKey
+ QueueName = '{0} - {1}' -f $task.Standard, $Task.Tenant
FunctionName = 'CIPPStandard'
}
}
@@ -92,7 +27,7 @@ function Invoke-CIPPStandardsRun {
Batch = @($Batch)
}
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started orchestration with ID = '$InstanceId'"
#$Orchestrator = New-OrchestrationCheckStatusResponse -Request $Request -InstanceId $InstanceId
}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/Invoke-RemoveStandardTemplate.ps1 b/Modules/CIPPCore/Public/Invoke-RemoveStandardTemplate.ps1
new file mode 100644
index 000000000000..e95f74ecd11e
--- /dev/null
+++ b/Modules/CIPPCore/Public/Invoke-RemoveStandardTemplate.ps1
@@ -0,0 +1,36 @@
+using namespace System.Net
+
+Function Invoke-RemoveStandardTemplate {
+ <#
+ .FUNCTIONALITY
+ Entrypoint
+ #>
+ [CmdletBinding()]
+ param($Request, $TriggerMetadata)
+
+ $APIName = $TriggerMetadata.FunctionName
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message 'Accessed this API' -Sev 'Debug'
+
+ $ID = $request.query.ID
+ try {
+ $Table = Get-CippTable -tablename 'templates'
+
+ $Filter = "PartitionKey eq 'StandardsTemplate' and RowKey eq '$id'"
+ $ClearRow = Get-CIPPAzDataTableEntity @Table -Filter $Filter -Property PartitionKey, RowKey
+ Remove-AzDataTableEntity @Table -Entity $clearRow
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message "Removed Standards Template named $($ClearRow.name) and id $($id)" -Sev 'Info'
+ $body = [pscustomobject]@{'Results' = 'Successfully removed Template' }
+ } catch {
+ Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message "Failed to remove Standards template $ID. $($_.Exception.Message)" -Sev 'Error'
+ $body = [pscustomobject]@{'Results' = "Failed to remove template: $($_.Exception.Message)" }
+ }
+
+
+ # Associate values to output bindings by calling 'Push-OutputBinding'.
+ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
+ StatusCode = [HttpStatusCode]::OK
+ Body = $body
+ })
+
+
+}
diff --git a/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 b/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1
index f465c0f76d8c..1daf6e24ec2d 100644
--- a/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1
+++ b/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1
@@ -52,7 +52,7 @@ function Set-CIPPDefaultAPDeploymentProfile {
if (!$Profiles) {
$GraphRequest = New-GraphPostRequest -uri 'https://graph.microsoft.com/beta/deviceManagement/windowsAutopilotDeploymentProfiles' -body $body -tenantid $tenantfilter
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenantfilter) -message "Added Autopilot profile $($Displayname)" -Sev 'Info'
- }
+ }
if ($AssignTo) {
$AssignBody = '{"target":{"@odata.type":"#microsoft.graph.allDevicesAssignmentTarget"}}'
$assign = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/windowsAutopilotDeploymentProfiles/$($GraphRequest.id)/assignments" -tenantid $tenantfilter -type POST -body $AssignBody
@@ -60,8 +60,7 @@ function Set-CIPPDefaultAPDeploymentProfile {
}
"Successfully added profile for $($tenantfilter)"
} catch {
- "Failed to add profile for $($tenantfilter): $($_.Exception.Message)"
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenantfilter) -message "Failed adding Autopilot Profile $($Displayname). Error: $($_.Exception.Message)" -Sev 'Error'
- continue
+ throw "Failed to add profile for $($tenantfilter): $($_.Exception.Message)"
}
}
diff --git a/Modules/CIPPCore/Public/Set-CIPPDefaultAPEnrollment.ps1 b/Modules/CIPPCore/Public/Set-CIPPDefaultAPEnrollment.ps1
index 3c3f21eeceab..4c00ff758e0c 100644
--- a/Modules/CIPPCore/Public/Set-CIPPDefaultAPEnrollment.ps1
+++ b/Modules/CIPPCore/Public/Set-CIPPDefaultAPEnrollment.ps1
@@ -38,8 +38,7 @@ function Set-CIPPDefaultAPEnrollment {
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($TenantFilter) -message "Added Autopilot Enrollment Status Page $($Displayname)" -Sev 'Info'
} catch {
- "Failed to change default enrollment status page for $($($TenantFilter)): $($_.Exception.Message)"
Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($TenantFilter) -message "Failed adding Autopilot Enrollment Status Page $($Displayname). Error: $($_.Exception.Message)" -Sev 'Error'
- continue
+ throw "Failed to change default enrollment status page for $($($TenantFilter)): $($_.Exception.Message)"
}
}
diff --git a/Modules/CIPPCore/Public/Set-CIPPGDAPInviteGroups.ps1 b/Modules/CIPPCore/Public/Set-CIPPGDAPInviteGroups.ps1
index a4c87ab9eb5c..3017355df062 100644
--- a/Modules/CIPPCore/Public/Set-CIPPGDAPInviteGroups.ps1
+++ b/Modules/CIPPCore/Public/Set-CIPPGDAPInviteGroups.ps1
@@ -51,7 +51,7 @@ function Set-CIPPGDAPInviteGroups {
SkipLog = $true
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started GDAP Invite orchestration with ID = '$InstanceId'"
}
}
diff --git a/Modules/CIPPCore/Public/Set-CIPPSignInState.ps1 b/Modules/CIPPCore/Public/Set-CIPPSignInState.ps1
index a3a7e8a36ef9..926d97aa90d6 100644
--- a/Modules/CIPPCore/Public/Set-CIPPSignInState.ps1
+++ b/Modules/CIPPCore/Public/Set-CIPPSignInState.ps1
@@ -4,20 +4,21 @@ function Set-CIPPSignInState {
$userid,
[bool]$AccountEnabled,
$TenantFilter,
- $APIName = "Disable User Sign-in",
+ $APIName = 'Disable User Sign-in',
$ExecutingUser
)
-
+ 0
try {
+ if ($userid -like '*#EXT#*') { $userid = [System.Web.HttpUtility]::UrlEncode($userid) }
+
$body = @{
accountEnabled = [bool]$AccountEnabled
} | ConvertTo-Json -Compress -Depth 1
$SignInState = New-GraphPostRequest -uri "https://graph.microsoft.com/v1.0/users/$($userid)" -tenantid $TenantFilter -type PATCH -body $body -verbose
- Write-LogMessage -user $ExecutingUser -API $APIName -message "Disabled $($userid)" -Sev "Info" -tenant $TenantFilter
+ Write-LogMessage -user $ExecutingUser -API $APIName -message "Set account enabled state to $AccountEnabled for $userid" -Sev 'Info' -tenant $TenantFilter
return "Set account enabled state to $AccountEnabled for $userid"
- }
- catch {
- Write-LogMessage -user $ExecutingUser -API $APIName -message "Could not disable sign in for $($userid)" -Sev "Error" -tenant $TenantFilter
- return "Could not disable $($userid). Error: $($_.Exception.Message)"
+ } catch {
+ Write-LogMessage -user $ExecutingUser -API $APIName -message "Could not disable sign in for $userid. Error: $($_.Exception.Message)" -Sev 'Error' -tenant $TenantFilter
+ return "Could not disable $userid. Error: $($_.Exception.Message)"
}
}
diff --git a/Modules/CIPPCore/Public/Standards/Get-CIPPStandards.ps1 b/Modules/CIPPCore/Public/Standards/Get-CIPPStandards.ps1
new file mode 100644
index 000000000000..11f4f51f1aaf
--- /dev/null
+++ b/Modules/CIPPCore/Public/Standards/Get-CIPPStandards.ps1
@@ -0,0 +1,66 @@
+function Get-CIPPStandards {
+ param(
+ [Parameter(Mandatory = $false)]
+ [string]$TenantFilter = 'allTenants'
+ )
+
+ #Write-Host "Getting standards for tenant - $($tenantFilter)"
+ $Table = Get-CippTable -tablename 'standards'
+ $Filter = "PartitionKey eq 'standards'"
+ $Standards = (Get-CIPPAzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json
+ $StandardsAllTenants = $Standards | Where-Object { $_.Tenant -eq 'AllTenants' }
+
+ # Get tenant list based on filter
+ $Tenants = Get-Tenants
+ if ($TenantFilter -ne 'allTenants') {
+ $Tenants = $Tenants | Where-Object { $_.defaultDomainName -eq $TenantFilter -or $_.customerId -eq $TenantFilter }
+ }
+
+ foreach ($Tenant in $Tenants) {
+ #Write-Host "`r`n###### Tenant: $($Tenant.defaultDomainName)"
+ $StandardsTenant = $Standards | Where-Object { $_.Tenant -eq $Tenant.defaultDomainName }
+
+ $ComputedStandards = @{}
+ if ($StandardsTenant.Standards.OverrideAllTenants.remediate -ne $true) {
+ #Write-Host 'AllTenant Standards apply to this tenant.'
+ foreach ($StandardName in $StandardsAllTenants.Standards.PSObject.Properties.Name) {
+ $CurrentStandard = $StandardsAllTenants.Standards.$StandardName
+ #Write-Host ($CurrentStandard | ConvertTo-Json -Depth 10)
+ if ($CurrentStandard.remediate -eq $true -or $CurrentStandard.alert -eq $true -or $CurrentStandard.report -eq $true) {
+ #Write-Host "AllTenant Standard $StandardName"
+ $ComputedStandards[$StandardName] = $CurrentStandard
+ }
+ }
+ }
+
+ foreach ($StandardName in $StandardsTenant.Standards.PSObject.Properties.Name) {
+ if ($StandardName -eq 'OverrideAllTenants') { continue }
+ $CurrentStandard = $StandardsTenant.Standards.$StandardName
+
+ if ($CurrentStandard.remediate -eq $true -or $CurrentStandard.alert -eq $true -or $CurrentStandard.report -eq $true) {
+ if (!$ComputedStandards[$StandardName] ) {
+ #Write-Host "Applying tenant level $StandardName"
+ $ComputedStandards[$StandardName] = $CurrentStandard
+ } else {
+ foreach ($Setting in $CurrentStandard.PSObject.Properties.Name) {
+ if ($CurrentStandard.$Setting -ne $false -and $CurrentStandard.$Setting -ne $ComputedStandards[$StandardName].$($Setting) -and [string]::IsNullOrEmpty($CurrentStandard.$Setting)) {
+ #Write-Host "Overriding $Setting for $StandardName at tenant level"
+ if ($ComputedStandards[$StandardName].PSObject.Properties.Name -contains $Setting) {
+ $ComputedStandards[$StandardName].$($Setting) = $CurrentStandard.$Setting
+ } else {
+ $ComputedStandards[$StandardName] | Add-Member -NotePropertyName $Setting -NotePropertyValue $CurrentStandard.$Setting
+ }
+ }
+ }
+ }
+ }
+ }
+ foreach ($Standard in $ComputedStandards.Keys) {
+ [pscustomobject]@{
+ Tenant = $Tenant.defaultDomainName
+ Standard = $Standard
+ Settings = $ComputedStandards.$Standard
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPConfig.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPConfig.ps1
index 652c5611b5f8..80f5b3f2ff14 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPConfig.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPConfig.ps1
@@ -1,21 +1,22 @@
function Invoke-CIPPStandardAPConfig {
- <#
+ <#
.FUNCTIONALITY
Internal
#>
- param($Tenant, $Settings)
- If ($Settings.remediate) {
+ param($Tenant, $Settings)
+ If ($Settings.remediate) {
- $APINAME = 'Standards'
- try {
- Write-Host $($settings | ConvertTo-Json -Depth 100)
- if ($settings.NotLocalAdmin -eq $true) { $usertype = 'Standard' } else { $usertype = 'Administrator' }
- $DeploymentMode = if ($settings.DeploymentMode -eq 'true') { 'shared' } else { 'singleUser' }
- Set-CIPPDefaultAPDeploymentProfile -tenantFilter $tenant -displayname $settings.DisplayName -description $settings.Description -usertype $usertype -DeploymentMode $DeploymentMode -assignto $settings.AssignTo -devicenameTemplate $Settings.DeviceNameTemplate -allowWhiteGlove $Settings.allowWhiteGlove -CollectHash $Settings.CollectHash -hideChangeAccount $Settings.HideChangeAccount -hidePrivacy $Settings.HidePrivacy -hideTerms $Settings.HideTerms -Autokeyboard $Settings.Autokeyboard
- } catch {
- Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to create Default Autopilot config: $($_.exception.message)" -sev 'Error'
- }
+ $APINAME = 'Standards'
+ try {
+ Write-Host $($settings | ConvertTo-Json -Depth 100)
+ if ($settings.NotLocalAdmin -eq $true) { $usertype = 'Standard' } else { $usertype = 'Administrator' }
+ $DeploymentMode = if ($settings.DeploymentMode -eq 'true') { 'shared' } else { 'singleUser' }
+ Set-CIPPDefaultAPDeploymentProfile -tenantFilter $tenant -displayname $settings.DisplayName -description $settings.Description -usertype $usertype -DeploymentMode $DeploymentMode -assignto $settings.AssignTo -devicenameTemplate $Settings.DeviceNameTemplate -allowWhiteGlove $Settings.allowWhiteGlove -CollectHash $Settings.CollectHash -hideChangeAccount $Settings.HideChangeAccount -hidePrivacy $Settings.HidePrivacy -hideTerms $Settings.HideTerms -Autokeyboard $Settings.Autokeyboard
+ } catch {
+ #Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to create Default Autopilot config: $($_.exception.message)" -sev 'Error'
+ throw $_.Exception.Message
+ }
- }
+ }
}
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPESP.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPESP.ps1
index 8eba3f5ffa1d..f279e9ba4516 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPESP.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPESP.ps1
@@ -1,17 +1,17 @@
function Invoke-CIPPStandardAPESP {
- <#
+ <#
.FUNCTIONALITY
Internal
#>
- param($Tenant, $Settings)
- If ($Settings.remediate) {
- $APINAME = 'Standards'
- try {
- Set-CIPPDefaultAPEnrollment -TenantFilter $Tenant -ShowProgress $Settings.ShowProgress -BlockDevice $Settings.blockDevice -AllowReset $Settings.AllowReset -EnableLog $Settings.EnableLog -ErrorMessage $Settings.ErrorMessage -TimeOutInMinutes $Settings.TimeOutInMinutes -AllowFail $Settings.AllowFail -OBEEOnly $Settings.OBEEOnly
- } catch {
- Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to create default Autopilot Enrollment: $($_.exception.message)" -sev 'Error'
+ param($Tenant, $Settings)
+ If ($Settings.remediate) {
+ $APINAME = 'Standards'
+ try {
+ Set-CIPPDefaultAPEnrollment -TenantFilter $Tenant -ShowProgress $Settings.ShowProgress -BlockDevice $Settings.blockDevice -AllowReset $Settings.AllowReset -EnableLog $Settings.EnableLog -ErrorMessage $Settings.ErrorMessage -TimeOutInMinutes $Settings.TimeOutInMinutes -AllowFail $Settings.AllowFail -OBEEOnly $Settings.OBEEOnly
+ } catch {
+ throw $_.Exception.Message
+ }
}
- }
}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAntiPhishPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAntiPhishPolicy.ps1
index 0373f47819d3..22c6b14d82e6 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAntiPhishPolicy.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAntiPhishPolicy.ps1
@@ -6,30 +6,29 @@ function Invoke-CIPPStandardAntiPhishPolicy {
param($Tenant, $Settings)
$PolicyName = 'Default Anti-Phishing Policy'
- $AntiPhishPolicyState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-AntiPhishPolicy' |
+
+ $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-AntiPhishPolicy' |
Where-Object -Property Name -EQ $PolicyName |
Select-Object Name, Enabled, PhishThresholdLevel, EnableMailboxIntelligence, EnableMailboxIntelligenceProtection, EnableSpoofIntelligence, EnableFirstContactSafetyTips, EnableSimilarUsersSafetyTips, EnableSimilarDomainsSafetyTips, EnableUnusualCharactersSafetyTips, EnableUnauthenticatedSender, EnableViaTag, MailboxIntelligenceProtectionAction, MailboxIntelligenceQuarantineTag
- $StateIsCorrect = if (
- ($AntiPhishPolicyState.Name -eq $PolicyName) -and
- ($AntiPhishPolicyState.Enabled -eq $true) -and
- ($AntiPhishPolicyState.PhishThresholdLevel -eq $Settings.PhishThresholdLevel) -and
- ($AntiPhishPolicyState.EnableMailboxIntelligence -eq $true) -and
- ($AntiPhishPolicyState.EnableMailboxIntelligenceProtection -eq $true) -and
- ($AntiPhishPolicyState.EnableSpoofIntelligence -eq $true) -and
- ($AntiPhishPolicyState.EnableFirstContactSafetyTips -eq $Settings.EnableFirstContactSafetyTips) -and
- ($AntiPhishPolicyState.EnableSimilarUsersSafetyTips -eq $Settings.EnableSimilarUsersSafetyTips) -and
- ($AntiPhishPolicyState.EnableSimilarDomainsSafetyTips -eq $Settings.EnableSimilarDomainsSafetyTips) -and
- ($AntiPhishPolicyState.EnableUnusualCharactersSafetyTips -eq $Settings.EnableUnusualCharactersSafetyTips) -and
- ($AntiPhishPolicyState.EnableUnauthenticatedSender -eq $true) -and
- ($AntiPhishPolicyState.EnableViaTag -eq $true) -and
- ($AntiPhishPolicyState.MailboxIntelligenceProtectionAction -eq $Settings.MailboxIntelligenceProtectionAction) -and
- ($AntiPhishPolicyState.MailboxIntelligenceQuarantineTag -eq $Settings.MailboxIntelligenceQuarantineTag)
- ) { $true } else { $false }
+ $StateIsCorrect = ($CurrentState.Name -eq $PolicyName) -and
+ ($CurrentState.Enabled -eq $true) -and
+ ($CurrentState.PhishThresholdLevel -eq $Settings.PhishThresholdLevel) -and
+ ($CurrentState.EnableMailboxIntelligence -eq $true) -and
+ ($CurrentState.EnableMailboxIntelligenceProtection -eq $true) -and
+ ($CurrentState.EnableSpoofIntelligence -eq $true) -and
+ ($CurrentState.EnableFirstContactSafetyTips -eq $Settings.EnableFirstContactSafetyTips) -and
+ ($CurrentState.EnableSimilarUsersSafetyTips -eq $Settings.EnableSimilarUsersSafetyTips) -and
+ ($CurrentState.EnableSimilarDomainsSafetyTips -eq $Settings.EnableSimilarDomainsSafetyTips) -and
+ ($CurrentState.EnableUnusualCharactersSafetyTips -eq $Settings.EnableUnusualCharactersSafetyTips) -and
+ ($CurrentState.EnableUnauthenticatedSender -eq $true) -and
+ ($CurrentState.EnableViaTag -eq $true) -and
+ ($CurrentState.MailboxIntelligenceProtectionAction -eq $Settings.MailboxIntelligenceProtectionAction) -and
+ ($CurrentState.MailboxIntelligenceQuarantineTag -eq $Settings.MailboxIntelligenceQuarantineTag)
if ($Settings.remediate) {
if ($StateIsCorrect) {
- Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Anti-phishing Policy already exists.' -sev Info
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Anti-phishing Policy already correctly configured' -sev Info
} else {
$cmdparams = @{
Enabled = $true
@@ -48,7 +47,7 @@ function Invoke-CIPPStandardAntiPhishPolicy {
}
try {
- if ($AntiPhishPolicyState.Name -eq $PolicyName) {
+ if ($CurrentState.Name -eq $PolicyName) {
$cmdparams.Add('Identity', $PolicyName)
New-ExoRequest -tenantid $Tenant -cmdlet 'Set-AntiPhishPolicy' -cmdparams $cmdparams
Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Updated Anti-phishing Policy' -sev Info
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDelegateSentItems.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDelegateSentItems.ps1
index dfca3c7c4456..856e45625a49 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDelegateSentItems.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDelegateSentItems.ps1
@@ -10,15 +10,21 @@ function Invoke-CIPPStandardDelegateSentItems {
if ($Mailboxes) {
try {
- $Mailboxes | ForEach-Object {
- try {
- $username = $_.UserPrincipalName
- New-ExoRequest -tenantid $Tenant -cmdlet 'Set-Mailbox' -cmdParams @{Identity = $_.GUID ; MessageCopyForSendOnBehalfEnabled = $True; MessageCopyForSentAsEnabled = $True } -anchor $username
- } catch {
- Write-LogMessage -API 'Standards' -tenant $tenant -message "Could not enable delegate sent item style for $($username): $($_.Exception.message)" -sev Warn
+ $Request = $mailboxes | ForEach-Object {
+ @{
+ CmdletInput = @{
+ CmdletName = 'Set-Mailbox'
+ Parameters = @{Identity = $_.UserPrincipalName ; MessageCopyForSendOnBehalfEnabled = $true; MessageCopyForSentAsEnabled = $true }
+ }
}
- }
- Write-LogMessage -API 'Standards' -tenant $tenant -message 'Delegate Sent Items Style enabled.' -sev Info
+ }
+ $BatchResults = New-ExoBulkRequest -tenantid $tenant -cmdletArray $Request
+ $BatchResults | ForEach-Object {
+ if ($_.error) {
+ Write-Host "Failed to apply Delegate Sent Items Style to $($_.target) Error: $($_.error)"
+ Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to apply Delegate Sent Items Style to $($_.error.target) Error: $($_.error)" -sev Error
+ }
+ }
} catch {
Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to apply Delegate Sent Items Style. Error: $($_.exception.message)" -sev Error
}
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuests.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuests.ps1
index 6ccac9c5f3c8..5b889f0c10e7 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuests.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuests.ps1
@@ -5,7 +5,7 @@ function Invoke-CIPPStandardDisableGuests {
#>
param($Tenant, $Settings)
$Lookup = (Get-Date).AddDays(-90).ToUniversalTime().ToString('o')
- $GraphRequest = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users?`$filter=(signInActivity/lastSignInDateTime le $Lookup)&`$select=id,UserPrincipalName,signInActivity,mail,userType,accountEnabled" -scope 'https://graph.microsoft.com/.default' -tenantid $Tenant | Where-Object { $_.userType -EQ 'Guest' -and $_.AccountEnabled -EQ $true }
+ $GraphRequest = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users?`$filter=(signInActivity/lastNonInteractiveSignInDateTime le $Lookup)&`$select=id,UserPrincipalName,signInActivity,mail,userType,accountEnabled" -scope 'https://graph.microsoft.com/.default' -tenantid $Tenant | Where-Object { $_.userType -EQ 'Guest' -and $_.AccountEnabled -EQ $true }
If ($Settings.remediate) {
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTNEF.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTNEF.ps1
new file mode 100644
index 000000000000..20de2ee78eca
--- /dev/null
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTNEF.ps1
@@ -0,0 +1,39 @@
+function Invoke-CIPPStandardDisableTNEF {
+ <#
+ .FUNCTIONALITY
+ Internal
+ #>
+
+ param ($Tenant, $Settings)
+ $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-RemoteDomain' -cmdParams @{Identity = 'Default' }
+
+ if ($Settings.remediate) {
+ Write-Host 'Time to remediate'
+
+ if ($CurrentState.TNEFEnabled -ne $false) {
+ try {
+ New-ExoRequest -tenantid $Tenant -cmdlet 'Set-RemoteDomain' -cmdParams @{Identity = 'Default'; TNEFEnabled = $false } -useSystemmailbox $true
+ Write-LogMessage -API 'Standards' -tenant $tenant -message 'Disabled TNEF for Default Remote Domain' -sev Info
+ } catch {
+ $ErrorMessage = Get-NormalizedError -Message $_.Exception.Message
+ Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to disable TNEF for Default Remote Domain. Error: $ErrorMessage" -sev Error
+ }
+ } else {
+ Write-LogMessage -API 'Standards' -tenant $tenant -message 'TNEF is already disabled for Default Remote Domain' -sev Info
+ }
+ }
+
+ if ($Settings.alert) {
+ if ($CurrentState.TNEFEnabled -eq $false) {
+ Write-LogMessage -API 'Standards' -tenant $tenant -message 'TNEF is disabled for Default Remote Domain' -sev Info
+ } else {
+ Write-LogMessage -API 'Standards' -tenant $tenant -message 'TNEF is not disabled for Default Remote Domain' -sev Alert
+ }
+ }
+
+ if ($Settings.report) {
+ $State = if ($CurrentState.TNEFEnabled -ne $false) { $false } else { $true }
+ Add-CIPPBPAField -FieldName 'TNEFDisabled' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant
+ }
+
+}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailboxAuditing.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailboxAuditing.ps1
index 6d959f03d8d9..da98c6ac4cc5 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailboxAuditing.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailboxAuditing.ps1
@@ -22,24 +22,40 @@ function Invoke-CIPPStandardEnableMailboxAuditing {
# Check for mailbox audit on all mailboxes. Enable for all that it's not enabled for
$Mailboxes = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-Mailbox' -cmdParams @{filter = "auditenabled -eq 'False'" } -useSystemMailbox $true -Select 'AuditEnabled,UserPrincipalName'
- $Mailboxes | ForEach-Object {
- try {
- New-ExoRequest -tenantid $Tenant -cmdlet 'Set-Mailbox' -cmdParams @{Identity = $_.UserPrincipalName; AuditEnabled = $true } -Anchor $_.UserPrincipalName
- Write-LogMessage -API 'Standards' -tenant $Tenant -message "User level mailbox audit enabled for $($_.UserPrincipalName)" -sev Info
- } catch {
- Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to enable user level mailbox audit for $($_.UserPrincipalName). Error: $($_.exception.message)" -sev Error
+ $Request = $mailboxes | ForEach-Object {
+ @{
+ CmdletInput = @{
+ CmdletName = 'Set-Mailbox'
+ Parameters = @{Identity = $_.UserPrincipalName; AuditEnabled = $true }
+ }
+ }
+ }
+
+ $BatchResults = New-ExoBulkRequest -tenantid $tenant -cmdletArray $Request
+ $BatchResults | ForEach-Object {
+ if ($_.error) {
+ Write-Host "Failed to enable user level mailbox audit for $($_.target). Error: $($_.error)"
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to enable user level mailbox audit for $($_.target). Error: $($_.error)" -sev Error
}
}
# Disable audit bypass for all mailboxes that have it enabled
$BypassMailboxes = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-MailboxAuditBypassAssociation' -select 'GUID, AuditBypassEnabled, Name' -useSystemMailbox $true | Where-Object { $_.AuditBypassEnabled -eq $true }
- $BypassMailboxes | ForEach-Object {
- try {
- New-ExoRequest -tenantid $Tenant -cmdlet 'Set-MailboxAuditBypassAssociation' -cmdParams @{Identity = $_.Guid; AuditBypassEnabled = $false } -UseSystemMailbox $true
- Write-LogMessage -API 'Standards' -tenant $Tenant -message "Mailbox audit bypass disabled for $($_.Name)" -sev Info
- } catch {
- Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to disable mailbox audit bypass for $($_.Name). Error: $($_.exception.message)" -sev Error
+ $Request = $BypassMailboxes | ForEach-Object {
+ @{
+ CmdletInput = @{
+ CmdletName = 'Set-MailboxAuditBypassAssociation'
+ Parameters = @{Identity = $_.Guid; AuditBypassEnabled = $false }
+ }
+ }
+ }
+
+ $BatchResults = New-ExoBulkRequest -tenantid $tenant -cmdletArray $Request
+ $BatchResults | ForEach-Object {
+ if ($_.error) {
+ Write-Host "Failed to disable mailbox audit bypass for $($_.target). Error: $($_.error)"
+ Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to disable mailbox audit bypass for $($_.target). Error: $($_.error)" -sev Error
}
}
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableOnlineArchiving.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableOnlineArchiving.ps1
index 0070616d60d1..d961808b230b 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableOnlineArchiving.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableOnlineArchiving.ps1
@@ -17,18 +17,22 @@ function Invoke-CIPPStandardEnableOnlineArchiving {
Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Online Archiving already enabled for all accounts' -sev Info
} else {
try {
- $SuccessCounter = 0
- $MailboxesNoArchive | ForEach-Object {
- try {
- New-ExoRequest -tenantid $Tenant -cmdlet 'Enable-Mailbox' -cmdparams @{ Identity = $_.UserPrincipalName; Archive = $true } | Out-Null
- Write-LogMessage -API 'Standards' -tenant $Tenant -message "Enabled Online Archiving for $($_.UserPrincipalName)" -sev Info
- $SuccessCounter++
- } catch {
- Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to Enable Online Archiving for $($_.UserPrincipalName). Error: $($_.exception.message)" -sev Error
+ $Request = $MailboxesNoArchive | ForEach-Object {
+ @{
+ CmdletInput = @{
+ CmdletName = 'Enable-Mailbox'
+ Parameters = @{ Identity = $_.UserPrincipalName; Archive = $true }
+ }
+ }
+ }
+
+ $BatchResults = New-ExoBulkRequest -tenantid $tenant -cmdletArray $Request
+ $BatchResults | ForEach-Object {
+ if ($_.error) {
+ Write-Host "Failed to Enable Online Archiving for $($_.Target). Error: $($_.error)"
+ Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to Enable Online Archiving for $($_.Target). Error: $($_.error)" -sev Error
}
}
- Write-LogMessage -API 'Standards' -tenant $Tenant -message "Enabled Online Archiving for $SuccessCounter accounts" -sev Info
-
} catch {
Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to Enable Online Archiving for all accounts. Error: $($_.exception.message)" -sev Error
}
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardFocusedInbox.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardFocusedInbox.ps1
new file mode 100644
index 000000000000..f0f2b9956d35
--- /dev/null
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardFocusedInbox.ps1
@@ -0,0 +1,47 @@
+function Invoke-CIPPStandardFocusedInbox {
+ <#
+ .FUNCTIONALITY
+ Internal
+ #>
+ param($Tenant, $Settings)
+
+ # Exit if the wanted state is not valid
+ if ($Settings.state -ne 'enabled' -and $Settings.state -ne 'disabled') {
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Invalid state for Focused Inbox. Please select either "enabled" or "disabled".' -sev Error
+ Exit
+ }
+
+ $CurrentState = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-OrganizationConfig').FocusedInboxOn
+
+ $WantedState = if ($Settings.state -eq 'enabled') { $true } else { $false }
+ $StateIsCorrect = if ($CurrentState -eq $WantedState) { $true } else { $false }
+
+ if ($Settings.remediate) {
+ Write-Host 'Time to remediate'
+
+ if ($StateIsCorrect -eq $true) {
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message "Focused Inbox is already set to $($Settings.state)." -sev Info
+ } else {
+ try {
+ New-ExoRequest -tenantid $Tenant -cmdlet 'Set-OrganizationConfig' -cmdparams @{ FocusedInboxOn = $WantedState }
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message "Set Focused Inbox state to $($Settings.state)." -sev Info
+ } catch {
+ $ErrorMessage = Get-NormalizedError -Message $_.Exception.Message
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to set Focused Inbox state to $($Settings.state). Error: $ErrorMessage" -sev Error
+ }
+ }
+ }
+
+ if ($Settings.alert) {
+
+ if ($StateIsCorrect -eq $true) {
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message "Focused Inbox is set to $($Settings.state)." -sev Info
+ } else {
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message "Focused Inbox is not set to $($Settings.state)." -sev Alert
+ }
+ }
+
+ if ($Settings.report) {
+ Add-CIPPBPAField -FieldName 'FocusedInboxCorrectState' -FieldValue [bool]$StateIsCorrect -StoreAs bool -Tenant $tenant
+ }
+}
\ No newline at end of file
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1
index 40ed853dc1d2..4cc12c448c7a 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1
@@ -5,46 +5,45 @@ function Invoke-CIPPStandardMalwareFilterPolicy {
#>
param($Tenant, $Settings)
- $MalwareFilterState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-MalwareFilterPolicy' |
- Where-Object -Property Name -eq $PolicyName |
- Select-Object Name, EnableFileFilter, FileTypeAction, ZapEnabled, QuarantineTag, EnableInternalSenderAdminNotifications, InternalSenderAdminAddress, EnableExternalSenderAdminNotifications, ExternalSenderAdminAddress
+ $PolicyName = 'Default Malware Policy'
- $PolicyName = "Default Malware Policy"
- $StateIsCorrect = if (
- ($MalwareFilterState.Name -eq $PolicyName) -and
- ($MalwareFilterState.EnableFileFilter -eq $true) -and
- ($MalwareFilterState.FileTypeAction -eq $Settings.FileTypeAction) -and
- ($MalwareFilterState.ZapEnabled -eq $true) -and
- ($MalwareFilterState.QuarantineTag -eq $Settings.QuarantineTag) -and
- ($MalwareFilterState.EnableInternalSenderAdminNotifications -eq $Settings.EnableInternalSenderAdminNotifications) -and
- ($MalwareFilterState.InternalSenderAdminAddress -eq $Settings.InternalSenderAdminAddress) -and
- ($MalwareFilterState.EnableExternalSenderAdminNotifications -eq $Settings.EnableExternalSenderAdminNotifications) -and
- ($MalwareFilterState.ExternalSenderAdminAddress -eq $Settings.ExternalSenderAdminAddress)
- ) { $true } else { $false }
+ $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-MalwareFilterPolicy' |
+ Where-Object -Property Name -EQ $PolicyName |
+ Select-Object Name, EnableFileFilter, FileTypeAction, ZapEnabled, QuarantineTag, EnableInternalSenderAdminNotifications, InternalSenderAdminAddress, EnableExternalSenderAdminNotifications, ExternalSenderAdminAddress
+
+ $StateIsCorrect = ($CurrentState.Name -eq $PolicyName) -and
+ ($CurrentState.EnableFileFilter -eq $true) -and
+ ($CurrentState.FileTypeAction -eq $Settings.FileTypeAction) -and
+ ($CurrentState.ZapEnabled -eq $true) -and
+ ($CurrentState.QuarantineTag -eq $Settings.QuarantineTag) -and
+ ($CurrentState.EnableInternalSenderAdminNotifications -eq $Settings.EnableInternalSenderAdminNotifications) -and
+ (($null -eq $Settings.InternalSenderAdminAddress) -or ($CurrentState.InternalSenderAdminAddress -eq $Settings.InternalSenderAdminAddress)) -and
+ ($CurrentState.EnableExternalSenderAdminNotifications -eq $Settings.EnableExternalSenderAdminNotifications) -and
+ (($null -eq $Settings.ExternalSenderAdminAddress) -or ($CurrentState.ExternalSenderAdminAddress -eq $Settings.ExternalSenderAdminAddress))
if ($Settings.remediate) {
if ($StateIsCorrect) {
- Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Malware Filter Policy already exists.' -sev Info
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Malware Filter Policy already correctly configured' -sev Info
} else {
$cmdparams = @{
- EnableFileFilter = $true
- FileTypeAction = $Settings.FileTypeAction
- ZapEnabled = $true
- QuarantineTag = $Settings.QuarantineTag
- EnableInternalSenderAdminNotifications = $Settings.EnableInternalSenderAdminNotifications
- InternalSenderAdminAddress = $Settings.InternalSenderAdminAddress
- EnableExternalSenderAdminNotifications = $Settings.EnableExternalSenderAdminNotifications
- ExternalSenderAdminAddress = $Settings.ExternalSenderAdminAddress
+ EnableFileFilter = $true
+ FileTypeAction = $Settings.FileTypeAction
+ ZapEnabled = $true
+ QuarantineTag = $Settings.QuarantineTag
+ EnableInternalSenderAdminNotifications = $Settings.EnableInternalSenderAdminNotifications
+ InternalSenderAdminAddress = $Settings.InternalSenderAdminAddress
+ EnableExternalSenderAdminNotifications = $Settings.EnableExternalSenderAdminNotifications
+ ExternalSenderAdminAddress = $Settings.ExternalSenderAdminAddress
}
try {
- if ($MalwareFilterState.Name -eq $PolicyName) {
- $cmdparams.Add("Identity", $PolicyName)
+ if ($CurrentState.Name -eq $PolicyName) {
+ $cmdparams.Add('Identity', $PolicyName)
New-ExoRequest -tenantid $Tenant -cmdlet 'Set-MalwareFilterPolicy' -cmdparams $cmdparams
Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Updated Malware Filter Policy' -sev Info
} else {
- $cmdparams.Add("Name", $PolicyName)
+ $cmdparams.Add('Name', $PolicyName)
New-ExoRequest -tenantid $Tenant -cmdlet 'New-MalwareFilterPolicy' -cmdparams $cmdparams
Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Created Malware Filter Policy' -sev Info
}
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMessageExpiration.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMessageExpiration.ps1
index 294729a36583..3099f7bd7dc3 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMessageExpiration.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMessageExpiration.ps1
@@ -17,6 +17,8 @@ function Invoke-CIPPStandardMessageExpiration {
$ErrorMessage = Get-NormalizedError -Message $_.Exception.Message
Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to set transport configuration message expiration to 12 hours. Error: $ErrorMessage" -sev Debug
}
+ } else {
+ Write-LogMessage -API 'Standards' -tenant $tenant -message 'Transport configuration message expiration is already set to 12 hours' -sev Info
}
}
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1
index 784e221b659f..906f027930f2 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1
@@ -5,38 +5,37 @@ function Invoke-CIPPStandardSafeAttachmentPolicy {
#>
param($Tenant, $Settings)
- $SafeAttachmentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-SafeAttachmentPolicy' |
- Where-Object -Property Name -eq $PolicyName |
- Select-Object Name, Enable, Action, QuarantineTag, Redirect, RedirectAddress
-
- $PolicyName = "Default Safe Attachment Policy"
- $StateIsCorrect = if (
- ($SafeAttachmentState.Name -eq $PolicyName) -and
- ($SafeAttachmentState.Enable -eq $true) -and
- ($SafeAttachmentState.QuarantineTag -eq $Settings.QuarantineTag) -and
- ($SafeAttachmentState.Redirect -eq $Settings.Redirect) -and
- ($SafeAttachmentState.RedirectAddress -eq $Settings.RedirectAddress)
- ) { $true } else { $false }
+ $PolicyName = 'Default Safe Attachment Policy'
+
+ $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-SafeAttachmentPolicy' |
+ Where-Object -Property Name -EQ $PolicyName |
+ Select-Object Name, Enable, Action, QuarantineTag, Redirect, RedirectAddress
+
+ $StateIsCorrect = ($CurrentState.Name -eq $PolicyName) -and
+ ($CurrentState.Enable -eq $true) -and
+ ($CurrentState.QuarantineTag -eq $Settings.QuarantineTag) -and
+ ($CurrentState.Redirect -eq $Settings.Redirect) -and
+ (($null -eq $Settings.RedirectAddress) -or ($CurrentState.RedirectAddress -eq $Settings.RedirectAddress))
if ($Settings.remediate) {
if ($StateIsCorrect) {
- Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Safe Attachment Policy already exists.' -sev Info
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Safe Attachment Policy already correctly configured' -sev Info
} else {
$cmdparams = @{
- Enable = $true
- QuarantineTag = $Settings.QuarantineTag
- Redirect = $Settings.Redirect
+ Enable = $true
+ QuarantineTag = $Settings.QuarantineTag
+ Redirect = $Settings.Redirect
RedirectAddress = $Settings.RedirectAddress
}
try {
- if ($SafeAttachmentState.Name -eq $PolicyName) {
- $cmdparams.Add("Identity", $PolicyName)
+ if ($CurrentState.Name -eq $PolicyName) {
+ $cmdparams.Add('Identity', $PolicyName)
New-ExoRequest -tenantid $Tenant -cmdlet 'Set-SafeAttachmentPolicy' -cmdparams $cmdparams
Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Updated Safe Attachment Policy' -sev Info
} else {
- $cmdparams.Add("Name", $PolicyName)
+ $cmdparams.Add('Name', $PolicyName)
New-ExoRequest -tenantid $Tenant -cmdlet 'New-SafeAttachmentPolicy' -cmdparams $cmdparams
Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Created Safe Attachment Policy' -sev Info
}
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeLinksPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeLinksPolicy.ps1
index 7233a4e92fc9..f3560f7a9fcc 100644
--- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeLinksPolicy.ps1
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeLinksPolicy.ps1
@@ -5,50 +5,49 @@ function Invoke-CIPPStandardSafeLinksPolicy {
#>
param($Tenant, $Settings)
- $SafeLinkState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-SafeLinksPolicy' |
- Where-Object -Property Name -eq $PolicyName |
- Select-Object Name, EnableSafeLinksForEmail, EnableSafeLinksForTeams, EnableSafeLinksForOffice, TrackClicks, AllowClickThrough, ScanUrls, EnableForInternalSenders, DeliverMessageAfterScan, DisableUrlRewrite, EnableOrganizationBranding
+ $PolicyName = 'Default SafeLinks Policy'
+
+ $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-SafeLinksPolicy' |
+ Where-Object -Property Name -EQ $PolicyName |
+ Select-Object Name, EnableSafeLinksForEmail, EnableSafeLinksForTeams, EnableSafeLinksForOffice, TrackClicks, AllowClickThrough, ScanUrls, EnableForInternalSenders, DeliverMessageAfterScan, DisableUrlRewrite, EnableOrganizationBranding
- $PolicyName = "Default SafeLinks Policy"
- $StateIsCorrect = if (
- ($SafeLinkState.Name -eq $PolicyName) -and
- ($SafeLinkState.EnableSafeLinksForEmail -eq $true) -and
- ($SafeLinkState.EnableSafeLinksForTeams -eq $true) -and
- ($SafeLinkState.EnableSafeLinksForOffice -eq $true) -and
- ($SafeLinkState.TrackClicks -eq $true) -and
- ($SafeLinkState.ScanUrls -eq $true) -and
- ($SafeLinkState.EnableForInternalSenders -eq $true) -and
- ($SafeLinkState.DeliverMessageAfterScan -eq $true) -and
- ($SafeLinkState.AllowClickThrough -eq $Settings.AllowClickThrough) -and
- ($SafeLinkState.DisableUrlRewrite -eq $Settings.DisableUrlRewrite) -and
- ($SafeLinkState.EnableOrganizationBranding -eq $Settings.EnableOrganizationBranding)
- ) { $true } else { $false }
+ $StateIsCorrect = ($CurrentState.Name -eq $PolicyName) -and
+ ($CurrentState.EnableSafeLinksForEmail -eq $true) -and
+ ($CurrentState.EnableSafeLinksForTeams -eq $true) -and
+ ($CurrentState.EnableSafeLinksForOffice -eq $true) -and
+ ($CurrentState.TrackClicks -eq $true) -and
+ ($CurrentState.ScanUrls -eq $true) -and
+ ($CurrentState.EnableForInternalSenders -eq $true) -and
+ ($CurrentState.DeliverMessageAfterScan -eq $true) -and
+ ($CurrentState.AllowClickThrough -eq $Settings.AllowClickThrough) -and
+ ($CurrentState.DisableUrlRewrite -eq $Settings.DisableUrlRewrite) -and
+ ($CurrentState.EnableOrganizationBranding -eq $Settings.EnableOrganizationBranding)
if ($Settings.remediate) {
if ($StateIsCorrect) {
- Write-LogMessage -API 'Standards' -tenant $Tenant -message 'SafeLink Policy already exists.' -sev Info
+ Write-LogMessage -API 'Standards' -tenant $Tenant -message 'SafeLink Policy already correctly configured' -sev Info
} else {
$cmdparams = @{
- EnableSafeLinksForEmail = $true
- EnableSafeLinksForTeams = $true
- EnableSafeLinksForOffice = $true
- TrackClicks = $true
- ScanUrls = $true
- EnableForInternalSenders = $true
- DeliverMessageAfterScan = $true
- AllowClickThrough = $Settings.AllowClickThrough
- DisableUrlRewrite = $Settings.DisableUrlRewrite
- EnableOrganizationBranding = $Settings.EnableOrganizationBranding
+ EnableSafeLinksForEmail = $true
+ EnableSafeLinksForTeams = $true
+ EnableSafeLinksForOffice = $true
+ TrackClicks = $true
+ ScanUrls = $true
+ EnableForInternalSenders = $true
+ DeliverMessageAfterScan = $true
+ AllowClickThrough = $Settings.AllowClickThrough
+ DisableUrlRewrite = $Settings.DisableUrlRewrite
+ EnableOrganizationBranding = $Settings.EnableOrganizationBranding
}
try {
- if ($SafeLinkState.Name -eq $PolicyName) {
- $cmdparams.Add("Identity", $PolicyName)
+ if ($CurrentState.Name -eq $PolicyName) {
+ $cmdparams.Add('Identity', $PolicyName)
New-ExoRequest -tenantid $Tenant -cmdlet 'Set-SafeLinksPolicy' -cmdparams $cmdparams
Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Updated SafeLink Policy' -sev Info
} else {
- $cmdparams.Add("Name", $PolicyName)
+ $cmdparams.Add('Name', $PolicyName)
New-ExoRequest -tenantid $Tenant -cmdlet 'New-SafeLinksPolicy' -cmdparams $cmdparams
Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Created SafeLink Policy' -sev Info
}
diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTenantDefaultTimezone.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTenantDefaultTimezone.ps1
new file mode 100644
index 000000000000..31b144efa524
--- /dev/null
+++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTenantDefaultTimezone.ps1
@@ -0,0 +1,35 @@
+function Invoke-CIPPStandardTenantDefaultTimezone {
+ <#
+ .FUNCTIONALITY
+ Internal
+ #>
+
+ param($Tenant, $Settings)
+ $CurrentState = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings' -tenantid $Tenant -AsApp $true
+ $StateIsCorrect = $CurrentState.tenantDefaultTimezone -eq $Settings.Timezone
+
+ If ($Settings.remediate) {
+ if ($StateIsCorrect) {
+ Write-LogMessage -API 'Standards' -tenant $tenant -message "Tenant Default Timezone is already set to $($Settings.Timezone)" -sev Info
+ } else {
+ try {
+ New-GraphPostRequest -tenantid $tenant -uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings' -AsApp $true -Type PATCH -Body "{`"tenantDefaultTimezone`": `"$($Settings.Timezone)`"}" -ContentType 'application/json'
+ Write-LogMessage -API 'Standards' -tenant $tenant -message "Updated Tenant Default Timezone to $($Settings.Timezone)" -sev Info
+ } catch {
+ Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to set Tenant Default Timezone. Error: $($_.exception.message)" -sev Error
+ }
+ }
+
+ }
+ if ($Settings.alert) {
+
+ if ($StateIsCorrect) {
+ Write-LogMessage -API 'Standards' -tenant $tenant -message "Tenant Default Timezone is set to $($Settings.Timezone)." -sev Info
+ } else {
+ Write-LogMessage -API 'Standards' -tenant $tenant -message 'Tenant Default Timezone is not set to the desired value.' -sev Alert
+ }
+ }
+ if ($Settings.report) {
+ Add-CIPPBPAField -FieldName 'TenantDefaultTimezone' -FieldValue $CurrentState.tenantDefaultTimezone -StoreAs string -Tenant $tenant
+ }
+}
diff --git a/Modules/CippEntrypoints/CippEntrypoints.psm1 b/Modules/CippEntrypoints/CippEntrypoints.psm1
index 7c1b9b56833d..ac3da58594a1 100644
--- a/Modules/CippEntrypoints/CippEntrypoints.psm1
+++ b/Modules/CippEntrypoints/CippEntrypoints.psm1
@@ -64,7 +64,23 @@ function Receive-CippOrchestrationTrigger {
MaxNumberOfAttempts = if ($OrchestratorInput.MaxAttempts) { $OrchestratorInput.MaxAttempts } else { 1 }
BackoffCoefficient = 2
}
- #Write-Host ($OrchestratorInput | ConvertTo-Json -Depth 10)
+
+ switch ($OrchestratorInput.DurableMode) {
+ 'FanOut' {
+ $DurableMode = 'FanOut'
+ $NoWait = $true
+ }
+ 'Sequence' {
+ $DurableMode = 'Sequence'
+ $NoWait = $false
+ }
+ default {
+ $DurableMode = 'FanOut (Default)'
+ $NoWait = $true
+ }
+ }
+ Write-Host "Durable Mode: $DurableMode"
+
$RetryOptions = New-DurableRetryOptions @DurableRetryOptions
if ($Context.IsReplaying -ne $true -and $OrchestratorInput.SkipLog -ne $true) {
@@ -79,9 +95,18 @@ function Receive-CippOrchestrationTrigger {
if (($Batch | Measure-Object).Count -gt 0) {
$Tasks = foreach ($Item in $Batch) {
- Invoke-DurableActivity -FunctionName 'CIPPActivityFunction' -Input $Item -NoWait -RetryOptions $RetryOptions -ErrorAction Stop
+ $DurableActivity = @{
+ FunctionName = 'CIPPActivityFunction'
+ Input = $Item
+ NoWait = $NoWait
+ RetryOptions = $RetryOptions
+ ErrorAction = 'Stop'
+ }
+ Invoke-DurableActivity @DurableActivity
+ }
+ if ($NoWait) {
+ $null = Wait-ActivityFunction -Task $Tasks
}
- $null = Wait-ActivityFunction -Task $Tasks
}
if ($Context.IsReplaying -ne $true -and $OrchestratorInput.SkipLog -ne $true) {
@@ -98,15 +123,45 @@ function Receive-CippActivityTrigger {
$Start = (Get-Date).ToUniversalTime()
Set-Location (Get-Item $PSScriptRoot).Parent.Parent.FullName
+ if ($Item.QueueId) {
+ if ($Item.QueueName) {
+ $QueueName = $Item.QueueName
+ } elseif ($Item.TenantFilter) {
+ $QueueName = $Item.TenantFilter
+ } elseif ($Item.Tenant) {
+ $QueueName = $Item.Tenant
+ }
+ $QueueTask = @{
+ QueueId = $Item.QueueId
+ Name = $QueueName
+ Status = 'Running'
+ }
+ $TaskStatus = Set-CippQueueTask @QueueTask
+ $QueueTask.TaskId = $TaskStatus.RowKey
+ }
+
if ($Item.FunctionName) {
$FunctionName = 'Push-{0}' -f $Item.FunctionName
try {
& $FunctionName -Item $Item
+
+ if ($TaskStatus) {
+ $QueueTask.Status = 'Completed'
+ $null = Set-CippQueueTask @QueueTask
+ }
} catch {
$ErrorMsg = $_.Exception.Message
+ if ($TaskStatus) {
+ $QueueTask.Status = 'Failed'
+ $null = Set-CippQueueTask @QueueTask
+ }
}
} else {
$ErrorMsg = 'Function not provided'
+ if ($TaskStatus) {
+ $QueueTask.Status = 'Failed'
+ $null = Set-CippQueueTask @QueueTask
+ }
}
$End = (Get-Date).ToUniversalTime()
diff --git a/Modules/CippExtensions/ConversionTable.csv b/Modules/CippExtensions/ConversionTable.csv
index c1fd92909966..dc18a7df450d 100644
--- a/Modules/CippExtensions/ConversionTable.csv
+++ b/Modules/CippExtensions/ConversionTable.csv
@@ -43,6 +43,10 @@ Azure Information Protection Plan 1,RIGHTSMANAGEMENT_CE,a0e6a48f-b056-4037-af70-
Azure Information Protection Premium P1_USGOV_GCCHIGH,RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH,c57afa2a-d468-46c4-9a90-f86cb1b3c54a,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Azure Information Protection Premium P1_USGOV_GCCHIGH,RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH,c57afa2a-d468-46c4-9a90-f86cb1b3c54a,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,Azure Information Protection Premium P1
Azure Information Protection Premium P1_USGOV_GCCHIGH,RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH,c57afa2a-d468-46c4-9a90-f86cb1b3c54a,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Basic Collaboration,OFFICEBASIC,4468c39a-28b2-42fb-9094-840bcf28771f,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
+Basic Collaboration,OFFICEBASIC,4468c39a-28b2-42fb-9094-840bcf28771f,ONEDRIVELITE_IW,b4ac11a0-32ff-4e78-982d-e039fa803dec,Office for the web with OneDrive for business
+Basic Collaboration,OFFICEBASIC,4468c39a-28b2-42fb-9094-840bcf28771f,MCOBASIC,448898aa-3ae7-478c-b49a-1fac7a8a35cf,Skype Meetings
+Basic Collaboration,OFFICEBASIC,4468c39a-28b2-42fb-9094-840bcf28771f,YAMMER_BASIC,6db7aeea-6c4a-475d-bbb0-7338bc73d646,Yammer
Business Apps (free),SMB_APPS,90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96,DYN365BC_MS_INVOICING,39b5c996-467e-4e60-bd62-46066f572726,Microsoft Invoicing
Business Apps (free),SMB_APPS,90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
Common Data Service for Apps File Capacity,CDS_FILE_CAPACITY,631d5fb1-a668-4c2a-9427-8830665a742e,CDS_FILE_CAPACITY,dd12a3a8-caec-44f8-b4fb-2f1a864b51e3,Common Data Service for Apps File Capacity
@@ -195,6 +199,8 @@ Dynamics 365 Customer Service Professional,DYN365_CUSTOMER_SERVICE_PRO,1439b6e2-
Dynamics 365 Customer Service Professional,DYN365_CUSTOMER_SERVICE_PRO,1439b6e2-5d59-4873-8c59-d60e2a196e92,FLOW_CUSTOMER_SERVICE_PRO,0368fc9c-3721-437f-8b7d-3d0f888cdefc,Power Automate for Customer Service Pro
Dynamics 365 Customer Service Professional,DYN365_CUSTOMER_SERVICE_PRO,1439b6e2-5d59-4873-8c59-d60e2a196e92,PROJECT_ESSENTIALS,1259157c-8581-4875-bca7-2ffb18c51bda,Project Online Essentials
Dynamics 365 Customer Service Professional,DYN365_CUSTOMER_SERVICE_PRO,1439b6e2-5d59-4873-8c59-d60e2a196e92,SHAREPOINTENTERPRISE,5dbe027f-2339-4123-9542-606e4d348a72,SharePoint (Plan 2)
+Dynamics 365 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer,D365_CUSTOMER_SERVICE_PRO_ATTACH,19dec69d-d9f3-4792-8a39-d8ecdf51937b,D365_CUSTOMER_SERVICE_PRO_ATTACH,a9dd2dca-10ae-4da2-aaf0-d3fe8a825110,Dynamics 365 for Customer Service Pro Attach
+Dynamics 365 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer,D365_CUSTOMER_SERVICE_PRO_ATTACH,19dec69d-d9f3-4792-8a39-d8ecdf51937b,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 Customer Voice,DYN365_CUSTOMER_VOICE_BASE,359ea3e6-8130-4a57-9f8f-ad897a0342f1,Customer_Voice_Base,296820fe-dce5-40f4-a4f2-e14b8feef383,Dynamics 365 Customer Voice Base Plan
Dynamics 365 Customer Voice,DYN365_CUSTOMER_VOICE_BASE,359ea3e6-8130-4a57-9f8f-ad897a0342f1,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 Customer Voice Additional Responses,Forms_Pro_AddOn,446a86f8-a0cb-4095-83b3-d100eb050e3d,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
@@ -311,6 +317,11 @@ Dynamics 365 for Field Service for Government,D365_ENTERPRISE_FIELD_SERVICE_GOV,
Dynamics 365 for Financials Business Edition,DYN365_FINANCIALS_BUSINESS_SKU,cc13a803-544e-4464-b4e4-6d6169a138fa,DYN365_FINANCIALS_BUSINESS,920656a2-7dd8-4c83-97b6-a356414dbd36,FLOW FOR DYNAMICS 365
Dynamics 365 for Financials Business Edition,DYN365_FINANCIALS_BUSINESS_SKU,cc13a803-544e-4464-b4e4-6d6169a138fa,FLOW_DYN_APPS,7e6d7d78-73de-46ba-83b1-6d25117334ba,POWERAPPS FOR DYNAMICS 365
Dynamics 365 for Financials Business Edition,DYN365_FINANCIALS_BUSINESS_SKU,cc13a803-544e-4464-b4e4-6d6169a138fa,POWERAPPS_DYN_APPS,874fc546-6efe-4d22-90b8-5c4e7aa59f4b,DYNAMICS 365 FOR FINANCIALS
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,D365_GUIDES_VIRAL_TRIAL,fe986032-d840-4817-82d4-51fe4fbbe163,Dynamics 365 Guides vTrial
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,DYN365_CDS_VIRAL,17ab22cd-a0b3-4536-910a-cb6eb12696c0,Common Data Service
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,POWER_APPS_DYN365_VIRAL_TRIAL_MIXED_REALITY,066e2fd1-ba15-40e7-aa96-d6636b1cdf71,Power Apps for Dynamics 365 Mixed Reality
+Dynamics 365 Guides vTrial,Dynamics_365_Guides_vTrial,99cb3f83-fbec-4aa1-8262-9679e6df7c53,POWER_AUTOMATE_DYN365_VIRAL_TRIAL_MIXED_REALITY,26fa8a18-2812-4b3d-96b4-864818ce26be,Power Automate for Dynamics 365 Mixed Reality
Dynamics 365 Hybrid Connector,CRM_HYBRIDCONNECTOR,de176c31-616d-4eae-829a-718918d7ec23,CRM_HYBRIDCONNECTOR,0210d5c8-49d2-4dd1-a01b-a91c7c14e0bf,CRM Hybrid Connector
Dynamics 365 Hybrid Connector,CRM_HYBRIDCONNECTOR,de176c31-616d-4eae-829a-718918d7ec23,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 for Marketing Additional Application,DYN365_MARKETING_APPLICATION_ADDON,99c5688b-6c75-4496-876f-07f0fbd69add,DYN365_MARKETING_APPLICATION_ADDON,51cf0638-4861-40c0-8b20-1161ab2f80be,Dynamics 365 for Marketing Additional Application
@@ -327,6 +338,20 @@ Dynamics 365 for Marketing USL,D365_MARKETING_USER,4b32a493-9a67-4649-8eb9-9fc5a
Dynamics 365 for Marketing USL,D365_MARKETING_USER,4b32a493-9a67-4649-8eb9-9fc5a5f75c12,DYN365_MARKETING_USER,5d7a6abc-eebd-46ab-96e1-e4a2f54a2248,Dynamics 365 for Marketing USL
Dynamics 365 for Marketing USL,D365_MARKETING_USER,4b32a493-9a67-4649-8eb9-9fc5a5f75c12,Forms_Pro_Marketing,76366ba0-d230-47aa-8087-b6d55dae454f,Microsoft Dynamics 365 Customer Voice for Marketing
Dynamics 365 for Marketing USL,D365_MARKETING_USER,4b32a493-9a67-4649-8eb9-9fc5a5f75c12,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,DYN365_RETAIL_Activity,f06754ec-6d72-4bf6-991c-4cb5413d9932,Dynamics 365 for Retail Activity
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,DYN365_Enterprise_Talent_Attract_Activity,aac5a56b-b02e-4608-8014-b076646d4011,Dynamics 365 for Talent - Attract Experience Activity
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,DYN365_Enterprise_Talent_Onboard_Activity,db225597-e9c2-4d96-8ace-5424744c80f8,Dynamics 365 for Talent - Onboard Experience
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,Dynamics_365_for_Talent_Activity,1f87ee90-5c3a-4cf9-b6fd-e3e8017c26ec,Dynamics 365 for Talent Activity
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,Dynamics_365_for_Operations_Activity,6bddf93e-d6f4-4991-b9fc-30cfdf07ee7b,Dynamics365 for Operations Activity
+Dynamics 365 Operations � Activity,Dyn365_Operations_Activity,b75074f1-4c54-41bf-970f-c9ac871567f5,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,D365CDSforProjectOperations,7df1d500-ca5c-4229-8cea-815bc88798c9,Common Data Service for Dynamics 365 Project Operations
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,D365_ProjectOperationsCDSAttach,e564d403-7eaf-4c91-b92f-bb0dc62026e1,Dynamics 365 Project Operations CDS Attach
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,Power_Pages_Internal_User,60bf28f9-2b70-4522-96f7-335f5e06c941,Power Pages Internal User
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,D365_ProjectOperations,69f07c66-bee4-4222-b051-195095efee5b,Dynamics 365 Project Operations
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,D365_ProjectOperationsAttach,fa7675bd-6717-40e7-8172-d0bbcbe1ab12,Dynamics 365 Project Operations Attach
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,PROJECT_FOR_PROJECT_OPERATIONS_ATTACH,6d8e07c6-9613-484f-8cc1-a66c5c3979bb,Project for Project Operations Attach
+Dynamics 365 Project Operations Attach,DYN365_PROJECT_OPERATIONS_ATTACH,af739e8e-dd11-4eb5-a986-5908f595c603,SHAREPOINTSTANDARD,c7699d2e-19aa-44de-8edf-1736da088ca1,SharePoint (Plan 1)
Dynamics 365 for Project Service Automation Enterprise Edition for Government,DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV,1ec19b5f-7542-4b20-b01f-fb5d3f040e2d,DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV,1d8c8e0e-4308-4db5-8a41-b129dbdaea20,Dynamics 365 for Project Service Automation for Government
Dynamics 365 for Project Service Automation Enterprise Edition for Government,DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV,1ec19b5f-7542-4b20-b01f-fb5d3f040e2d,Forms_Pro_PS_GCC,e98256c5-17d0-4987-becc-e991c52d55c6,Microsoft Dynamics 365 Customer Voice for Project Service Automation for GCC
Dynamics 365 for Project Service Automation Enterprise Edition for Government,DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV,1ec19b5f-7542-4b20-b01f-fb5d3f040e2d,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
@@ -386,6 +411,12 @@ Dynamics 365 Sales Premium,DYN365_SALES_PREMIUM,2edaa1dc-966d-4475-93d6-8ee8dfd9
Dynamics 365 Sales Premium,DYN365_SALES_PREMIUM,2edaa1dc-966d-4475-93d6-8ee8dfd96877,Power_Pages_Internal_User,60bf28f9-2b70-4522-96f7-335f5e06c941,Power Pages Internal User
Dynamics 365 Sales Premium,DYN365_SALES_PREMIUM,2edaa1dc-966d-4475-93d6-8ee8dfd96877,Forms_Pro_SalesEnt,8839ef0e-91f1-4085-b485-62e06e7c7987,Microsoft Dynamics 365 Customer Voice for Sales Enterprise
Dynamics 365 Sales Premium,DYN365_SALES_PREMIUM,2edaa1dc-966d-4475-93d6-8ee8dfd96877,DYN365_ENTERPRISE_SALES,2da8e897-7791-486b-b08f-cc63c8129df7,Dynamics 365 for Sales
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,Power_Pages_Internal_User,60bf28f9-2b70-4522-96f7-335f5e06c941,Power Pages Internal User
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,DYN365_CDS_SUPPLYCHAINMANAGEMENT,b6a8b974-2956-4e14-ae81-f0384c363528,Common Data Service for Dynamics 365 Supply Chain Management
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,CDS_FOR_IOM,2bb89402-51e9-4c5a-be33-e954a9dd1ba6,Dataverse for IOM
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,DYN365_REGULATORY_SERVICE,c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65,"Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service"
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,D365_SCM_Attach,b21c777f-c2d5-486e-88f6-fc0a3e474271,Dynamics 365 for Supply Chain Management Attach
+Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer,DYN365_SCM_ATTACH,090b4a96-8114-4c95-9c91-60e81ef53302,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 for Marketing Business Edition,DYN365_BUSINESS_MARKETING,238e2f8d-e429-4035-94db-6926be4ffe7b,DYN365_BUSINESS_Marketing,393a0c96-9ba1-4af0-8975-fa2f853a25ac,Dynamics 365 Marketing
Dynamics 365 for Marketing Business Edition,DYN365_BUSINESS_MARKETING,238e2f8d-e429-4035-94db-6926be4ffe7b,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Dynamics 365 Regulatory Service - Enterprise Edition Trial,DYN365_REGULATORY_SERVICE,7ed4877c-0863-4f69-9187-245487128d4f,DYN365_REGULATORY_SERVICE,c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65,Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service
@@ -1139,7 +1170,7 @@ Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,OFFICE_BUSINESS,094e7854-93fc-4d55-b2c0-3ab5369ebdc1,Microsoft 365 Apps for business
@@ -1173,7 +1204,7 @@ Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,FLOW_O365_P1,0f9b09cb-62d1-4ff4-9129-43f4996f83f4,Power Automate for Office 365
Microsoft 365 Business Standard,O365_BUSINESS_PREMIUM,f245ecc8-75af-4f8e-b61f-27d8114de5f3,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,DYN365BC_MS_INVOICING,39b5c996-467e-4e60-bd62-46066f572726,Microsoft Invoicing
-Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing Chat Enterprise
+Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
Microsoft 365 Business Standard EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Standard,c1f79c29-5d7a-4bec-a2c1-1a76774864c0,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
@@ -1258,7 +1289,7 @@ Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,MESH_AVA
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,BPOS_S_DlpAddOn,9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed,Data Loss Prevention
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
@@ -1310,7 +1341,7 @@ Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,FLOW_O36
Microsoft 365 Business Premium,SPB,cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,DYN365BC_MS_INVOICING,39b5c996-467e-4e60-bd62-46066f572726,Microsoft Invoicing
-Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing Chat Enterprise
+Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,BPOS_S_DlpAddOn,9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed,Data Loss Prevention
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,EXCHANGE_S_STANDARD,9aaf7827-d63c-4b61-89c3-182f06f82e5c,Exchange Online (Plan 1)
@@ -1358,15 +1389,19 @@ Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Busine
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,POWERAPPS_O365_P1,92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c,Power Apps for Office 365
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,FLOW_O365_P1,0f9b09cb-62d1-4ff4-9129-43f4996f83f4,Power Automate for Office 365
Microsoft 365 Business Premium EEA (no Teams),Office_365_w/o_Teams_Bundle_Business_Premium,a3f586b6-8cce-4d9b-99d6-55238397f77a,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
+Microsoft 365 Business Voice (US),BUSINESS_VOICE_MED2_TELCO,08d7bce8-6e16-490e-89db-1d508e5e9609,MCOMEETADV,3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40,Microsoft 365 Audio Conferencing
+Microsoft 365 Business Voice (US),BUSINESS_VOICE_MED2_TELCO,08d7bce8-6e16-490e-89db-1d508e5e9609,MCOPSTN1,4ed3ff63-69d7-4fb7-b984-5aec7f605ca8,Microsoft 365 Domestic Calling Plan
+Microsoft 365 Business Voice (US),BUSINESS_VOICE_MED2_TELCO,08d7bce8-6e16-490e-89db-1d508e5e9609,MCOEV,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,Microsoft 365 Phone System
Microsoft 365 Domestic Calling Plan (120 Minutes),MCOPSTN_5,11dee6af-eca8-419f-8061-6864517c1875,MCOPSTN5,54a152dc-90de-4996-93d2-bc47e670fc06,MICROSOFT 365 DOMESTIC CALLING PLAN (120 min)
Microsoft 365 Domestic Calling Plan for GCC,MCOPSTN_1_GOV,923f58ab-fca1-46a1-92f9-89fda21238a8,MCOPSTN1_GOV,3c8a8792-7866-409b-bb61-1b20ace0368b,Domestic Calling for Government
Microsoft 365 Domestic Calling Plan for GCC,MCOPSTN_1_GOV,923f58ab-fca1-46a1-92f9-89fda21238a8,EXCHANGE_S_FOUNDATION_GOV,922ba911-5694-4e99-a794-73aed9bfeec8,Exchange Foundation for Government
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
+Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MESH_IMMERSIVE_FOR_TEAMS,f0ff6ac6-297d-49cd-be34-6dfef97f0c28,Immersive spaces for Teams
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
@@ -1409,57 +1444,58 @@ Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,INTUNE_A,c1ec4a95-1
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,POWERAPPS_O365_P2,c68f8d98-5534-41c8-bf36-22fa496fa792,Power Apps for Office 365
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
Microsoft 365 E3,SPE_E3,05e9a617-0261-4cee-bb44-138d3ef5d965,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Azure Rights Management,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,RMS_S_ENTERPRISE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Common Data Service for Teams,95b76021-6a53-4741-ab8b-1d1f3d66a95a,CDS_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Copilot,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing_Chat_Enterprise
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Exchange Online (Plan 2),efb87545-963c-4e0d-99df-69c6916d9eb0,EXCHANGE_S_ENTERPRISE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Information Protection and Governance Analytics � Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,ContentExplorer_Standard
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Information Protection for Office 365 - Standard,5136a095-5cf0-4aff-bec3-e84448b38ea5,MIP_S_CLP1
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Insights by MyAnalytics,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,MYANALYTICS_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft 365 Apps for enterprise,43de0ff5-c92c-492b-9116-175376d08c38,OFFICESUBSCRIPTION
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft 365 Lighthouse (Plan 1),6f23d6a9-adbf-481c-8538-b4c095654487,M365_LIGHTHOUSE_CUSTOMER_PLAN1
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft 365 Lighthouse (Plan 2),d55411c9-cfff-40a9-87c7-240f14df7da5,M365_LIGHTHOUSE_PARTNER_PLAN1
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Bookings,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,MICROSOFTBOOKINGS
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Clipchamp,a1ace008-72f3-4ea0-8dac-33b3a23a2472,CLIPCHAMP
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Defender for Endpoint Plan 1,292cc034-7b7c-4950-aaf5-943befd3f1d4,MDE_LITE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Forms (Plan E3),2789c901-c14e-48ab-a76a-be334d9d793a,FORMS_PLAN_E3
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Kaizala Pro,aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1,KAIZALA_O365_P3
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Planner,b737dad2-2f6c-4c65-90e3-ca563267e8b9,PROJECTWORKMANAGEMENT
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Search,94065c59-bc8e-4e8b-89e5-5138d471eaff,MICROSOFT_SEARCH
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft StaffHub,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Deskless
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Stream for Office 365 E3,9e700747-8b1d-45e5-ab8d-ef187ceec156,STREAM_O365_E3
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Mobile Device Management for Office 365,882e1d05-acd1-4ccb-8708-6ee03664b117,INTUNE_O365
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,OFFICESUBSCRIPTION,43de0ff5-c92c-492b-9116-175376d08c38,Microsoft 365 Apps for enterprise
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,M365_LIGHTHOUSE_CUSTOMER_PLAN1,6f23d6a9-adbf-481c-8538-b4c095654487,Microsoft 365 Lighthouse (Plan 1)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,M365_LIGHTHOUSE_PARTNER_PLAN1,d55411c9-cfff-40a9-87c7-240f14df7da5,Microsoft 365 Lighthouse (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,CLIPCHAMP,a1ace008-72f3-4ea0-8dac-33b3a23a2472,Microsoft Clipchamp
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MDE_LITE,292cc034-7b7c-4950-aaf5-943befd3f1d4,Microsoft Defender for Endpoint Plan 1
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,FORMS_PLAN_E3,2789c901-c14e-48ab-a76a-be334d9d793a,Microsoft Forms (Plan E3)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,KAIZALA_O365_P3,aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1,Microsoft Kaizala Pro
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,PROJECTWORKMANAGEMENT,b737dad2-2f6c-4c65-90e3-ca563267e8b9,Microsoft Planner
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MICROSOFT_SEARCH,94065c59-bc8e-4e8b-89e5-5138d471eaff,Microsoft Search
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Deskless,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Microsoft StaffHub
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,STREAM_O365_E3,9e700747-8b1d-45e5-ab8d-ef187ceec156,Microsoft Stream for Office 365 E3
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,INTUNE_O365,882e1d05-acd1-4ccb-8708-6ee03664b117,Mobile Device Management for Office 365
Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Nucleus,db4d623d-b514-490b-b7ef-8885eee514de,Nucleus
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Office for the Web,e95bec33-7c88-4a70-8e19-b10bd9d0c014,SHAREPOINTWAC
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Project for Office (Plan E3),31b4e2fc-4cd6-4e7d-9c1b-41407303bd66,PROJECT_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,SharePoint (Plan 2),5dbe027f-2339-4123-9542-606e4d348a72,SHAREPOINTENTERPRISE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Skype for Business Online (Plan 2),0feaeb32-d00e-4d66-bd5a-43b5b83db82c,MCOSTANDARD
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Sway,a23b959c-7ce8-4e57-9140-b90eb88a9e97,SWAY
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,To-Do (Plan 2),c87f142c-d1e9-4363-8630-aaea9c4d9ae5,BPOS_S_TODO_2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Viva Engage Core,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,VIVAENGAGE_CORE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Viva Learning Seeded,b76fb638-6ba6-402a-b9f9-83d28acb3d86,VIVA_LEARNING_SEEDED
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Whiteboard (Plan 2),94a54592-cd8b-425e-87c6-97868b000b91,WHITEBOARD_PLAN2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Yammer Enterprise,7547a3fe-08ee-4ccb-b430-5077c5041653,YAMMER_ENTERPRISE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Universal Print,795f6fe0-cc4d-4773-b050-5dde4dc704c9,UNIVERSAL_PRINT_01
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Windows 10/11 Enterprise (Original),21b439ba-a0ca-424f-a6cc-52f954a5b111,WIN10_PRO_ENT_SUB
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Windows Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows_Autopatch
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Windows Update for Business Deployment Service,7bf960f6-2cd9-443a-8046-5dbff9558365,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Azure Information Protection Premium P1,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,RMS_S_PREMIUM
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Common Data Service,4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14,DYN365_CDS_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Azure Multi-Factor Authentication,8a256a2b-b617-496d-b51b-e76466e88db0,MFA_PREMIUM
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Defender for Cloud Apps Discovery,932ad362-64a8-4783-9106-97849a1a30b9,ADALLOM_S_DISCOVERY
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Entra ID P1,41781fb2-bc02-4b7c-bd55-b576c07bb09d,AAD_PREMIUM
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Microsoft Intune Plan 1,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,INTUNE_A
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Power Apps for Office 365,c68f8d98-5534-41c8-bf36-22fa496fa792,POWERAPPS_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Power Automate for Office 365,76846ad7-7776-4c40-a281-a386362dd1b9,FLOW_O365_P2
-Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Power Virtual Agents for Office 365,041fe683-03e4-45b6-b1af-c0cdc516daee,POWER_VIRTUAL_AGENTS_O365_P2
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,SHAREPOINTWAC,e95bec33-7c88-4a70-8e19-b10bd9d0c014,Office for the Web
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,PROJECT_O365_P2,31b4e2fc-4cd6-4e7d-9c1b-41407303bd66,Project for Office (Plan E3)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,SHAREPOINTENTERPRISE,5dbe027f-2339-4123-9542-606e4d348a72,SharePoint (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MCOSTANDARD,0feaeb32-d00e-4d66-bd5a-43b5b83db82c,Skype for Business Online (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,SWAY,a23b959c-7ce8-4e57-9140-b90eb88a9e97,Sway
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,BPOS_S_TODO_2,c87f142c-d1e9-4363-8630-aaea9c4d9ae5,To-Do (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,VIVAENGAGE_CORE,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,Viva Engage Core
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,VIVA_LEARNING_SEEDED,b76fb638-6ba6-402a-b9f9-83d28acb3d86,Viva Learning Seeded
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,WHITEBOARD_PLAN2,94a54592-cd8b-425e-87c6-97868b000b91,Whiteboard (Plan 2)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,Yammer Enterprise
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,UNIVERSAL_PRINT_01,795f6fe0-cc4d-4773-b050-5dde4dc704c9,Universal Print
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,WIN10_PRO_ENT_SUB,21b439ba-a0ca-424f-a6cc-52f954a5b111,Windows 10/11 Enterprise (Original)
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,Azure Information Protection Premium P1
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,DYN365_CDS_O365_P2,4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14,Common Data Service
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,MFA_PREMIUM,8a256a2b-b617-496d-b51b-e76466e88db0,Microsoft Azure Multi-Factor Authentication
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,ADALLOM_S_DISCOVERY,932ad362-64a8-4783-9106-97849a1a30b9,Microsoft Defender for Cloud Apps Discovery
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,Microsoft Entra ID P1
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune Plan 1
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,POWERAPPS_O365_P2,c68f8d98-5534-41c8-bf36-22fa496fa792,Power Apps for Office 365
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
+Microsoft 365 E3 EEA (no Teams),O365_w/o�Teams�Bundle_M3,c2fe850d-fbbb-4858-b67d-bd0c6e746da3,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
-Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,CLIPCHAMP,a1ace008-72f3-4ea0-8dac-33b3a23a2472,Microsoft Clipchamp
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,MICROSOFT_LOOP,c4b8c31a-fb44-4c65-9837-a21f55fcabda,Microsoft Loop
Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
-Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing Chat Enterprise
+Microsoft 365 E3 Extra Features,Microsoft_365_E3_Extra_Features,f5b15d67-b99e-406b-90f1-308452f94de6,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
+Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E3 EEA (no Teams) - Unattended License,Microsoft_365_E3_EEA_(no_Teams)_Unattended_License,a23dbafb-3396-48b3-ad9c-a304fe206043,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
@@ -1505,7 +1541,7 @@ Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
Microsoft 365 E3 - Unattended License,SPE_E3_RPA1,c2ac2ee4-9bb1-47e4-8541-d689c7e83371,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
@@ -1551,7 +1587,7 @@ Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-00
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
@@ -1595,7 +1631,7 @@ Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-00
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
Microsoft 365 E3 (500 seats min)_HUB,Microsoft_365_E3,0c21030a-7e60-4ec7-9a0f-0042e0e0211a,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
-Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB,O365_w/o Teams Bundle_M3_(500_seats_min)_HUB,602e6573-55a3-46b1-a1a0-cc267991501a,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
@@ -1668,13 +1704,14 @@ Microsoft 365 E3_USGOV_GCCHIGH,SPE_E3_USGOV_GCCHIGH,ca9d1dd9-dfe9-4fef-b97c-9bc1
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,GRAPH_CONNECTORS_SEARCH_INDEX,a6520331-d7d4-4276-95f5-15c0933bc757,Graph Connectors Search with Index
+Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,MESH_IMMERSIVE_FOR_TEAMS,f0ff6ac6-297d-49cd-be34-6dfef97f0c28,Immersive spaces for Teams
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,INFORMATION_BARRIERS,c4801e8a-cb58-4c35-aca6-f2dcc106f287,Information Barriers
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,Content_Explorer,d9fa6af4-e046-4c89-9226-729a0786685d,Information Protection and Governance Analytics - Premium
Microsoft 365 E5,SPE_E5,06ebc4ee-1bb5-47dd-8120-11324bc54e06,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
@@ -1824,7 +1861,7 @@ Microsoft 365 E5 EEA (no Teams) with Calling Minutes,Microsoft_365_E5_EEA_(no_Te
Microsoft 365 E5 EEA (no Teams) with Calling Minutes,Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes,6ee4114a-9b2d-4577-9e7a-49fa43d222d3,FLOW_O365_P1,0f9b09cb-62d1-4ff4-9129-43f4996f83f4,Power Automate for Office 365
Microsoft 365 E5 EEA (no Teams) with Calling Minutes,Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes,6ee4114a-9b2d-4577-9e7a-49fa43d222d3,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
-Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing Chat Enterprise
+Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing,90277bc7-a6fe-4181-99d8-712b08b8d32b,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
@@ -1905,7 +1942,7 @@ Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 (500 seats min)_HUB,Microsoft_365_E5,db684ac5-c0e7-4f92-8284-ef9ebde75d33,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -1987,7 +2024,7 @@ Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPAC
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 Developer (without Windows and Audio Conferencing),DEVELOPERPACK_E5,c42b9cae-ea4f-4ab7-9717-81576235ccac,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2077,85 +2114,85 @@ Microsoft 365 E5 Compliance,INFORMATION_PROTECTION_COMPLIANCE,184efa21-98c3-4e5d
Microsoft 365 E5 Compliance,INFORMATION_PROTECTION_COMPLIANCE,184efa21-98c3-4e5d-95ab-d07053a96e67,MICROSOFTENDPOINTDLP,64bfac92-2b17-4482-b5e5-a0304429de3e,Microsoft Endpoint DLP
Microsoft 365 E5 Compliance,INFORMATION_PROTECTION_COMPLIANCE,184efa21-98c3-4e5d-95ab-d07053a96e67,RMS_S_PREMIUM2,5689bec4-755d-4753-8b61-40975025187c,Azure Information Protection Premium P2
Microsoft 365 E5 Compliance,INFORMATION_PROTECTION_COMPLIANCE,184efa21-98c3-4e5d-95ab-d07053a96e67,ADALLOM_S_STANDALONE,2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2,Microsoft Defender for Cloud Apps
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SharePoint Online (Plan 2),5dbe027f-2339-4123-9542-606e4d348a72,SHAREPOINTENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Bing Chat Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Bing_Chat_Enterprise
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Common Data Service for Teams,afa73018-811e-46e9-988f-f75d2b1b8430,CDS_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Customer Lockbox,9f431833-0334-42de-a7dc-70aa40db46db,LOCKBOX_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Customer Lockbox (A),3ec18638-bd4c-4d3b-8905-479ed636b83e,CustomerLockboxA_Enterprise
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Data Classification in Microsoft 365,cd31b152-6326-4d1b-ae1b-997b625182e6,MIP_S_Exchange
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Exchange Online (Plan 2),efb87545-963c-4e0d-99df-69c6916d9eb0,EXCHANGE_S_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Graph Connectors Search with Index,a6520331-d7d4-4276-95f5-15c0933bc757,GRAPH_CONNECTORS_SEARCH_INDEX
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Barriers,c4801e8a-cb58-4c35-aca6-f2dcc106f287,INFORMATION_BARRIERS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Protection and Governance Analytics - Premium,d9fa6af4-e046-4c89-9226-729a0786685d,Content_Explorer
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Protection and Governance Analytics � Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,ContentExplorer_Standard
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Protection for Office 365 - Premium,efb0351d-3b08-4503-993d-383af8de41e3,MIP_S_CLP2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Information Protection for Office 365 - Standard,5136a095-5cf0-4aff-bec3-e84448b38ea5,MIP_S_CLP1
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Insights by MyAnalytics,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,MYANALYTICS_P2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Advanced Auditing,2f442157-a11c-46b9-ae5b-6e39ff4e5849,M365_ADVANCED_AUDITING
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Apps for enterprise,43de0ff5-c92c-492b-9116-175376d08c38,OFFICESUBSCRIPTION
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Audio Conferencing,3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40,MCOMEETADV
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Audit Platform,f6de4823-28fa-440b-b886-4783fa86ddba,M365_AUDIT_PLATFORM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Communication Compliance,a413a9ff-720c-4822-98ef-2f37c2a21f4c,MICROSOFT_COMMUNICATION_COMPLIANCE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Defender,bf28f719-7844-4079-9c78-c1307898e192,MTP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Lighthouse (Plan 1),6f23d6a9-adbf-481c-8538-b4c095654487,M365_LIGHTHOUSE_CUSTOMER_PLAN1
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft 365 Phone System,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,MCOEV
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Bookings,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,MICROSOFTBOOKINGS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Clipchamp,a1ace008-72f3-4ea0-8dac-33b3a23a2472,CLIPCHAMP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Communications DLP,6dc145d6-95dd-4191-b9c3-185575ee6f6b,COMMUNICATIONS_DLP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Customer Key,6db1f1db-2b46-403f-be40-e39395f08dbb,CUSTOMER_KEY
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Data Investigations,46129a58-a698-46f0-aa5b-17f6586297d9,DATA_INVESTIGATIONS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Office 365 (Plan 1),f20fedf3-f3c3-43c3-8267-2bfdd51c0939,ATP_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Office 365 (Plan 2),8e0c0a52-6a6c-4d40-8370-dd62790dcd70,THREAT_INTELLIGENCE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Excel Advanced Analytics,531ee2f8-b1cb-453b-9c21-d2180d014ca5,EXCEL_PREMIUM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Forms (Plan E5),e212cbc7-0961-4c40-9825-01117710dcb1,FORMS_PLAN_E5
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Information Governance,e26c2fcc-ab91-4a61-b35c-03cdc8dddf66,INFO_GOVERNANCE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Insider Risk Management,d587c7a3-bda9-4f99-8776-9bcf59c84f75,INSIDER_RISK
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Kaizala Pro,0898bdbb-73b0-471a-81e5-20f1fe4dd66e,KAIZALA_STANDALONE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft ML-Based Classification,d2d51368-76c9-4317-ada2-a12c004c432f,ML_CLASSIFICATION
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft MyAnalytics (Full),34c0d7a0-a70f-4668-9238-47f9fc208882,EXCHANGE_ANALYTICS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Planner,b737dad2-2f6c-4c65-90e3-ca563267e8b9,PROJECTWORKMANAGEMENT
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Records Management,65cc641f-cccd-4643-97e0-a17e3045e541,RECORDS_MANAGEMENT
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Search,94065c59-bc8e-4e8b-89e5-5138d471eaff,MICROSOFT_SEARCH
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft StaffHub,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Deskless
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Stream for Office 365 E5,6c6042f5-6f01-4d67-b8c1-eb99d36eed3e,STREAM_O365_E5
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Mobile Device Management for Office 365,882e1d05-acd1-4ccb-8708-6ee03664b117,INTUNE_O365
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SHAREPOINTENTERPRISE,5dbe027f-2339-4123-9542-606e4d348a72,SharePoint Online (Plan 2)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,GRAPH_CONNECTORS_SEARCH_INDEX,a6520331-d7d4-4276-95f5-15c0933bc757,Graph Connectors Search with Index
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INFORMATION_BARRIERS,c4801e8a-cb58-4c35-aca6-f2dcc106f287,Information Barriers
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Content_Explorer,d9fa6af4-e046-4c89-9226-729a0786685d,Information Protection and Governance Analytics - Premium
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MIP_S_CLP2,efb0351d-3b08-4503-993d-383af8de41e3,Information Protection for Office 365 - Premium
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,M365_ADVANCED_AUDITING,2f442157-a11c-46b9-ae5b-6e39ff4e5849,Microsoft 365 Advanced Auditing
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,OFFICESUBSCRIPTION,43de0ff5-c92c-492b-9116-175376d08c38,Microsoft 365 Apps for enterprise
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MCOMEETADV,3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40,Microsoft 365 Audio Conferencing
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,M365_AUDIT_PLATFORM,f6de4823-28fa-440b-b886-4783fa86ddba,Microsoft 365 Audit Platform
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MICROSOFT_COMMUNICATION_COMPLIANCE,a413a9ff-720c-4822-98ef-2f37c2a21f4c,Microsoft 365 Communication Compliance
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MTP,bf28f719-7844-4079-9c78-c1307898e192,Microsoft 365 Defender
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,M365_LIGHTHOUSE_CUSTOMER_PLAN1,6f23d6a9-adbf-481c-8538-b4c095654487,Microsoft 365 Lighthouse (Plan 1)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MCOEV,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,Microsoft 365 Phone System
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,CLIPCHAMP,a1ace008-72f3-4ea0-8dac-33b3a23a2472,Microsoft Clipchamp
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,COMMUNICATIONS_DLP,6dc145d6-95dd-4191-b9c3-185575ee6f6b,Microsoft Communications DLP
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,CUSTOMER_KEY,6db1f1db-2b46-403f-be40-e39395f08dbb,Microsoft Customer Key
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,DATA_INVESTIGATIONS,46129a58-a698-46f0-aa5b-17f6586297d9,Microsoft Data Investigations
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ATP_ENTERPRISE,f20fedf3-f3c3-43c3-8267-2bfdd51c0939,Microsoft Defender for Office 365 (Plan 1)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,THREAT_INTELLIGENCE,8e0c0a52-6a6c-4d40-8370-dd62790dcd70,Microsoft Defender for Office 365 (Plan 2)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,EXCEL_PREMIUM,531ee2f8-b1cb-453b-9c21-d2180d014ca5,Microsoft Excel Advanced Analytics
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,FORMS_PLAN_E5,e212cbc7-0961-4c40-9825-01117710dcb1,Microsoft Forms (Plan E5)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INFO_GOVERNANCE,e26c2fcc-ab91-4a61-b35c-03cdc8dddf66,Microsoft Information Governance
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INSIDER_RISK,d587c7a3-bda9-4f99-8776-9bcf59c84f75,Microsoft Insider Risk Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,KAIZALA_STANDALONE,0898bdbb-73b0-471a-81e5-20f1fe4dd66e,Microsoft Kaizala Pro
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ML_CLASSIFICATION,d2d51368-76c9-4317-ada2-a12c004c432f,Microsoft ML-Based Classification
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,EXCHANGE_ANALYTICS,34c0d7a0-a70f-4668-9238-47f9fc208882,Microsoft MyAnalytics (Full)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,PROJECTWORKMANAGEMENT,b737dad2-2f6c-4c65-90e3-ca563267e8b9,Microsoft Planner
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RECORDS_MANAGEMENT,65cc641f-cccd-4643-97e0-a17e3045e541,Microsoft Records Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MICROSOFT_SEARCH,94065c59-bc8e-4e8b-89e5-5138d471eaff,Microsoft Search
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Deskless,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Microsoft StaffHub
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,STREAM_O365_E5,6c6042f5-6f01-4d67-b8c1-eb99d36eed3e,Microsoft Stream for Office 365 E5
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INTUNE_O365,882e1d05-acd1-4ccb-8708-6ee03664b117,Mobile Device Management for Office 365
Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Nucleus,db4d623d-b514-490b-b7ef-8885eee514de,Nucleus
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office 365 Advanced eDiscovery,4de31727-a228-4ec3-a5bf-8e45b5ca48cc,EQUIVIO_ANALYTICS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office 365 Cloud App Security,8c098270-9dd4-4350-9b30-ba4703f3b36b,ADALLOM_S_O365
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office 365 Privileged Access Management,b1188c4c-1b36-4018-b48b-ee07604f6feb,PAM_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office 365 SafeDocs,bf6f5520-59e3-4f82-974b-7dbbc4fd27c7,SAFEDOCS
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Office for the Web,e95bec33-7c88-4a70-8e19-b10bd9d0c014,SHAREPOINTWAC
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Power Apps for Office 365 (Plan 3),9c0dab89-a30c-4117-86e7-97bda240acd2,POWERAPPS_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Premium Encryption in Office 365,617b097b-4b93-4ede-83de-5f075bb5fb2f,PREMIUM_ENCRYPTION
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Project for Office (Plan E5),b21a6b06-1988-436e-a07b-51ec6d9f52ad,PROJECT_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RETIRED - Microsoft Communications Compliance,41fcdd7d-4733-4863-9cf4-c65b83ce2df4,COMMUNICATIONS_COMPLIANCE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RETIRED - Microsoft Insider Risk Management,9d0c4ee5-e4a1-4625-ab39-d82b619b1a34,INSIDER_RISK_MANAGEMENT
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Skype for Business Online (Plan 2),0feaeb32-d00e-4d66-bd5a-43b5b83db82c,MCOSTANDARD
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Sway,a23b959c-7ce8-4e57-9140-b90eb88a9e97,SWAY
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,To-Do (Plan 3),3fb82609-8c27-4f7b-bd51-30634711ee67,BPOS_S_TODO_3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Viva Engage Core,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,VIVAENGAGE_CORE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Viva Learning Seeded,b76fb638-6ba6-402a-b9f9-83d28acb3d86,VIVA_LEARNING_SEEDED
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Whiteboard (Plan 3),4a51bca5-1eff-43f5-878c-177680f191af,WHITEBOARD_PLAN3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Yammer Enterprise,7547a3fe-08ee-4ccb-b430-5077c5041653,YAMMER_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Endpoint,871d91ec-ec1a-452b-a83f-bd76c7d770ef,WINDEFATP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Endpoint DLP,64bfac92-2b17-4482-b5e5-a0304429de3e,MICROSOFTENDPOINTDLP
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Universal Print,795f6fe0-cc4d-4773-b050-5dde4dc704c9,UNIVERSAL_PRINT_01
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Windows 10/11 Enterprise (Original),21b439ba-a0ca-424f-a6cc-52f954a5b111,WIN10_PRO_ENT_SUB
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Windows Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows_Autopatch
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Windows Update for Business Deployment Service,7bf960f6-2cd9-443a-8046-5dbff9558365,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Azure Information Protection Premium P1,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,RMS_S_PREMIUM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Azure Information Protection Premium P2,5689bec4-755d-4753-8b61-40975025187c,RMS_S_PREMIUM2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Azure Rights Management,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,RMS_S_ENTERPRISE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Common Data Service,28b0fa46-c39a-4188-89e2-58e979a6b014,DYN365_CDS_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Azure Multi-Factor Authentication,8a256a2b-b617-496d-b51b-e76466e88db0,MFA_PREMIUM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Cloud Apps,2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2,ADALLOM_S_STANDALONE
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Defender for Identity,14ab5db5-e6c4-4b20-b4bc-13e36fd2227f,ATA
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Entra ID P1,41781fb2-bc02-4b7c-bd55-b576c07bb09d,AAD_PREMIUM
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Entra ID P2,eec0eb4f-6444-4f95-aba0-50c24d67f998,AAD_PREMIUM_P2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Microsoft Intune Plan 1,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,INTUNE_A
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Power Automate for Office 365,07699545-9485-468e-95b6-2fca3738be01,FLOW_O365_P3
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Power BI Pro,70d33638-9c74-4d01-bfd3-562de28bd4ba,BI_AZURE_P2
-Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Power Virtual Agents for Office 365,ded3d325-1bdc-453e-8432-5bac26d7a014,POWER_VIRTUAL_AGENTS_O365_P3
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,EQUIVIO_ANALYTICS,4de31727-a228-4ec3-a5bf-8e45b5ca48cc,Office 365 Advanced eDiscovery
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ADALLOM_S_O365,8c098270-9dd4-4350-9b30-ba4703f3b36b,Office 365 Cloud App Security
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,PAM_ENTERPRISE,b1188c4c-1b36-4018-b48b-ee07604f6feb,Office 365 Privileged Access Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SAFEDOCS,bf6f5520-59e3-4f82-974b-7dbbc4fd27c7,Office 365 SafeDocs
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SHAREPOINTWAC,e95bec33-7c88-4a70-8e19-b10bd9d0c014,Office for the Web
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,POWERAPPS_O365_P3,9c0dab89-a30c-4117-86e7-97bda240acd2,Power Apps for Office 365 (Plan 3)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,PREMIUM_ENCRYPTION,617b097b-4b93-4ede-83de-5f075bb5fb2f,Premium Encryption in Office 365
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,PROJECT_O365_P3,b21a6b06-1988-436e-a07b-51ec6d9f52ad,Project for Office (Plan E5)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,COMMUNICATIONS_COMPLIANCE,41fcdd7d-4733-4863-9cf4-c65b83ce2df4,RETIRED - Microsoft Communications Compliance
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INSIDER_RISK_MANAGEMENT,9d0c4ee5-e4a1-4625-ab39-d82b619b1a34,RETIRED - Microsoft Insider Risk Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MCOSTANDARD,0feaeb32-d00e-4d66-bd5a-43b5b83db82c,Skype for Business Online (Plan 2)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,SWAY,a23b959c-7ce8-4e57-9140-b90eb88a9e97,Sway
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,BPOS_S_TODO_3,3fb82609-8c27-4f7b-bd51-30634711ee67,To-Do (Plan 3)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,VIVAENGAGE_CORE,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,Viva Engage Core
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,VIVA_LEARNING_SEEDED,b76fb638-6ba6-402a-b9f9-83d28acb3d86,Viva Learning Seeded
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,WHITEBOARD_PLAN3,4a51bca5-1eff-43f5-878c-177680f191af,Whiteboard (Plan 3)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,Yammer Enterprise
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,WINDEFATP,871d91ec-ec1a-452b-a83f-bd76c7d770ef,Microsoft Defender for Endpoint
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MICROSOFTENDPOINTDLP,64bfac92-2b17-4482-b5e5-a0304429de3e,Microsoft Endpoint DLP
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,UNIVERSAL_PRINT_01,795f6fe0-cc4d-4773-b050-5dde4dc704c9,Universal Print
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,WIN10_PRO_ENT_SUB,21b439ba-a0ca-424f-a6cc-52f954a5b111,Windows 10/11 Enterprise (Original)
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,Azure Information Protection Premium P1
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RMS_S_PREMIUM2,5689bec4-755d-4753-8b61-40975025187c,Azure Information Protection Premium P2
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,DYN365_CDS_O365_P3,28b0fa46-c39a-4188-89e2-58e979a6b014,Common Data Service
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,MFA_PREMIUM,8a256a2b-b617-496d-b51b-e76466e88db0,Microsoft Azure Multi-Factor Authentication
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ADALLOM_S_STANDALONE,2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2,Microsoft Defender for Cloud Apps
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,ATA,14ab5db5-e6c4-4b20-b4bc-13e36fd2227f,Microsoft Defender for Identity
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,Microsoft Entra ID P1
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,AAD_PREMIUM_P2,eec0eb4f-6444-4f95-aba0-50c24d67f998,Microsoft Entra ID P2
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune Plan 1
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,FLOW_O365_P3,07699545-9485-468e-95b6-2fca3738be01,Power Automate for Office 365
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,BI_AZURE_P2,70d33638-9c74-4d01-bfd3-562de28bd4ba,Power BI Pro
+Microsoft 365 E5 EEA (no Teams),O365_w/o_Teams_Bundle_M5,3271cf8e-2be5-4a09-a549-70fd05baaa17,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 E5 Security,IDENTITY_THREAT_PROTECTION,26124093-3d78-432b-b5dc-48bf992543d5,MTP,bf28f719-7844-4079-9c78-c1307898e192,Microsoft 365 Defender
Microsoft 365 E5 Security,IDENTITY_THREAT_PROTECTION,26124093-3d78-432b-b5dc-48bf992543d5,ATP_ENTERPRISE,f20fedf3-f3c3-43c3-8267-2bfdd51c0939,Microsoft Defender for Office 365 (Plan 1)
Microsoft 365 E5 Security,IDENTITY_THREAT_PROTECTION,26124093-3d78-432b-b5dc-48bf992543d5,THREAT_INTELLIGENCE,8e0c0a52-6a6c-4d40-8370-dd62790dcd70,Microsoft Defender for Office 365 (Plan 2)
@@ -2173,7 +2210,7 @@ Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-a
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 with Calling Minutes,SPE_E5_CALLINGMINUTES,a91fc4e0-65e5-4266-aa76-4037509c1626,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2256,7 +2293,7 @@ Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 without Audio Conferencing,SPE_E5_NOPSTNCONF,cd2925a3-5076-4233-8931-638a8c94f773,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2339,7 +2376,7 @@ Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2418,7 +2455,7 @@ Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5
Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_without_Audio_Conferencing,2113661c-6509-4034-98bb-9c47bd28d63c,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
@@ -2499,7 +2536,7 @@ Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(50
Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB,O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB,1e988bf3-8b7c-4731-bec0-4e2a2946600c,POWER_VIRTUAL_AGENTS_O365_P3,ded3d325-1bdc-453e-8432-5bac26d7a014,Power Virtual Agents for Office 365
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,CDS_O365_P3,afa73018-811e-46e9-988f-f75d2b1b8430,Common Data Service for Teams
-Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,LOCKBOX_ENTERPRISE,9f431833-0334-42de-a7dc-70aa40db46db,Customer Lockbox
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,MIP_S_Exchange,cd31b152-6326-4d1b-ae1b-997b625182e6,Data Classification in Microsoft 365
Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB,Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB,a640eead-25f6-4bec-97e3-23cfd382d7c2,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
@@ -2656,8 +2693,10 @@ Microsoft 365 F1 EEA (no Teams),Microsoft_365_F1_EEA_(no_Teams),0666269f-b167-4c
Microsoft 365 F1 EEA (no Teams),Microsoft_365_F1_EEA_(no_Teams),0666269f-b167-4c5b-a76f-fc574f2b1118,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune Plan 1
Microsoft 365 F1 EEA (no Teams),Microsoft_365_F1_EEA_(no_Teams),0666269f-b167-4c5b-a76f-fc574f2b1118,STREAM_O365_K,3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9,Microsoft Stream for Office 365 F3
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,CDS_O365_F1,90db65a7-bf11-4904-a79f-ef657605145b,Common Data Service for Teams
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,EXCHANGE_S_DESKLESS,4a82b400-a79f-41a4-b4e2-e94f5787b113,Exchange Online Kiosk
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,M365_LIGHTHOUSE_CUSTOMER_PLAN1,6f23d6a9-adbf-481c-8538-b4c095654487,Microsoft 365 Lighthouse (Plan 1)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,FORMS_PLAN_K,f07046bd-2a3c-4b96-b0be-dea79d7cbfb8,Microsoft Forms (Plan F1)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,KAIZALA_O365_P1,73b2a583-6a59-42e3-8e83-54db46bc3278,Microsoft Kaizala Pro
@@ -2674,23 +2713,24 @@ Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,SHAREPOINTDESKLESS,
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,MCOIMP,afc06cb0-b4f4-4473-8286-d644f70d8faf,Skype for Business Online (Plan 1)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,SWAY,a23b959c-7ce8-4e57-9140-b90eb88a9e97,Sway
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,BPOS_S_TODO_FIRSTLINE,80873e7a-cd2a-4e67-b061-1b5381a676a5,To-Do (Firstline)
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,VIVAENGAGE_CORE,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,Viva Engage Core
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,VIVA_LEARNING_SEEDED,b76fb638-6ba6-402a-b9f9-83d28acb3d86,Viva Learning Seeded
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,WHITEBOARD_FIRSTLINE1,36b29273-c6d0-477a-aca6-6fbe24f538e3,Whiteboard (Firstline)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,WIN10_ENT_LOC_F1,e041597c-9c7f-4ed9-99b0-2663301576f7,Windows 10 Enterprise E3 (Local Only)
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,Yammer Enterprise
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,UNIVERSAL_PRINT_01,795f6fe0-cc4d-4773-b050-5dde4dc704c9,Universal Print
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
-Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,Microsoft Entra ID P1
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,Azure Information Protection Premium P1
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,DYN365_CDS_O365_F1,ca6e61ec-d4f4-41eb-8b88-d96e0e14323f,Common Data Service
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,MFA_PREMIUM,8a256a2b-b617-496d-b51b-e76466e88db0,Microsoft Azure Multi-Factor Authentication
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,ADALLOM_S_DISCOVERY,932ad362-64a8-4783-9106-97849a1a30b9,Microsoft Defender for Cloud Apps Discovery
-Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,Microsoft Entra ID P1
+Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,INTUNE_A,c1ec4a95-1f05-45b3-a911-aa3fa01094f5,Microsoft Intune Plan 1
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,STREAM_O365_K,3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9,Microsoft Stream for Office 365 F3
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,POWERAPPS_O365_S1,e0287f9f-e222-4f98-9a83-f379e249159a,Power Apps for Office 365 F3
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,FLOW_O365_S1,bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a,Power Automate for Office 365 F3
Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,POWER_VIRTUAL_AGENTS_O365_F1,ba2fdb48-290b-4632-b46a-e4ecc58ac11a,Power Virtual Agents for Office 365
-Microsoft 365 F3,SPE_F1,66b55226-6b4f-492c-910c-a3b7a3c9d993,VIVAENGAGE_CORE,a82fbf69-b4d7-49f4-83a6-915b2cf354f4,Viva Engage Core
Microsoft 365 F3 EEA (no Teams),Microsoft_365_F3_EEA_(no_Teams),f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
Microsoft 365 F3 EEA (no Teams),Microsoft_365_F3_EEA_(no_Teams),f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87,CDS_O365_F1,90db65a7-bf11-4904-a79f-ef657605145b,Common Data Service for Teams
Microsoft 365 F3 EEA (no Teams),Microsoft_365_F3_EEA_(no_Teams),f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87,EXCHANGE_S_DESKLESS,4a82b400-a79f-41a4-b4e2-e94f5787b113,Exchange Online Kiosk
@@ -2974,8 +3014,9 @@ Microsoft 365 Audio Conferencing for GCC,MCOMEETADV_GOV,2d3091c7-0712-488b-b3d8-
Microsoft 365 Audio Conferencing for GCC,MCOMEETADV_GOV,2d3091c7-0712-488b-b3d8-6b97bde6a1f5,MCOMEETADV_GOV,f544b08d-1645-4287-82de-8d91f37c02a1,MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
-Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Copilot
+Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,CustomerLockboxA_Enterprise,3ec18638-bd4c-4d3b-8905-479ed636b83e,Customer Lockbox (A)
+Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,MESH_IMMERSIVE_FOR_TEAMS,f0ff6ac6-297d-49cd-be34-6dfef97f0c28,Immersive spaces for Teams
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Content_Explorer,d9fa6af4-e046-4c89-9226-729a0786685d,Information Protection and Governance Analytics - Premium
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,CLIPCHAMP,a1ace008-72f3-4ea0-8dac-33b3a23a2472,Microsoft Clipchamp
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,INSIDER_RISK,d587c7a3-bda9-4f99-8776-9bcf59c84f75,Microsoft Insider Risk Management
@@ -2985,6 +3026,7 @@ Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,PURVIEW_DISCOVERY,c948ea65-2053-4a5a-8a62-9eaaaf11b522,Purview Discovery
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,MICROSOFTENDPOINTDLP,64bfac92-2b17-4482-b5e5-a0304429de3e,Microsoft Endpoint DLP
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Windows_Autopatch,9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3,Windows Autopatch
+Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE,7bf960f6-2cd9-443a-8046-5dbff9558365,Windows Update for Business Deployment Service
Microsoft 365 E5 Suite features,M365_E5_SUITE_COMPONENTS,99cc8282-2f74-4954-83b7-c6a9a1999067,Defender_for_Iot_Enterprise,99cd49a9-0e54-4e07-aea1-d8d9f5f704f5,Defender for IoT - Enterprise IoT Security
Microsoft 365 F1,M365_F1_COMM,50f60901-3181-4b75-8a2c-4c8e4c1d5a72,AAD_PREMIUM,41781fb2-bc02-4b7c-bd55-b576c07bb09d,AAD_PREMIUM
Microsoft 365 F1,M365_F1_COMM,50f60901-3181-4b75-8a2c-4c8e4c1d5a72,RMS_S_PREMIUM,6c57d4b6-3b23-47a5-9bc9-69f17b4947b3,RMS_S_PREMIUM
@@ -3099,6 +3141,7 @@ Microsoft Cloud for Sustainability vTrial,Microsoft_Cloud_for_Sustainability_vTr
Microsoft Cloud for Sustainability vTrial,Microsoft_Cloud_for_Sustainability_vTrial,556640c0-53ea-4773-907d-29c55332983f,DYN365_CDS_VIRAL,17ab22cd-a0b3-4536-910a-cb6eb12696c0,Common Data Service
Microsoft Defender for Endpoint,WIN_DEF_ATP,111046dd-295b-4d6d-9724-d52ac90bd1f2,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft Defender for Endpoint,WIN_DEF_ATP,111046dd-295b-4d6d-9724-d52ac90bd1f2,WINDEFATP,871d91ec-ec1a-452b-a83f-bd76c7d770ef,MICROSOFT DEFENDER FOR ENDPOINT
+Microsoft Defender for Endpoint F2,Microsoft_Defender_for_Endpoint_F2,e430a580-c37b-4d16-adba-d881d7cd0364,WINDEFATP,871d91ec-ec1a-452b-a83f-bd76c7d770ef,Microsoft Defender for Endpoint
Microsoft Defender for Endpoint P1,DEFENDER_ENDPOINT_P1,16a55f2f-ff35-4cd5-9146-fb784e3761a5,Intune_Defender,1689aade-3d6a-4bfc-b017-46d2672df5ad,MDE_SecurityManagement
Microsoft Defender for Endpoint P1,DEFENDER_ENDPOINT_P1,16a55f2f-ff35-4cd5-9146-fb784e3761a5,MDE_LITE,292cc034-7b7c-4950-aaf5-943befd3f1d4,Microsoft Defender for Endpoint Plan 1
Microsoft Defender for Endpoint P1 for EDU,DEFENDER_ENDPOINT_P1_EDU,bba890d4-7881-4584-8102-0c3fdfb739a7,MDE_LITE,292cc034-7b7c-4950-aaf5-943befd3f1d4,Microsoft Defender for Endpoint Plan 1
@@ -3127,6 +3170,7 @@ Microsoft Dynamics CRM Online,CRMSTANDARD,d17b27af-3f49-4822-99f9-56a661538792,F
Microsoft Dynamics CRM Online,CRMSTANDARD,d17b27af-3f49-4822-99f9-56a661538792,MDM_SALES_COLLABORATION,3413916e-ee66-4071-be30-6f94d4adfeda,MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY
Microsoft Dynamics CRM Online,CRMSTANDARD,d17b27af-3f49-4822-99f9-56a661538792,NBPROFESSIONALFORCRM,3e58e97c-9abe-ebab-cd5f-d543d1529634,MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY
Microsoft Dynamics CRM Online,CRMSTANDARD,d17b27af-3f49-4822-99f9-56a661538792,POWERAPPS_DYN_APPS,874fc546-6efe-4d22-90b8-5c4e7aa59f4b,POWERAPPS FOR DYNAMICS 365
+Microsoft Entra ID Governance,Microsoft_Entra_ID_Governance,cf6b0d46-4093-4546-a0ab-0b1546dcc10e,Entra_Identity_Governance,e866a266-3cff-43a3-acca-0c90a7e00c8b,Entra Identity Governance
Microsoft Fabric (Free),POWER_BI_STANDARD,a403ebcc-fae0-4ca2-8c8c-7a907fd6c235,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft Fabric (Free),POWER_BI_STANDARD,a403ebcc-fae0-4ca2-8c8c-7a907fd6c235,BI_AZURE_P0,2049e525-b859-401b-b2a0-e0a31c4b1fe4,Power BI (free)
Microsoft Fabric (Free) for faculty,POWER_BI_STANDARD_FACULTY,ade29b5f-397e-4eb9-a287-0344bd46c68d,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,EXCHANGE_S_FOUNDATION
@@ -3187,6 +3231,10 @@ Microsoft Stream Plan 2,STREAM_P2,ec156933-b85b-4c50-84ec-c9e5603709ef,EXCHANGE_
Microsoft Stream Plan 2,STREAM_P2,ec156933-b85b-4c50-84ec-c9e5603709ef,STREAM_P2,d3a458d0-f10d-48c2-9e44-86f3f684029e,Microsoft Stream Plan 2
Microsoft Stream Storage Add-On (500 GB),STREAM_STORAGE,9bd7c846-9556-4453-a542-191d527209e8,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft Stream Storage Add-On (500 GB),STREAM_STORAGE,9bd7c846-9556-4453-a542-191d527209e8,STREAM_STORAGE,83bced11-77ce-4071-95bd-240133796768,Microsoft Stream Storage Add-On
+Microsoft Sustainability Manager USL Essentials,Microsoft_Cloud_for_Sustainability_USL,ece037b4-a52b-4cf8-93ea-649e5d83767a,MCS_BizApps_Cloud_for_Sustainability_USL,c46c42af-d654-4385-8c85-29a84f3dfb22,MCS - BizApps - Cloud for Sustainability USL
+Microsoft Sustainability Manager USL Essentials,Microsoft_Cloud_for_Sustainability_USL,ece037b4-a52b-4cf8-93ea-649e5d83767a,POWER_APPS_FOR_MCS_USL,5ffd371c-037a-41a2-98a3-6452f8c5de17,Power Apps for Cloud for Sustainability USL
+Microsoft Sustainability Manager USL Essentials,Microsoft_Cloud_for_Sustainability_USL,ece037b4-a52b-4cf8-93ea-649e5d83767a,POWER_AUTOMATE_FOR_MCS_USL,ccbe468e-7973-442c-8ec4-5fbe16438711,Power Automate for Cloud for Sustainability USL
+Microsoft Sustainability Manager USL Essentials,Microsoft_Cloud_for_Sustainability_USL,ece037b4-a52b-4cf8-93ea-649e5d83767a,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Microsoft Teams Audio Conferencing with dial-out to USA/CAN,Microsoft_Teams_Audio_Conferencing_select_dial_out,1c27243e-fb4d-42b1-ae8c-fe25c9616588,MCOMEETBASIC,9974d6cf-cd24-4ba2-921c-e2aa687da846,Microsoft Teams Audio Conferencing with dial-out to select geographies
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,EXCHANGE FOUNDATION
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,MCOFREE,617d9209-3b90-4879-96e6-838c42b2701d,MCO FREE FOR MICROSOFT TEAMS (FREE)
@@ -3194,6 +3242,8 @@ Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,TEAMS_FRE
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,SHAREPOINTDESKLESS,902b47e5-dcb2-4fdc-858b-c63a90a2bdb9,SHAREPOINT KIOSK
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,TEAMS_FREE_SERVICE,bd6f2ac2-991a-49f9-b23c-18c96a02c228,TEAMS FREE SERVICE
Microsoft Teams (Free),TEAMS_FREE,16ddbbfc-09ea-4de2-b1d7-312db6112d70,WHITEBOARD_FIRSTLINE1,36b29273-c6d0-477a-aca6-6fbe24f538e3,WHITEBOARD (FIRSTLINE)
+Microsoft Teams Calling Plan pay-as-you-go (country zone 1 - US),Microsoft_Teams_Calling_Plan_pay_as_you_go_(country_zone_1_US),9b196e97-5830-4c2e-adc2-1e10ebf5dee5,MCOPSTN_PAYG_1,156a1efe-17cd-4b03-9f17-2eb512298fb3,Microsoft Teams Calling Plan pay-as-you-go - country zone 1
+Microsoft Teams Domestic Calling Plan (240 min),MCOPSTN_6,729dbb8f-8d56-4994-8e33-2f218f549544,MCOPSTN6,346d83bf-6fe6-42ca-b424-b9300d2e21bf,Microsoft 365 Domestic Calling Plan (240 min)
Microsoft Teams Essentials,Teams_Ess,fde42873-30b6-436b-b361-21af5a6b84ae,TeamsEss,f4f2f6de-6830-442b-a433-e92249faebe2,Microsoft Teams Essentials
Microsoft Teams Essentials (AAD Identity),TEAMS_ESSENTIALS_AAD,3ab6abff-666f-4424-bfb7-f0bc274ec7bc,EXCHANGE_S_DESKLESS,4a82b400-a79f-41a4-b4e2-e94f5787b113,Exchange Online Kiosk
Microsoft Teams Essentials (AAD Identity),TEAMS_ESSENTIALS_AAD,3ab6abff-666f-4424-bfb7-f0bc274ec7bc,FORMS_PLAN_E1,159f4cd6-e380-449f-a816-af1a9ef76344,Microsoft Forms (Plan E1)
@@ -3755,27 +3805,29 @@ Office 365 E2,STANDARDWOFFPACK,6634e0ce-1a9f-428c-a498-f84ec7b8aa2e,STREAM_O365_
Office 365 E2,STANDARDWOFFPACK,6634e0ce-1a9f-428c-a498-f84ec7b8aa2e,SWAY,a23b959c-7ce8-4e57-9140-b90eb88a9e97,SWAY
Office 365 E2,STANDARDWOFFPACK,6634e0ce-1a9f-428c-a498-f84ec7b8aa2e,TEAMS1,57ff2da0-773e-42df-b2af-ffb7a2317929,TEAMS1
Office 365 E2,STANDARDWOFFPACK,6634e0ce-1a9f-428c-a498-f84ec7b8aa2e,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,YAMMER_ENTERPRISE
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,DYN365_CDS_O365_P2,4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14,Common Data Service - O365 P2
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams_P2
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MESH_AVATARS_FOR_TEAMS,dcf9d2f4-772e-4434-b757-77a453cfbc02,Avatars for Teams
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MESH_AVATARS_ADDITIONAL_FOR_TEAMS,3efbd4ed-8958-4824-8389-1321f8730af8,Avatars for Teams (additional)
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Azure Rights Management
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,Bing_Chat_Enterprise,0d0c0d31-fae7-41f2-b909-eaf4d7f26dba,Commercial data protection for Microsoft Copilot
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics - Standard
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MESH_IMMERSIVE_FOR_TEAMS,f0ff6ac6-297d-49cd-be34-6dfef97f0c28,Immersive spaces for Teams
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MIP_S_CLP1,5136a095-5cf0-4aff-bec3-e84448b38ea5,Information Protection for Office 365 - Standard
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MYANALYTICS_P2,33c4f319-9bdd-48d6-9c4d-410b750a4a5a,Insights by MyAnalytics
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,OFFICESUBSCRIPTION,43de0ff5-c92c-492b-9116-175376d08c38,Microsoft 365 Apps for enterprise
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,RMS_S_ENTERPRISE,bea4c11e-220a-4e6d-8eb8-8ea15d019f90,Microsoft Microsoft Entra Rights
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,OFFICESUBSCRIPTION,43de0ff5-c92c-492b-9116-175376d08c38,Microsoft 365 Apps for Enterprise
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,M365_LIGHTHOUSE_CUSTOMER_PLAN1,6f23d6a9-adbf-481c-8538-b4c095654487,Microsoft 365 Lighthouse (Plan 1)
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MICROSOFTBOOKINGS,199a5c09-e0ca-4e37-8f7c-b05d533e1ea2,Microsoft Bookings
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,FORMS_PLAN_E3,2789c901-c14e-48ab-a76a-be334d9d793a,Microsoft Forms (Plan E3)
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,KAIZALA_O365_P3,aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1,Microsoft Kaizala Pro Plan 3
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,KAIZALA_O365_P3,aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1,Microsoft Kaizala Pro
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,PROJECTWORKMANAGEMENT,b737dad2-2f6c-4c65-90e3-ca563267e8b9,Microsoft Planner
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MICROSOFT_SEARCH,94065c59-bc8e-4e8b-89e5-5138d471eaff,Microsoft Search
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,Deskless,8c7d2df8-86f0-4902-b2ed-a0458298f3b3,Microsoft StaffHub
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,STREAM_O365_E3,9e700747-8b1d-45e5-ab8d-ef187ceec156,Microsoft Stream for O365 E3 SKU
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,STREAM_O365_E3,9e700747-8b1d-45e5-ab8d-ef187ceec156,Microsoft Stream for Office 365 E3
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,TEAMS1,57ff2da0-773e-42df-b2af-ffb7a2317929,Microsoft Teams
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,INTUNE_O365,882e1d05-acd1-4ccb-8708-6ee03664b117,Mobile Device Management for Office 365
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,SHAREPOINTWAC,e95bec33-7c88-4a70-8e19-b10bd9d0c014,Office for the web
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,POWERAPPS_O365_P2,c68f8d98-5534-41c8-bf36-22fa496fa792,Power Apps for Office 365
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
-Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365 P2
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,Nucleus,db4d623d-b514-490b-b7ef-8885eee514de,Nucleus
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,SHAREPOINTWAC,e95bec33-7c88-4a70-8e19-b10bd9d0c014,Office for the Web
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,PROJECT_O365_P2,31b4e2fc-4cd6-4e7d-9c1b-41407303bd66,Project for Office (Plan E3)
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,SHAREPOINTENTERPRISE,5dbe027f-2339-4123-9542-606e4d348a72,SharePoint (Plan 2)
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,MCOSTANDARD,0feaeb32-d00e-4d66-bd5a-43b5b83db82c,Skype for Business Online (Plan 2)
@@ -3785,6 +3837,10 @@ Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,VIVAENGAGE_COR
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,VIVA_LEARNING_SEEDED,b76fb638-6ba6-402a-b9f9-83d28acb3d86,Viva Learning Seeded
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,WHITEBOARD_PLAN2,94a54592-cd8b-425e-87c6-97868b000b91,Whiteboard (Plan 2)
Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,YAMMER_ENTERPRISE,7547a3fe-08ee-4ccb-b430-5077c5041653,Yammer Enterprise
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,DYN365_CDS_O365_P2,4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14,Common Data Service
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,POWERAPPS_O365_P2,c68f8d98-5534-41c8-bf36-22fa496fa792,Power Apps for Office 365
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,FLOW_O365_P2,76846ad7-7776-4c40-a281-a386362dd1b9,Power Automate for Office 365
+Office 365 E3,ENTERPRISEPACK,6fd2c87f-b296-42f0-b197-1e91e994b900,POWER_VIRTUAL_AGENTS_O365_P2,041fe683-03e4-45b6-b1af-c0cdc516daee,Power Virtual Agents for Office 365
Office 365 E3 EEA (no Teams),O365_w/o_Teams_Bundle_E3,d711d25a-a21c-492f-bd19-aae1e8ebaf30,CDS_O365_P2,95b76021-6a53-4741-ab8b-1d1f3d66a95a,Common Data Service for Teams
Office 365 E3 EEA (no Teams),O365_w/o_Teams_Bundle_E3,d711d25a-a21c-492f-bd19-aae1e8ebaf30,EXCHANGE_S_ENTERPRISE,efb87545-963c-4e0d-99df-69c6916d9eb0,Exchange Online (Plan 2)
Office 365 E3 EEA (no Teams),O365_w/o_Teams_Bundle_E3,d711d25a-a21c-492f-bd19-aae1e8ebaf30,ContentExplorer_Standard,2b815d45-56e4-4e3a-b65c-66cb9175b560,Information Protection and Governance Analytics � Standard
@@ -4435,6 +4491,11 @@ Power Apps per app plan for Government,POWERAPPS_PER_APP_GCC,8623b2d7-5e24-4281-
Power Apps per app plan for Government,POWERAPPS_PER_APP_GCC,8623b2d7-5e24-4281-b6b7-086a5f3b0b1c,CDS_PER_APP_GCC,d7f9c9bc-0a28-4da4-b5f1-731acb27a3e4,CDS PowerApps per app plan for GCC
Power Apps per app plan for Government,POWERAPPS_PER_APP_GCC,8623b2d7-5e24-4281-b6b7-086a5f3b0b1c,POWERAPPS_PER_APP_GCC,be6e5cba-3661-424c-b79a-6d95fa1d849a,Power Apps per App Plan for Government
Power Apps per app plan for Government,POWERAPPS_PER_APP_GCC,8623b2d7-5e24-4281-b6b7-086a5f3b0b1c,Flow_Per_APP_GCC,8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9,Power Automate for Power Apps per App Plan for Government
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,Power_Pages_Internal_User,60bf28f9-2b70-4522-96f7-335f5e06c941,Power Pages Internal User
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,CDS_ POWERAPPS_PER_USER_CUSTOM,2e8dde43-6986-479d-b179-7dbe31c31f60,CDS Power Apps Per User Custom
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,POWERAPPS_PER_USER,ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86,Power Apps per User Plan
+Power Apps Per User BD Only,POWERAPPS_PER_USER_BD_ONLY,2ced8a00-3ed1-4295-ab7c-57170ff28e58,Flow_PowerApps_PerUser,dc789ed8-0170-4b65-a415-eb77d5bb350a,Power Automate for Power Apps per User Plan
Power Apps per user plan,POWERAPPS_PER_USER,b30411f5-fea1-4a59-9ad9-3db7c7ead579,DYN365_CDS_P2,6ea4c1ef-c259-46df-bce2-943342cd3cb2,Common Data Service - P2
Power Apps per user plan,POWERAPPS_PER_USER,b30411f5-fea1-4a59-9ad9-3db7c7ead579,EXCHANGE_S_FOUNDATION,113feb6c-3fe4-4440-bddc-54d774bf0318,Exchange Foundation
Power Apps per user plan,POWERAPPS_PER_USER,b30411f5-fea1-4a59-9ad9-3db7c7ead579,POWERAPPS_PER_USER,ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86,Power Apps per User Plan
@@ -4785,8 +4846,17 @@ Skype for Business PSTN Domestic and International Calling,MCOPSTN2,d3b4fe1f-999
Skype for Business PSTN Domestic Calling,MCOPSTN1,0dab259f-bf13-4952-b7f8-7db8f131b28d,MCOPSTN1,4ed3ff63-69d7-4fb7-b984-5aec7f605ca8,DOMESTIC CALLING PLAN
Skype for Business PSTN Domestic Calling (120 Minutes),MCOPSTN5,54a152dc-90de-4996-93d2-bc47e670fc06,MCOPSTN5,54a152dc-90de-4996-93d2-bc47e670fc06,DOMESTIC CALLING PLAN
Skype for Business PSTN Usage Calling Plan,MCOPSTNPP,06b48c5f-01d9-4b18-9015-03b52040f51a,MCOPSTN3,6b340437-d6f9-4dc5-8cc2-99163f7f83d6,MCOPSTN3
+Teams Phone Mobile,Operator_Connect_Mobile,b84d58c9-0a0d-46cf-8a4b-d9f23c1674d5,MCOFMC1,cb22fbd7-ed7d-4786-a27a-e4cd617b69c0,Teams Phone Mobile
Teams Phone with Calling Plan,MCOTEAMS_ESSENTIALS,ae2343d1-0999-43f6-ae18-d816516f6e78,MCOPSTN1,4ed3ff63-69d7-4fb7-b984-5aec7f605ca8,Microsoft 365 Domestic Calling Plan
Teams Phone with Calling Plan,MCOTEAMS_ESSENTIALS,ae2343d1-0999-43f6-ae18-d816516f6e78,MCOEV,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,Microsoft 365 Phone System
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,MICROSOFT_ECDN,85704d55-2e73-47ee-93b4-4b8ea14db92b,Microsoft eCDN
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,MESH_IMMERSIVE,acbca54f-c771-423b-a476-6d7a98cbbcec,Microsoft Mesh
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_MGMT,0504111f-feb8-4a3c-992a-70280f9a2869,Microsoft Teams Premium Intelligent
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_CUST,cc8c0802-a325-43df-8cba-995d0c6cb373,Microsoft Teams Premium Personalized
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_PROTECTION,f8b44f54-18bb-46a3-9658-44ab58712968,Microsoft Teams Premium Secure
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_VIRTUALAPPT,9104f592-f2a7-4f77-904c-ca5a5715883f,Microsoft Teams Premium Virtual Appointment
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,MCO_VIRTUAL_APPT,711413d0-b36e-4cd4-93db-0a50a4ab7ea3,Microsoft Teams Premium Virtual Appointments
+Teams Premium (for Departments),Teams_Premium_(for_Departments),52ea0e27-ae73-4983-a08f-13561ebdb823,TEAMSPRO_WEBINAR,78b58230-ec7e-4309-913c-93a45cc4735b,Microsoft Teams Premium Webinar
Teams Rooms Premium,MTR_PREM,4fb214cb-a430-4a91-9c91-4976763aa78f,MMR_P1,bdaa59a3-74fd-4137-981a-31d4f84eb8a0,Meeting Room Managed Services
Teams Rooms Premium,MTR_PREM,4fb214cb-a430-4a91-9c91-4976763aa78f,MCOMEETADV,3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40,Microsoft 365 Audio Conferencing
Teams Rooms Premium,MTR_PREM,4fb214cb-a430-4a91-9c91-4976763aa78f,MCOEV,4828c8ec-dc2e-4779-b502-87ac9ce28ab7,Microsoft 365 Phone System
@@ -4823,6 +4893,7 @@ Visio Plan 2 for Faculty,VISIOCLIENT_FACULTY,bf95fd32-576a-4742-8d7a-6dc4940b953
Visio Plan 2 for Faculty,VISIOCLIENT_FACULTY,bf95fd32-576a-4742-8d7a-6dc4940b9532,ONEDRIVE_BASIC,da792a53-cbc0-4184-a10d-e544dd34b3c1,OneDrive for Business (Basic)
Visio Plan 2 for Faculty,VISIOCLIENT_FACULTY,bf95fd32-576a-4742-8d7a-6dc4940b9532,VISIO_CLIENT_SUBSCRIPTION,663a804f-1c30-4ff0-9915-9db84f0d1cea,Visio Desktop App
Visio Plan 2 for Faculty,VISIOCLIENT_FACULTY,bf95fd32-576a-4742-8d7a-6dc4940b9532,VISIOONLINE,2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f,Visio Web App
+Viva Goals User-led,Viva_Goals_User_led,3a349c99-ffec-43d2-a2e8-6b97fcb71103,Viva_Goals_Premium,b44c6eaf-5c9f-478c-8f16-8cea26353bfb,Viva Goals
Viva Topics,TOPIC_EXPERIENCES,4016f256-b063-4864-816e-d818aad600c9,GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP,b74d57b2-58e9-484a-9731-aeccbba954f0,Graph Connectors Search with Index (Viva Topics)
Viva Topics,TOPIC_EXPERIENCES,4016f256-b063-4864-816e-d818aad600c9,CORTEX,c815c93d-0759-4bb8-b857-bc921a71be83,Viva Topics
Windows 10/11 Enterprise E5 (Original),WIN_ENT_E5,1e7e1070-8ccb-4aca-b470-d7cb538cb07e,DATAVERSE_FOR_POWERAUTOMATE_DESKTOP,59231cdf-b40d-4534-a93e-14d0cd31d27e,Dataverse for PAD
diff --git a/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneExtensionScheduler.ps1 b/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneExtensionScheduler.ps1
index 02ac73202eb6..bdc8a35137c7 100644
--- a/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneExtensionScheduler.ps1
+++ b/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneExtensionScheduler.ps1
@@ -49,7 +49,7 @@ function Invoke-NinjaOneExtensionScheduler {
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
}
@@ -95,7 +95,7 @@ function Invoke-NinjaOneExtensionScheduler {
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
}
diff --git a/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneOrgMapping.ps1 b/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneOrgMapping.ps1
index f351d43ee039..3f3faeccef0e 100644
--- a/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneOrgMapping.ps1
+++ b/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneOrgMapping.ps1
@@ -114,7 +114,7 @@ function Invoke-NinjaOneOrgMapping {
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
}
}
diff --git a/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneSync.ps1 b/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneSync.ps1
index df7d6f67111a..26e372124a99 100644
--- a/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneSync.ps1
+++ b/Modules/CippExtensions/NinjaOne/Invoke-NinjaOneSync.ps1
@@ -25,7 +25,7 @@ function Invoke-NinjaOneSync {
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
}
diff --git a/Modules/CippExtensions/NinjaOne/Set-NinjaOneOrgMapping.ps1 b/Modules/CippExtensions/NinjaOne/Set-NinjaOneOrgMapping.ps1
index 67f9e10dfb03..ee09580b94bf 100644
--- a/Modules/CippExtensions/NinjaOne/Set-NinjaOneOrgMapping.ps1
+++ b/Modules/CippExtensions/NinjaOne/Set-NinjaOneOrgMapping.ps1
@@ -6,7 +6,9 @@ function Set-NinjaOneOrgMapping {
$Request
)
-
+ Get-CIPPAzDataTableEntity @CIPPMapping -Filter "PartitionKey eq 'NinjaOrgsMapping'" | ForEach-Object {
+ Remove-AzDataTableEntity @CIPPMapping -Entity $_
+ }
foreach ($Mapping in ([pscustomobject]$Request.body.mappings).psobject.properties) {
$AddObject = @{
PartitionKey = 'NinjaOrgsMapping'
@@ -17,7 +19,7 @@ function Set-NinjaOneOrgMapping {
Add-AzDataTableEntity @CIPPMapping -Entity $AddObject -Force
Write-LogMessage -API $APINAME -user $request.headers.'x-ms-client-principal' -message "Added mapping for $($mapping.name)." -Sev 'Info'
}
- $Result = [pscustomobject]@{'Results' = "Successfully edited mapping table." }
+ $Result = [pscustomobject]@{'Results' = 'Successfully edited mapping table.' }
Return $Result
}
\ No newline at end of file
diff --git a/Modules/CippExtensions/Private/Set-HaloMapping.ps1 b/Modules/CippExtensions/Private/Set-HaloMapping.ps1
index 14180d14d294..527bbc94fd22 100644
--- a/Modules/CippExtensions/Private/Set-HaloMapping.ps1
+++ b/Modules/CippExtensions/Private/Set-HaloMapping.ps1
@@ -5,7 +5,9 @@ function Set-HaloMapping {
$APIName,
$Request
)
-
+ Get-CIPPAzDataTableEntity @CIPPMapping -Filter "PartitionKey eq 'Mapping'" | ForEach-Object {
+ Remove-AzDataTableEntity @CIPPMapping -Entity $_
+ }
foreach ($Mapping in ([pscustomobject]$Request.body.mappings).psobject.properties) {
$AddObject = @{
PartitionKey = 'Mapping'
@@ -18,7 +20,7 @@ function Set-HaloMapping {
Write-LogMessage -API $APINAME -user $request.headers.'x-ms-client-principal' -message "Added mapping for $($mapping.name)." -Sev 'Info'
}
- $Result = [pscustomobject]@{'Results' = "Successfully edited mapping table." }
+ $Result = [pscustomobject]@{'Results' = 'Successfully edited mapping table.' }
Return $Result
}
\ No newline at end of file
diff --git a/Scheduler_GetQueue/run.ps1 b/Scheduler_GetQueue/run.ps1
index 6d0553001e1e..4aac0455307e 100644
--- a/Scheduler_GetQueue/run.ps1
+++ b/Scheduler_GetQueue/run.ps1
@@ -39,6 +39,6 @@ $InputObject = [PSCustomObject]@{
Batch = @($Batch)
}
#Write-Host ($InputObject | ConvertTo-Json)
-$InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+$InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started orchestration with ID = '$InstanceId'"
#$Orchestrator = New-OrchestrationCheckStatusResponse -Request $Request -InstanceId $InstanceId
\ No newline at end of file
diff --git a/Scheduler_GetWebhooks/run.ps1 b/Scheduler_GetWebhooks/run.ps1
index b55b57d1f05c..3eb4aaae42fd 100644
--- a/Scheduler_GetWebhooks/run.ps1
+++ b/Scheduler_GetWebhooks/run.ps1
@@ -18,7 +18,7 @@ try {
SkipLog = $true
}
Write-Host ($InputObject | ConvertTo-Json -Depth 5)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started orchestration with ID = '$InstanceId'"
} catch {
Write-LogMessage -API 'Webhooks' -message 'Error processing webhooks' -sev Error -LogData (Get-CippException -Exception $_)
diff --git a/Scheduler_UserTasks/run.ps1 b/Scheduler_UserTasks/run.ps1
index 2585ee499be6..b5d5cdd874ca 100644
--- a/Scheduler_UserTasks/run.ps1
+++ b/Scheduler_UserTasks/run.ps1
@@ -63,7 +63,7 @@ if (($Batch | Measure-Object).Count -gt 0) {
SkipLog = $true
}
#Write-Host ($InputObject | ConvertTo-Json -Depth 10)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 10)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 10 -Compress)
Write-Host "Started orchestration with ID = '$InstanceId'"
}
\ No newline at end of file
diff --git a/UpdatePermissions/run.ps1 b/UpdatePermissions/run.ps1
index 77290175242e..84f10e0cbce3 100644
--- a/UpdatePermissions/run.ps1
+++ b/UpdatePermissions/run.ps1
@@ -10,7 +10,7 @@ try {
Batch = @($Tenants)
}
#Write-Host ($InputObject | ConvertTo-Json)
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5)
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress)
Write-Host "Started permissions orchestration with ID = '$InstanceId'"
}
} catch {}
\ No newline at end of file
diff --git a/bin/Azure.Core.dll b/bin/Azure.Core.dll
new file mode 100644
index 000000000000..229788545a57
Binary files /dev/null and b/bin/Azure.Core.dll differ
diff --git a/bin/Azure.Data.Tables.dll b/bin/Azure.Data.Tables.dll
new file mode 100644
index 000000000000..ae549629d430
Binary files /dev/null and b/bin/Azure.Data.Tables.dll differ
diff --git a/bin/Azure.Identity.dll b/bin/Azure.Identity.dll
new file mode 100644
index 000000000000..fe75e5461be6
Binary files /dev/null and b/bin/Azure.Identity.dll differ
diff --git a/bin/Azure.Storage.Blobs.dll b/bin/Azure.Storage.Blobs.dll
new file mode 100644
index 000000000000..7f7b739d0203
Binary files /dev/null and b/bin/Azure.Storage.Blobs.dll differ
diff --git a/bin/Azure.Storage.Common.dll b/bin/Azure.Storage.Common.dll
new file mode 100644
index 000000000000..70cd1b2ddf8e
Binary files /dev/null and b/bin/Azure.Storage.Common.dll differ
diff --git a/bin/Azure.Storage.Queues.dll b/bin/Azure.Storage.Queues.dll
new file mode 100644
index 000000000000..c43f1ae38533
Binary files /dev/null and b/bin/Azure.Storage.Queues.dll differ
diff --git a/bin/Castle.Core.dll b/bin/Castle.Core.dll
new file mode 100644
index 000000000000..9ca9548a744f
Binary files /dev/null and b/bin/Castle.Core.dll differ
diff --git a/bin/DurableTask.ApplicationInsights.dll b/bin/DurableTask.ApplicationInsights.dll
new file mode 100644
index 000000000000..10c2cbc82d3e
Binary files /dev/null and b/bin/DurableTask.ApplicationInsights.dll differ
diff --git a/bin/DurableTask.AzureStorage.dll b/bin/DurableTask.AzureStorage.dll
new file mode 100644
index 000000000000..58abdf9714b3
Binary files /dev/null and b/bin/DurableTask.AzureStorage.dll differ
diff --git a/bin/DurableTask.Core.dll b/bin/DurableTask.Core.dll
new file mode 100644
index 000000000000..2dce75205caa
Binary files /dev/null and b/bin/DurableTask.Core.dll differ
diff --git a/bin/Google.Protobuf.dll b/bin/Google.Protobuf.dll
new file mode 100644
index 000000000000..0e52e7199d66
Binary files /dev/null and b/bin/Google.Protobuf.dll differ
diff --git a/bin/Grpc.Core.Api.dll b/bin/Grpc.Core.Api.dll
new file mode 100644
index 000000000000..bf90aea2e053
Binary files /dev/null and b/bin/Grpc.Core.Api.dll differ
diff --git a/bin/Grpc.Core.dll b/bin/Grpc.Core.dll
new file mode 100644
index 000000000000..019af046bb75
Binary files /dev/null and b/bin/Grpc.Core.dll differ
diff --git a/bin/Microsoft.ApplicationInsights.dll b/bin/Microsoft.ApplicationInsights.dll
new file mode 100644
index 000000000000..0cbaf18efc4b
Binary files /dev/null and b/bin/Microsoft.ApplicationInsights.dll differ
diff --git a/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll b/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll
new file mode 100644
index 000000000000..5ca9acdad05d
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Authentication.Core.dll b/bin/Microsoft.AspNetCore.Authentication.Core.dll
new file mode 100644
index 000000000000..484ad0d1616d
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Authentication.Core.dll differ
diff --git a/bin/Microsoft.AspNetCore.Authorization.Policy.dll b/bin/Microsoft.AspNetCore.Authorization.Policy.dll
new file mode 100644
index 000000000000..d63f6cbe3dd0
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Authorization.Policy.dll differ
diff --git a/bin/Microsoft.AspNetCore.Authorization.dll b/bin/Microsoft.AspNetCore.Authorization.dll
new file mode 100644
index 000000000000..83bf39d662bb
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Authorization.dll differ
diff --git a/bin/Microsoft.AspNetCore.Connections.Abstractions.dll b/bin/Microsoft.AspNetCore.Connections.Abstractions.dll
new file mode 100644
index 000000000000..acd88bec8e86
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Connections.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll b/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll
new file mode 100644
index 000000000000..2fa7ecb37619
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
new file mode 100644
index 000000000000..26922584f4b8
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Hosting.dll b/bin/Microsoft.AspNetCore.Hosting.dll
new file mode 100644
index 000000000000..781589269f30
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Hosting.dll differ
diff --git a/bin/Microsoft.AspNetCore.Http.Abstractions.dll b/bin/Microsoft.AspNetCore.Http.Abstractions.dll
new file mode 100644
index 000000000000..c8177821b76c
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Http.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Http.Extensions.dll b/bin/Microsoft.AspNetCore.Http.Extensions.dll
new file mode 100644
index 000000000000..3dfb5e0d9e31
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Http.Extensions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Http.Features.dll b/bin/Microsoft.AspNetCore.Http.Features.dll
new file mode 100644
index 000000000000..c5f6f866063a
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Http.Features.dll differ
diff --git a/bin/Microsoft.AspNetCore.Http.dll b/bin/Microsoft.AspNetCore.Http.dll
new file mode 100644
index 000000000000..c2c59cff508f
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Http.dll differ
diff --git a/bin/Microsoft.AspNetCore.JsonPatch.dll b/bin/Microsoft.AspNetCore.JsonPatch.dll
new file mode 100644
index 000000000000..2ddd11386e33
Binary files /dev/null and b/bin/Microsoft.AspNetCore.JsonPatch.dll differ
diff --git a/bin/Microsoft.AspNetCore.Mvc.Abstractions.dll b/bin/Microsoft.AspNetCore.Mvc.Abstractions.dll
new file mode 100644
index 000000000000..f05a157a8ef6
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Mvc.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Mvc.Core.dll b/bin/Microsoft.AspNetCore.Mvc.Core.dll
new file mode 100644
index 000000000000..7c64bf1d9247
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Mvc.Core.dll differ
diff --git a/bin/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/bin/Microsoft.AspNetCore.Mvc.Formatters.Json.dll
new file mode 100644
index 000000000000..7abeb96f0989
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ
diff --git a/bin/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll b/bin/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll
new file mode 100644
index 000000000000..dd1d8bf8b5ce
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll differ
diff --git a/bin/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/bin/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll
new file mode 100644
index 000000000000..9ff80bf49ec3
Binary files /dev/null and b/bin/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Routing.Abstractions.dll b/bin/Microsoft.AspNetCore.Routing.Abstractions.dll
new file mode 100644
index 000000000000..458cdd3be041
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Routing.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Routing.dll b/bin/Microsoft.AspNetCore.Routing.dll
new file mode 100644
index 000000000000..8e3ab2d4a704
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Routing.dll differ
diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.Core.dll
new file mode 100644
index 000000000000..f91b85d1e4c0
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ
diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.Https.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.Https.dll
new file mode 100644
index 000000000000..6f232b22da72
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Server.Kestrel.Https.dll differ
diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll
new file mode 100644
index 000000000000..049899c4d03e
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll differ
diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
new file mode 100644
index 000000000000..6a3040996662
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ
diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.dll
new file mode 100644
index 000000000000..320471ee3b56
Binary files /dev/null and b/bin/Microsoft.AspNetCore.Server.Kestrel.dll differ
diff --git a/bin/Microsoft.AspNetCore.WebUtilities.dll b/bin/Microsoft.AspNetCore.WebUtilities.dll
new file mode 100644
index 000000000000..dc1e804ce611
Binary files /dev/null and b/bin/Microsoft.AspNetCore.WebUtilities.dll differ
diff --git a/bin/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll b/bin/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll
new file mode 100644
index 000000000000..fba97a87b065
Binary files /dev/null and b/bin/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll differ
diff --git a/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll b/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll
new file mode 100644
index 000000000000..2b936b30a95e
Binary files /dev/null and b/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll differ
diff --git a/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll b/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll
new file mode 100644
index 000000000000..a566f59248e6
Binary files /dev/null and b/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll differ
diff --git a/bin/Microsoft.Azure.WebJobs.Host.dll b/bin/Microsoft.Azure.WebJobs.Host.dll
new file mode 100644
index 000000000000..cda12d37b141
Binary files /dev/null and b/bin/Microsoft.Azure.WebJobs.Host.dll differ
diff --git a/bin/Microsoft.Azure.WebJobs.dll b/bin/Microsoft.Azure.WebJobs.dll
new file mode 100644
index 000000000000..548543d1e651
Binary files /dev/null and b/bin/Microsoft.Azure.WebJobs.dll differ
diff --git a/bin/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Microsoft.Bcl.AsyncInterfaces.dll
new file mode 100644
index 000000000000..fe6ba4c549bc
Binary files /dev/null and b/bin/Microsoft.Bcl.AsyncInterfaces.dll differ
diff --git a/bin/Microsoft.Build.Framework.dll b/bin/Microsoft.Build.Framework.dll
new file mode 100644
index 000000000000..e4c7030fe0b5
Binary files /dev/null and b/bin/Microsoft.Build.Framework.dll differ
diff --git a/bin/Microsoft.Build.Utilities.Core.dll b/bin/Microsoft.Build.Utilities.Core.dll
new file mode 100644
index 000000000000..6a4455e0203b
Binary files /dev/null and b/bin/Microsoft.Build.Utilities.Core.dll differ
diff --git a/bin/Microsoft.DotNet.PlatformAbstractions.dll b/bin/Microsoft.DotNet.PlatformAbstractions.dll
new file mode 100644
index 000000000000..7d12a4323383
Binary files /dev/null and b/bin/Microsoft.DotNet.PlatformAbstractions.dll differ
diff --git a/bin/Microsoft.DurableTask.Sidecar.Protobuf.dll b/bin/Microsoft.DurableTask.Sidecar.Protobuf.dll
new file mode 100644
index 000000000000..f5b1af4875c9
Binary files /dev/null and b/bin/Microsoft.DurableTask.Sidecar.Protobuf.dll differ
diff --git a/bin/Microsoft.Extensions.Azure.dll b/bin/Microsoft.Extensions.Azure.dll
new file mode 100644
index 000000000000..7696f68c1464
Binary files /dev/null and b/bin/Microsoft.Extensions.Azure.dll differ
diff --git a/bin/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 000000000000..540e09431e0e
Binary files /dev/null and b/bin/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/bin/Microsoft.Extensions.Configuration.Binder.dll b/bin/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 000000000000..f05e2d84be06
Binary files /dev/null and b/bin/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
new file mode 100644
index 000000000000..e482d42a60f4
Binary files /dev/null and b/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ
diff --git a/bin/Microsoft.Extensions.Configuration.FileExtensions.dll b/bin/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 000000000000..15126f98d3b7
Binary files /dev/null and b/bin/Microsoft.Extensions.Configuration.FileExtensions.dll differ
diff --git a/bin/Microsoft.Extensions.Configuration.Json.dll b/bin/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 000000000000..89ec1307d245
Binary files /dev/null and b/bin/Microsoft.Extensions.Configuration.Json.dll differ
diff --git a/bin/Microsoft.Extensions.Configuration.dll b/bin/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 000000000000..50f78a0afdea
Binary files /dev/null and b/bin/Microsoft.Extensions.Configuration.dll differ
diff --git a/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 000000000000..be10eccde271
Binary files /dev/null and b/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/bin/Microsoft.Extensions.DependencyInjection.dll b/bin/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 000000000000..7fa7c1f3ff5b
Binary files /dev/null and b/bin/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/bin/Microsoft.Extensions.DependencyModel.dll b/bin/Microsoft.Extensions.DependencyModel.dll
new file mode 100644
index 000000000000..1f35cfce53f6
Binary files /dev/null and b/bin/Microsoft.Extensions.DependencyModel.dll differ
diff --git a/bin/Microsoft.Extensions.FileProviders.Abstractions.dll b/bin/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 000000000000..bca33155e914
Binary files /dev/null and b/bin/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/bin/Microsoft.Extensions.FileProviders.Physical.dll b/bin/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 000000000000..54c1a83483b6
Binary files /dev/null and b/bin/Microsoft.Extensions.FileProviders.Physical.dll differ
diff --git a/bin/Microsoft.Extensions.FileSystemGlobbing.dll b/bin/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 000000000000..0459c635a4a9
Binary files /dev/null and b/bin/Microsoft.Extensions.FileSystemGlobbing.dll differ
diff --git a/bin/Microsoft.Extensions.Hosting.Abstractions.dll b/bin/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100644
index 000000000000..8f4da6fbdef7
Binary files /dev/null and b/bin/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/bin/Microsoft.Extensions.Hosting.dll b/bin/Microsoft.Extensions.Hosting.dll
new file mode 100644
index 000000000000..c3b2a7dfb676
Binary files /dev/null and b/bin/Microsoft.Extensions.Hosting.dll differ
diff --git a/bin/Microsoft.Extensions.Http.dll b/bin/Microsoft.Extensions.Http.dll
new file mode 100644
index 000000000000..963d8ec6dcf4
Binary files /dev/null and b/bin/Microsoft.Extensions.Http.dll differ
diff --git a/bin/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 000000000000..4e8e3f2b4f41
Binary files /dev/null and b/bin/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/bin/Microsoft.Extensions.Logging.Configuration.dll b/bin/Microsoft.Extensions.Logging.Configuration.dll
new file mode 100644
index 000000000000..ed9105c6a8f5
Binary files /dev/null and b/bin/Microsoft.Extensions.Logging.Configuration.dll differ
diff --git a/bin/Microsoft.Extensions.Logging.dll b/bin/Microsoft.Extensions.Logging.dll
new file mode 100644
index 000000000000..ceb74624042f
Binary files /dev/null and b/bin/Microsoft.Extensions.Logging.dll differ
diff --git a/bin/Microsoft.Extensions.ObjectPool.dll b/bin/Microsoft.Extensions.ObjectPool.dll
new file mode 100644
index 000000000000..5330caf675a0
Binary files /dev/null and b/bin/Microsoft.Extensions.ObjectPool.dll differ
diff --git a/bin/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/bin/Microsoft.Extensions.Options.ConfigurationExtensions.dll
new file mode 100644
index 000000000000..abf32e44c338
Binary files /dev/null and b/bin/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ
diff --git a/bin/Microsoft.Extensions.Options.dll b/bin/Microsoft.Extensions.Options.dll
new file mode 100644
index 000000000000..b4017e0adafb
Binary files /dev/null and b/bin/Microsoft.Extensions.Options.dll differ
diff --git a/bin/Microsoft.Extensions.Primitives.dll b/bin/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 000000000000..62324a7a1b15
Binary files /dev/null and b/bin/Microsoft.Extensions.Primitives.dll differ
diff --git a/bin/Microsoft.Identity.Client.Extensions.Msal.dll b/bin/Microsoft.Identity.Client.Extensions.Msal.dll
new file mode 100644
index 000000000000..6cfc83c5af96
Binary files /dev/null and b/bin/Microsoft.Identity.Client.Extensions.Msal.dll differ
diff --git a/bin/Microsoft.Identity.Client.dll b/bin/Microsoft.Identity.Client.dll
new file mode 100644
index 000000000000..531abde6c79f
Binary files /dev/null and b/bin/Microsoft.Identity.Client.dll differ
diff --git a/bin/Microsoft.IdentityModel.Abstractions.dll b/bin/Microsoft.IdentityModel.Abstractions.dll
new file mode 100644
index 000000000000..96db40f55703
Binary files /dev/null and b/bin/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/bin/Microsoft.Net.Http.Headers.dll b/bin/Microsoft.Net.Http.Headers.dll
new file mode 100644
index 000000000000..01dec16aa5d1
Binary files /dev/null and b/bin/Microsoft.Net.Http.Headers.dll differ
diff --git a/bin/Newtonsoft.Json.Bson.dll b/bin/Newtonsoft.Json.Bson.dll
new file mode 100644
index 000000000000..22d4c123b6a6
Binary files /dev/null and b/bin/Newtonsoft.Json.Bson.dll differ
diff --git a/bin/Newtonsoft.Json.dll b/bin/Newtonsoft.Json.dll
new file mode 100644
index 000000000000..1ffeabe658ac
Binary files /dev/null and b/bin/Newtonsoft.Json.dll differ
diff --git a/bin/System.ClientModel.dll b/bin/System.ClientModel.dll
new file mode 100644
index 000000000000..1363faf66562
Binary files /dev/null and b/bin/System.ClientModel.dll differ
diff --git a/bin/System.Diagnostics.DiagnosticSource.dll b/bin/System.Diagnostics.DiagnosticSource.dll
new file mode 100644
index 000000000000..aacf2c145fa0
Binary files /dev/null and b/bin/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/bin/System.Diagnostics.EventLog.dll b/bin/System.Diagnostics.EventLog.dll
new file mode 100644
index 000000000000..cf314541d1e7
Binary files /dev/null and b/bin/System.Diagnostics.EventLog.dll differ
diff --git a/bin/System.IO.FileSystem.AccessControl.dll b/bin/System.IO.FileSystem.AccessControl.dll
new file mode 100644
index 000000000000..27a8fdf76830
Binary files /dev/null and b/bin/System.IO.FileSystem.AccessControl.dll differ
diff --git a/bin/System.IO.Hashing.dll b/bin/System.IO.Hashing.dll
new file mode 100644
index 000000000000..122d5973b18b
Binary files /dev/null and b/bin/System.IO.Hashing.dll differ
diff --git a/bin/System.IO.Pipelines.dll b/bin/System.IO.Pipelines.dll
new file mode 100644
index 000000000000..673612e971d9
Binary files /dev/null and b/bin/System.IO.Pipelines.dll differ
diff --git a/bin/System.Linq.Async.dll b/bin/System.Linq.Async.dll
new file mode 100644
index 000000000000..f0309faac6fa
Binary files /dev/null and b/bin/System.Linq.Async.dll differ
diff --git a/bin/System.Memory.Data.dll b/bin/System.Memory.Data.dll
new file mode 100644
index 000000000000..6f2a3e0ad07f
Binary files /dev/null and b/bin/System.Memory.Data.dll differ
diff --git a/bin/System.Net.Http.Formatting.dll b/bin/System.Net.Http.Formatting.dll
new file mode 100644
index 000000000000..a394052732fc
Binary files /dev/null and b/bin/System.Net.Http.Formatting.dll differ
diff --git a/bin/System.Reactive.Core.dll b/bin/System.Reactive.Core.dll
new file mode 100644
index 000000000000..a3b43b6279c4
Binary files /dev/null and b/bin/System.Reactive.Core.dll differ
diff --git a/bin/System.Reactive.Interfaces.dll b/bin/System.Reactive.Interfaces.dll
new file mode 100644
index 000000000000..690f6d2344cc
Binary files /dev/null and b/bin/System.Reactive.Interfaces.dll differ
diff --git a/bin/System.Reactive.Linq.dll b/bin/System.Reactive.Linq.dll
new file mode 100644
index 000000000000..9d91f71eb09c
Binary files /dev/null and b/bin/System.Reactive.Linq.dll differ
diff --git a/bin/System.Reactive.PlatformServices.dll b/bin/System.Reactive.PlatformServices.dll
new file mode 100644
index 000000000000..4ded127379bd
Binary files /dev/null and b/bin/System.Reactive.PlatformServices.dll differ
diff --git a/bin/System.Reactive.Providers.dll b/bin/System.Reactive.Providers.dll
new file mode 100644
index 000000000000..612587dad973
Binary files /dev/null and b/bin/System.Reactive.Providers.dll differ
diff --git a/bin/System.Reactive.dll b/bin/System.Reactive.dll
new file mode 100644
index 000000000000..abaf211395a6
Binary files /dev/null and b/bin/System.Reactive.dll differ
diff --git a/bin/System.Reactive.xml b/bin/System.Reactive.xml
new file mode 100644
index 000000000000..a637827eae01
--- /dev/null
+++ b/bin/System.Reactive.xml
@@ -0,0 +1,26653 @@
+
+
+
+ System.Reactive
+
+
+
+
+ Class to create an instance from a delegate-based implementation of the method.
+
+ The type of the elements in the sequence.
+
+
+
+ Creates an observable sequence object from the specified subscription function.
+
+ method implementation.
+ is null.
+
+
+
+ Calls the subscription function that was supplied to the constructor.
+
+ Observer to send notifications to.
+ Disposable object representing an observer's subscription to the observable sequence.
+
+
+
+ Class to create an instance from delegate-based implementations of the On* methods.
+
+ The type of the elements in the sequence.
+
+
+
+ Creates an observer from the specified , , and actions.
+
+ Observer's action implementation.
+ Observer's action implementation.
+ Observer's action implementation.
+ or or is null.
+
+
+
+ Creates an observer from the specified action.
+
+ Observer's action implementation.
+ is null.
+
+
+
+ Creates an observer from the specified and actions.
+
+ Observer's action implementation.
+ Observer's action implementation.
+ or is null.
+
+
+
+ Creates an observer from the specified and actions.
+
+ Observer's action implementation.
+ Observer's action implementation.
+ or is null.
+
+
+
+ Calls the action implementing .
+
+ Next element in the sequence.
+
+
+
+ Calls the action implementing .
+
+ The error that has occurred.
+
+
+
+ Calls the action implementing .
+
+
+
+
+ This class fuses logic from ObserverBase, AnonymousObserver, and SafeObserver into one class. When an observer
+ needs to be safeguarded, an instance of this type can be created by SafeObserver.Create when it detects its
+ input is an AnonymousObserver, which is commonly used by end users when using the Subscribe extension methods
+ that accept delegates for the On* handlers. By doing the fusion, we make the call stack depth shorter which
+ helps debugging and some performance.
+
+
+
+
+ Asynchronous lock.
+
+
+
+
+ Queues the action for execution. If the caller acquires the lock and becomes the owner,
+ the queue is processed. If the lock is already owned, the action is queued and will get
+ processed by the owner.
+
+ Action to queue for execution.
+ is null.
+
+
+
+ Queues the action for execution. If the caller acquires the lock and becomes the owner,
+ the queue is processed. If the lock is already owned, the action is queued and will get
+ processed by the owner.
+
+ Action to queue for execution.
+ The state to pass to the action when it gets invoked under the lock.
+ is null.
+ In case TState is a value type, this operation will involve boxing of .
+ However, this is often an improvement over the allocation of a closure object and a delegate.
+
+
+
+ Clears the work items in the queue and drops further work being queued.
+
+
+
+
+ (Infrastructure) Concurrency abstraction layer.
+
+
+
+
+ Gets the current CAL. If no CAL has been set yet, it will be initialized to the default.
+
+
+
+
+ (Infrastructure) Concurrency abstraction layer interface.
+
+
+ This type is used by the Rx infrastructure and not meant for public consumption or implementation.
+ No guarantees are made about forward compatibility of the type's functionality and its usage.
+
+
+
+
+ Queues a method for execution at the specified relative time.
+
+ Method to execute.
+ State to pass to the method.
+ Time to execute the method on.
+ Disposable object that can be used to stop the timer.
+
+
+
+ Queues a method for periodic execution based on the specified period.
+
+ Method to execute; should be safe for reentrancy.
+ Period for running the method periodically.
+ Disposable object that can be used to stop the timer.
+
+
+
+ Queues a method for execution.
+
+ Method to execute.
+ State to pass to the method.
+ Disposable object that can be used to cancel the queued method.
+
+
+
+ Blocking sleep operation.
+
+ Time to sleep.
+
+
+
+ Starts a new stopwatch object.
+
+ New stopwatch object; started at the time of the request.
+
+
+
+ Gets whether long-running scheduling is supported.
+
+
+
+
+ Starts a new long-running thread.
+
+ Method to execute.
+ State to pass to the method.
+
+
+
+ Represents an object that schedules units of work on the current thread.
+
+ Singleton instance of this type exposed through this static property.
+
+
+
+ Gets the singleton instance of the current thread scheduler.
+
+
+
+
+ Gets a value that indicates whether the caller must call a Schedule method.
+
+
+
+
+ Gets a value that indicates whether the caller must call a Schedule method.
+
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Represents an object that schedules units of work on the platform's default scheduler.
+
+ Singleton instance of this type exposed through this static property.
+
+
+
+ Gets the singleton instance of the default scheduler.
+
+
+
+
+ Schedules an action to be executed.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules an action to be executed after dueTime, using a System.Threading.Timer object.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules a periodic piece of work, using a System.Threading.Timer object.
+
+ The type of the state passed to the scheduled action.
+ Initial state passed to the action upon the first iteration.
+ Period for running the work periodically.
+ Action to be executed, potentially updating the state.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+ is less than .
+ is null.
+
+
+
+ Discovers scheduler services by interface type.
+
+ Scheduler service interface type to discover.
+ Object implementing the requested service, if available; null otherwise.
+
+
+
+ Represents an object that schedules units of work on a designated thread.
+
+
+
+
+ Counter for diagnostic purposes, to name the threads.
+
+
+
+
+ Thread factory function.
+
+
+
+
+ Stopwatch for timing free of absolute time dependencies.
+
+
+
+
+ Thread used by the event loop to run work items on. No work should be run on any other thread.
+ If ExitIfEmpty is set, the thread can quit and a new thread will be created when new work is scheduled.
+
+
+
+
+ Gate to protect data structures, including the work queue and the ready list.
+
+
+
+
+ Semaphore to count requests to re-evaluate the queue, from either Schedule requests or when a timer
+ expires and moves on to the next item in the queue.
+
+
+
+
+ Queue holding work items. Protected by the gate.
+
+
+
+
+ Queue holding items that are ready to be run as soon as possible. Protected by the gate.
+
+
+
+
+ Work item that will be scheduled next. Used upon reevaluation of the queue to check whether the next
+ item is still the same. If not, a new timer needs to be started (see below).
+
+
+
+
+ Disposable that always holds the timer to dispatch the first element in the queue.
+
+
+
+
+ Flag indicating whether the event loop should quit. When set, the event should be signaled as well to
+ wake up the event loop thread, which will subsequently abandon all work.
+
+
+
+
+ Creates an object that schedules units of work on a designated thread.
+
+
+
+
+ Creates an object that schedules units of work on a designated thread, using the specified factory to control thread creation options.
+
+ Factory function for thread creation.
+ is null.
+
+
+
+ Indicates whether the event loop thread is allowed to quit when no work is left. If new work
+ is scheduled afterwards, a new event loop thread is created. This property is used by the
+ NewThreadScheduler which uses an event loop for its recursive invocations.
+
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+ The scheduler has been disposed and doesn't accept new work.
+
+
+
+ Schedules a periodic piece of work on the designated thread.
+
+ The type of the state passed to the scheduled action.
+ Initial state passed to the action upon the first iteration.
+ Period for running the work periodically.
+ Action to be executed, potentially updating the state.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+ is null.
+ is less than .
+ The scheduler has been disposed and doesn't accept new work.
+
+
+
+ Starts a new stopwatch object.
+
+ New stopwatch object; started at the time of the request.
+
+
+
+ Ends the thread associated with this scheduler. All remaining work in the scheduler queue is abandoned.
+
+
+
+
+ Ensures there is an event loop thread running. Should be called under the gate.
+
+
+
+
+ Event loop scheduled on the designated event loop thread. The loop is suspended/resumed using the event
+ which gets set by calls to Schedule, the next item timer, or calls to Dispose.
+
+
+
+
+ Base class for historical schedulers, which are virtual time schedulers that use for absolute time and for relative time.
+
+
+
+
+ Creates a new historical scheduler with the minimum value of as the initial clock value.
+
+
+
+
+ Creates a new historical scheduler with the specified initial clock value.
+
+ Initial clock value.
+
+
+
+ Creates a new historical scheduler with the specified initial clock value and absolute time comparer.
+
+ Initial value for the clock.
+ Comparer to determine causality of events based on absolute time.
+
+
+
+ Adds a relative time value to an absolute time value.
+
+ Absolute time value.
+ Relative time value to add.
+ The resulting absolute time sum value.
+
+
+
+ Converts the absolute time value to a value.
+
+ Absolute time value to convert.
+ The corresponding value.
+
+
+
+ Converts the value to a relative time value.
+
+ value to convert.
+ The corresponding relative time value.
+
+
+
+ Provides a virtual time scheduler that uses for absolute time and for relative time.
+
+
+
+
+ Creates a new historical scheduler with the minimum value of as the initial clock value.
+
+
+
+
+ Creates a new historical scheduler with the specified initial clock value.
+
+ Initial value for the clock.
+
+
+
+ Creates a new historical scheduler with the specified initial clock value.
+
+ Initial value for the clock.
+ Comparer to determine causality of events based on absolute time.
+ is null.
+
+
+
+ Gets the next scheduled item to be executed.
+
+ The next scheduled item.
+
+
+
+ Schedules an action to be executed at .
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Absolute time at which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Represents an object that schedules units of work to run immediately on the current thread.
+
+ Singleton instance of this type exposed through this static property.
+
+
+
+ Gets the singleton instance of the immediate scheduler.
+
+
+
+
+ Schedules an action to be executed.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Represents a work item that has been scheduled.
+
+ Absolute time representation type.
+
+
+
+ Gets the absolute time at which the item is due for invocation.
+
+
+
+
+ Invokes the work item.
+
+
+
+
+ Represents an object that schedules units of work.
+
+
+
+
+ Gets the scheduler's notion of current time.
+
+
+
+
+ Schedules an action to be executed.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+
+
+
+ Schedules an action to be executed at dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Absolute time at which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+
+
+
+ Scheduler with support for starting long-running tasks.
+ This type of scheduler can be used to run loops more efficiently instead of using recursive scheduling.
+
+
+
+
+ Schedules a long-running piece of work.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+
+ Notes to implementers
+ The returned disposable object should not prevent the work from starting, but only set the cancellation flag passed to the specified action.
+
+
+
+
+ Scheduler with support for running periodic tasks.
+ This type of scheduler can be used to run timers more efficiently instead of using recursive scheduling.
+
+
+
+
+ Schedules a periodic piece of work.
+
+ The type of the state passed to the scheduled action.
+ Initial state passed to the action upon the first iteration.
+ Period for running the work periodically.
+ Action to be executed, potentially updating the state.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+
+
+
+ Abstraction for a stopwatch to compute time relative to a starting point.
+
+
+
+
+ Gets the time elapsed since the stopwatch object was obtained.
+
+
+
+
+ Provider for objects.
+
+
+
+
+ Starts a new stopwatch object.
+
+ New stopwatch object; started at the time of the request.
+
+
+
+ Abstract base class for machine-local schedulers, using the local system clock for time-based operations.
+
+
+
+
+ Gets the scheduler's notion of current time.
+
+
+
+
+ Schedules an action to be executed.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+
+
+
+ Schedules an action to be executed at dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Absolute time at which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Starts a new stopwatch object.
+
+ New stopwatch object; started at the time of the request.
+
+ Platform-specific scheduler implementations should reimplement
+ to provide a more efficient implementation (if available).
+
+
+
+
+ Discovers scheduler services by interface type. The base class implementation returns
+ requested services for each scheduler interface implemented by the derived class. For
+ more control over service discovery, derived types can override this method.
+
+ Scheduler service interface type to discover.
+ Object implementing the requested service, if available; null otherwise.
+
+
+
+ Gate to protect local scheduler queues.
+
+
+
+
+ Gate to protect queues and to synchronize scheduling decisions and system clock
+ change management.
+
+
+
+
+ Long term work queue. Contains work that's due beyond SHORTTERM, computed at the
+ time of enqueueing.
+
+
+
+
+ Disposable resource for the long term timer that will reevaluate and dispatch the
+ first item in the long term queue. A serial disposable is used to make "dispose
+ current and assign new" logic easier. The disposable itself is never disposed.
+
+
+
+
+ Item at the head of the long term queue for which the current long term timer is
+ running. Used to detect changes in the queue and decide whether we should replace
+ or can continue using the current timer (because no earlier long term work was
+ added to the queue).
+
+
+
+
+ Short term work queue. Contains work that's due soon, computed at the time of
+ enqueueing or upon reevaluation of the long term queue causing migration of work
+ items. This queue is kept in order to be able to relocate short term items back
+ to the long term queue in case a system clock change occurs.
+
+
+
+
+ Set of disposable handles to all of the current short term work Schedule calls,
+ allowing those to be cancelled upon a system clock change.
+
+
+
+
+ Threshold where an item is considered to be short term work or gets moved from
+ long term to short term.
+
+
+
+
+ Maximum error ratio for timer drift. We've seen machines with 10s drift on a
+ daily basis, which is in the order 10E-4, so we allow for extra margin here.
+ This value is used to calculate early arrival for the long term queue timer
+ that will reevaluate work for the short term queue.
+
+ Example: -------------------------------...---------------------*-----$
+ ^ ^
+ | |
+ early due
+ 0.999 1.0
+
+ We also make the gap between early and due at least LONGTOSHORT so we have
+ enough time to transition work to short term and as a courtesy to the
+ destination scheduler to manage its queues etc.
+
+
+
+
+ Minimum threshold for the long term timer to fire before the queue is reevaluated
+ for short term work. This value is chosen to be less than SHORTTERM in order to
+ ensure the timer fires and has work to transition to the short term queue.
+
+
+
+
+ Threshold used to determine when a short term timer has fired too early compared
+ to the absolute due time. This provides a last chance protection against early
+ completion of scheduled work, which can happen in case of time adjustment in the
+ operating system (cf. GetSystemTimeAdjustment).
+
+
+
+
+ Longest interval supported by timers in the BCL.
+
+
+
+
+ Creates a new local scheduler.
+
+
+
+
+ Enqueues absolute time scheduled work in the timer queue or the short term work list.
+
+ State to pass to the action.
+ Absolute time to run the work on. The timer queue is responsible to execute the work close to the specified time, also accounting for system clock changes.
+ Action to run, potentially recursing into the scheduler.
+ Disposable object to prevent the work from running.
+
+
+
+ Schedule work that's due in the short term. This leads to relative scheduling calls to the
+ underlying scheduler for short TimeSpan values. If the system clock changes in the meantime,
+ the short term work is attempted to be cancelled and reevaluated.
+
+ Work item to schedule in the short term. The caller is responsible to determine the work is indeed short term.
+
+
+
+ Callback to process the next short term work item.
+
+ Recursive scheduler supplied by the underlying scheduler.
+ Disposable used to identify the work the timer was triggered for (see code for usage).
+ Empty disposable. Recursive work cancellation is wired through the original WorkItem.
+
+
+
+ Schedule work that's due on the long term. This leads to the work being queued up for
+ eventual transitioning to the short term work list.
+
+ Work item to schedule on the long term. The caller is responsible to determine the work is indeed long term.
+
+
+
+ Updates the long term timer which is responsible to transition work from the head of the
+ long term queue to the short term work list.
+
+ Should be called under the scheduler lock.
+
+
+
+ Evaluates the long term queue, transitioning short term work to the short term list,
+ and adjusting the new long term processing timer accordingly.
+
+
+
+
+ Callback invoked when a system clock change is observed in order to adjust and reevaluate
+ the internal scheduling queues.
+
+ Currently not used.
+ Currently not used.
+
+
+
+ Represents a work item in the absolute time scheduler.
+
+
+ This type is very similar to ScheduledItem, but we need a different Invoke signature to allow customization
+ of the target scheduler (e.g. when called in a recursive scheduling context, see ExecuteNextShortTermWorkItem).
+
+
+
+
+ Represents a work item that closes over scheduler invocation state. Subtyping is
+ used to have a common type for the scheduler queues.
+
+
+
+
+ Represents an object that schedules each unit of work on a separate thread.
+
+
+
+
+ Creates an object that schedules each unit of work on a separate thread.
+
+
+
+
+ Gets an instance of this scheduler that uses the default Thread constructor.
+
+
+
+
+ Creates an object that schedules each unit of work on a separate thread.
+
+ Factory function for thread creation.
+ is null.
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules a long-running task by creating a new thread. Cancellation happens through polling.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules a periodic piece of work by creating a new thread that goes to sleep when work has been dispatched and wakes up again at the next periodic due time.
+
+ The type of the state passed to the scheduled action.
+ Initial state passed to the action upon the first iteration.
+ Period for running the work periodically.
+ Action to be executed, potentially updating the state.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+ is null.
+ is less than .
+
+
+
+ Starts a new stopwatch object.
+
+ New stopwatch object; started at the time of the request.
+
+
+
+ Abstract base class for scheduled work items.
+
+ Absolute time representation type.
+
+
+
+ Creates a new scheduled work item to run at the specified time.
+
+ Absolute time at which the work item has to be executed.
+ Comparer used to compare work items based on their scheduled time.
+ is null.
+
+
+
+ Gets the absolute time at which the item is due for invocation.
+
+
+
+
+ Invokes the work item.
+
+
+
+
+ Implement this method to perform the work item invocation, returning a disposable object for deep cancellation.
+
+ Disposable object used to cancel the work item and/or derived work items.
+
+
+
+ Compares the work item with another work item based on absolute time values.
+
+ Work item to compare the current work item to.
+ Relative ordering between this and the specified work item.
+ The inequality operators are overloaded to provide results consistent with the implementation. Equality operators implement traditional reference equality semantics.
+
+
+
+ Determines whether one specified object is due before a second specified object.
+
+ The first object to compare.
+ The second object to compare.
+ true if the value of left is earlier than the value of right; otherwise, false.
+ This operator provides results consistent with the implementation.
+
+
+
+ Determines whether one specified object is due before or at the same of a second specified object.
+
+ The first object to compare.
+ The second object to compare.
+ true if the value of left is earlier than or simultaneous with the value of right; otherwise, false.
+ This operator provides results consistent with the implementation.
+
+
+
+ Determines whether one specified object is due after a second specified object.
+
+ The first object to compare.
+ The second object to compare.
+ true if the value of left is later than the value of right; otherwise, false.
+ This operator provides results consistent with the implementation.
+
+
+
+ Determines whether one specified object is due after or at the same time of a second specified object.
+
+ The first object to compare.
+ The second object to compare.
+ true if the value of left is later than or simultaneous with the value of right; otherwise, false.
+ This operator provides results consistent with the implementation.
+
+
+
+ Determines whether two specified objects are equal.
+
+ The first object to compare.
+ The second object to compare.
+ true if both are equal; otherwise, false.
+ This operator does not provide results consistent with the IComparable implementation. Instead, it implements reference equality.
+
+
+
+ Determines whether two specified objects are inequal.
+
+ The first object to compare.
+ The second object to compare.
+ true if both are inequal; otherwise, false.
+ This operator does not provide results consistent with the IComparable implementation. Instead, it implements reference equality.
+
+
+
+ Determines whether a object is equal to the specified object.
+
+ The object to compare to the current object.
+ true if the obj parameter is a object and is equal to the current object; otherwise, false.
+
+
+
+ Returns the hash code for the current object.
+
+ A 32-bit signed integer hash code.
+
+
+
+ Cancels the work item by disposing the resource returned by as soon as possible.
+
+
+
+
+ Gets whether the work item has received a cancellation request.
+
+
+
+
+ Represents a scheduled work item based on the materialization of an IScheduler.Schedule method call.
+
+ Absolute time representation type.
+ Type of the state passed to the scheduled action.
+
+
+
+ Creates a materialized work item.
+
+ Recursive scheduler to invoke the scheduled action with.
+ State to pass to the scheduled action.
+ Scheduled action.
+ Time at which to run the scheduled action.
+ Comparer used to compare work items based on their scheduled time.
+ or or is null.
+
+
+
+ Creates a materialized work item.
+
+ Recursive scheduler to invoke the scheduled action with.
+ State to pass to the scheduled action.
+ Scheduled action.
+ Time at which to run the scheduled action.
+ or is null.
+
+
+
+ Invokes the scheduled action with the supplied recursive scheduler and state.
+
+ Cancellation resource returned by the scheduled action.
+
+
+
+ Provides a set of static properties to access commonly used schedulers.
+
+
+
+
+ Yields execution of the current work item on the scheduler to another work item on the scheduler.
+ The caller should await the result of calling Yield to schedule the remainder of the current work item (known as the continuation).
+
+ Scheduler to yield work on.
+ Scheduler operation object to await in order to schedule the continuation.
+ is null.
+
+
+
+ Yields execution of the current work item on the scheduler to another work item on the scheduler.
+ The caller should await the result of calling Yield to schedule the remainder of the current work item (known as the continuation).
+
+ Scheduler to yield work on.
+ Cancellation token to cancel the continuation to run.
+ Scheduler operation object to await in order to schedule the continuation.
+ is null.
+
+
+
+ Suspends execution of the current work item on the scheduler for the specified duration.
+ The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) after the specified duration.
+
+ Scheduler to yield work on.
+ Time when the continuation should run.
+ Scheduler operation object to await in order to schedule the continuation.
+ is null.
+
+
+
+ Suspends execution of the current work item on the scheduler for the specified duration.
+ The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) after the specified duration.
+
+ Scheduler to yield work on.
+ Time when the continuation should run.
+ Cancellation token to cancel the continuation to run.
+ Scheduler operation object to await in order to schedule the continuation.
+ is null.
+
+
+
+ Suspends execution of the current work item on the scheduler until the specified due time.
+ The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) at the specified due time.
+
+ Scheduler to yield work on.
+ Time when the continuation should run.
+ Scheduler operation object to await in order to schedule the continuation.
+ is null.
+
+
+
+ Suspends execution of the current work item on the scheduler until the specified due time.
+ The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) at the specified due time.
+
+ Scheduler to yield work on.
+ Time when the continuation should run.
+ Cancellation token to cancel the continuation to run.
+ Scheduler operation object to await in order to schedule the continuation.
+ is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to schedule work on.
+ State to pass to the asynchronous method.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to schedule work on.
+ State to pass to the asynchronous method.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ Scheduler to schedule work on.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ Scheduler to schedule work on.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to schedule work on.
+ State to pass to the asynchronous method.
+ Relative time after which to execute the action.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to schedule work on.
+ State to pass to the asynchronous method.
+ Relative time after which to execute the action.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ Scheduler to schedule work on.
+ Relative time after which to execute the action.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ Scheduler to schedule work on.
+ Relative time after which to execute the action.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to schedule work on.
+ State to pass to the asynchronous method.
+ Absolute time at which to execute the action.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to schedule work on.
+ State to pass to the asynchronous method.
+ Absolute time at which to execute the action.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ Scheduler to schedule work on.
+ Absolute time at which to execute the action.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style.
+
+ Scheduler to schedule work on.
+ Absolute time at which to execute the action.
+ Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points.
+ Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method.
+ or is null.
+
+
+
+ Gets the current time according to the local machine's system clock.
+
+
+
+
+ Normalizes the specified value to a positive value.
+
+ The value to normalize.
+ The specified TimeSpan value if it is zero or positive; otherwise, .
+
+
+
+ Gets a scheduler that schedules work immediately on the current thread.
+
+
+
+
+ Gets a scheduler that schedules work as soon as possible on the current thread.
+
+
+
+
+ Gets a scheduler that schedules work on the platform's default scheduler.
+
+
+
+
+ Gets a scheduler that schedules work on the thread pool.
+
+
+
+
+ Gets a scheduler that schedules work on a new thread using default thread creation options.
+
+
+
+
+ Gets a scheduler that schedules work on Task Parallel Library (TPL) task pool using the default TaskScheduler.
+
+
+
+
+ Schedules an action to be executed recursively.
+
+ Scheduler to execute the recursive action on.
+ Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed recursively.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to execute the recursive action on.
+ State passed to the action to be executed.
+ Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed recursively after a specified relative due time.
+
+ Scheduler to execute the recursive action on.
+ Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified relative time.
+ Relative time after which to execute the action for the first time.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed recursively after a specified relative due time.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to execute the recursive action on.
+ State passed to the action to be executed.
+ Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state.
+ Relative time after which to execute the action for the first time.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed recursively at a specified absolute due time.
+
+ Scheduler to execute the recursive action on.
+ Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified absolute time.
+ Absolute time at which to execute the action for the first time.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed recursively at a specified absolute due time.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to execute the recursive action on.
+ State passed to the action to be executed.
+ Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state.
+ Absolute time at which to execute the action for the first time.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Returns the implementation of the specified scheduler, or null if no such implementation is available.
+
+ Scheduler to get the implementation for.
+ The scheduler's implementation if available; null otherwise.
+
+ This helper method is made available for query operator authors in order to discover scheduler services by using the required
+ IServiceProvider pattern, which allows for interception or redefinition of scheduler services.
+
+
+
+
+ Returns the implementation of the specified scheduler, or null if no such implementation is available.
+
+ Scheduler to get the implementation for.
+ The scheduler's implementation if available; null otherwise.
+
+
+ This helper method is made available for query operator authors in order to discover scheduler services by using the required
+ IServiceProvider pattern, which allows for interception or redefinition of scheduler services.
+
+
+ Consider using in case a stopwatch is required, but use of emulation stopwatch based
+ on the scheduler's clock is acceptable. Use of this method is recommended for best-effort use of the stopwatch provider
+ scheduler service, where the caller falls back to not using stopwatches if this facility wasn't found.
+
+
+
+
+
+ Returns the implementation of the specified scheduler, or null if no such implementation is available.
+
+ Scheduler to get the implementation for.
+ The scheduler's implementation if available; null otherwise.
+
+
+ This helper method is made available for query operator authors in order to discover scheduler services by using the required
+ IServiceProvider pattern, which allows for interception or redefinition of scheduler services.
+
+
+ Consider using the extension methods for in case periodic scheduling
+ is required and emulation of periodic behavior using other scheduler services is desirable. Use of this method is recommended
+ for best-effort use of the periodic scheduling service, where the caller falls back to not using periodic scheduling if this
+ facility wasn't found.
+
+
+
+
+
+ Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities.
+ If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation.
+ If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage.
+ Otherwise, the periodic task will be emulated using recursive scheduling.
+
+ The type of the state passed to the scheduled action.
+ The scheduler to run periodic work on.
+ Initial state passed to the action upon the first iteration.
+ Period for running the work periodically.
+ Action to be executed, potentially updating the state.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+ or is null.
+ is less than .
+
+
+
+ Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities.
+ If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation.
+ If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage.
+ Otherwise, the periodic task will be emulated using recursive scheduling.
+
+ The type of the state passed to the scheduled action.
+ Scheduler to execute the action on.
+ State passed to the action to be executed.
+ Period for running the work periodically.
+ Action to be executed.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+ or is null.
+ is less than .
+
+
+
+ Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities.
+ If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation.
+ If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage.
+ Otherwise, the periodic task will be emulated using recursive scheduling.
+
+ Scheduler to execute the action on.
+ Period for running the work periodically.
+ Action to be executed.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+ or is null.
+ is less than .
+
+
+
+ Starts a new stopwatch object by dynamically discovering the scheduler's capabilities.
+ If the scheduler provides stopwatch functionality, the request will be forwarded to the stopwatch provider implementation.
+ Otherwise, the stopwatch will be emulated using the scheduler's notion of absolute time.
+
+ Scheduler to obtain a stopwatch for.
+ New stopwatch object; started at the time of the request.
+ is null.
+ The resulting stopwatch object can have non-monotonic behavior.
+
+
+
+ Schedules an action to be executed.
+
+ Scheduler to execute the action on.
+ Action to execute.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed.
+
+ Scheduler to execute the action on.
+ A state object to be passed to .
+ Action to execute.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed.
+
+ Scheduler to execute the action on.
+ A state object to be passed to .
+ Action to execute.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed after the specified relative due time.
+
+ Scheduler to execute the action on.
+ Action to execute.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed after the specified relative due time.
+
+ Scheduler to execute the action on.
+ Action to execute.
+ A state object to be passed to .
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed after the specified relative due time.
+
+ Scheduler to execute the action on.
+ Action to execute.
+ A state object to be passed to .
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed at the specified absolute due time.
+
+ Scheduler to execute the action on.
+ Action to execute.
+ Absolute time at which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed after the specified relative due time.
+
+ Scheduler to execute the action on.
+ Action to execute.
+ A state object to be passed to .
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed after the specified relative due time.
+
+ Scheduler to execute the action on.
+ Action to execute.
+ A state object to be passed to .
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed.
+
+ Scheduler to execute the action on.
+ Action to execute.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Returns a scheduler that represents the original scheduler, without any of its interface-based optimizations (e.g. long running scheduling).
+
+ Scheduler to disable all optimizations for.
+ Proxy to the original scheduler but without any optimizations enabled.
+ is null.
+
+
+
+ Returns a scheduler that represents the original scheduler, without the specified set of interface-based optimizations (e.g. long running scheduling).
+
+ Scheduler to disable the specified optimizations for.
+ Types of the optimization interfaces that have to be disabled.
+ Proxy to the original scheduler but without the specified optimizations enabled.
+ or is null.
+
+
+
+ Returns a scheduler that wraps the original scheduler, adding exception handling for scheduled actions.
+
+ Type of the exception to check for.
+ Scheduler to apply an exception filter for.
+ Handler that's run if an exception is caught. The exception will be rethrown if the handler returns false.
+ Wrapper around the original scheduler, enforcing exception handling.
+ or is null.
+
+
+
+ Represents an awaitable scheduler operation. Awaiting the object causes the continuation to be posted back to the originating scheduler's work queue.
+
+
+
+
+ Controls whether the continuation is run on the originating synchronization context (false by default).
+
+ true to run the continuation on the captured synchronization context; false otherwise (default).
+ Scheduler operation object with configured await behavior.
+
+
+
+ Gets an awaiter for the scheduler operation, used to post back the continuation.
+
+ Awaiter for the scheduler operation.
+
+
+
+ (Infrastructure) Scheduler operation awaiter type used by the code generated for C# await and Visual Basic Await expressions.
+
+
+
+
+ Indicates whether the scheduler operation has completed. Returns false unless cancellation was already requested.
+
+
+
+
+ Completes the scheduler operation, throwing an OperationCanceledException in case cancellation was requested.
+
+
+
+
+ Registers the continuation with the scheduler operation.
+
+ Continuation to be run on the originating scheduler.
+
+
+
+ Efficient scheduler queue that maintains scheduled items sorted by absolute time.
+
+ Absolute time representation type.
+ This type is not thread safe; users should ensure proper synchronization.
+
+
+
+ Creates a new scheduler queue with a default initial capacity.
+
+
+
+
+ Creates a new scheduler queue with the specified initial capacity.
+
+ Initial capacity of the scheduler queue.
+ is less than zero.
+
+
+
+ Gets the number of scheduled items in the scheduler queue.
+
+
+
+
+ Enqueues the specified work item to be scheduled.
+
+ Work item to be scheduled.
+
+
+
+ Removes the specified work item from the scheduler queue.
+
+ Work item to be removed from the scheduler queue.
+ true if the item was found; false otherwise.
+
+
+
+ Dequeues the next work item from the scheduler queue.
+
+ Next work item in the scheduler queue (removed).
+
+
+
+ Peeks the next work item in the scheduler queue.
+
+ Next work item in the scheduler queue (not removed).
+
+
+
+ Provides basic synchronization and scheduling services for observable sequences.
+
+
+
+
+ Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Scheduler to perform subscription and unsubscription actions on.
+ The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler.
+ or is null.
+
+ Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified scheduler.
+ In order to invoke observer callbacks on the specified scheduler, e.g. to offload callback processing to a dedicated thread, use .
+
+
+
+
+ Wraps the source sequence in order to run its subscription and unsubscription logic on the specified synchronization context.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Synchronization context to perform subscription and unsubscription actions on.
+ The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context.
+ or is null.
+
+ Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified synchronization context.
+ In order to invoke observer callbacks on the specified synchronization context, e.g. to post callbacks to a UI thread represented by the synchronization context, use .
+
+
+
+
+ Wraps the source sequence in order to run its observer callbacks on the specified scheduler.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Scheduler to notify observers on.
+ The source sequence whose observations happen on the specified scheduler.
+ or is null.
+
+
+
+ Wraps the source sequence in order to run its observer callbacks on the specified synchronization context.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Synchronization context to notify observers on.
+ The source sequence whose observations happen on the specified synchronization context.
+ or is null.
+
+
+
+ Wraps the source sequence in order to ensure observer callbacks are properly serialized.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ The source sequence whose outgoing calls to observers are synchronized.
+ is null.
+
+
+
+ Wraps the source sequence in order to ensure observer callbacks are synchronized using the specified gate object.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Gate object to synchronize each observer call on.
+ The source sequence whose outgoing calls to observers are synchronized on the given gate object.
+ or is null.
+
+
+
+ The new ObserveOn operator run with an IScheduler in a lock-free manner.
+
+
+
+
+ The new ObserveOn operator run with an ISchedulerLongRunning in a mostly lock-free manner.
+
+
+
+
+ Represents an object that schedules units of work on a provided .
+
+
+
+
+ Creates an object that schedules units of work on the provided .
+
+ Synchronization context to schedule units of work on.
+ is null.
+
+
+
+ Creates an object that schedules units of work on the provided .
+
+ Synchronization context to schedule units of work on.
+ Configures whether scheduling always posts to the synchronization context, regardless whether the caller is on the same synchronization context.
+ is null.
+
+
+
+ Schedules an action to be executed.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Represents an object that schedules units of work on the Task Parallel Library (TPL) task pool.
+
+ Instance of this type using the default TaskScheduler to schedule work on the TPL task pool.
+
+
+
+ Creates an object that schedules units of work using the provided .
+
+ Task factory used to create tasks to run units of work.
+ is null.
+
+
+
+ Gets an instance of this scheduler that uses the default .
+
+
+
+
+ Schedules an action to be executed.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules a long-running task by creating a new task using TaskCreationOptions.LongRunning. Cancellation happens through polling.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Gets a new stopwatch object.
+
+ New stopwatch object; started at the time of the request.
+
+
+
+ Schedules a periodic piece of work by running a platform-specific timer to create tasks periodically.
+
+ The type of the state passed to the scheduled action.
+ Initial state passed to the action upon the first iteration.
+ Period for running the work periodically.
+ Action to be executed, potentially updating the state.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+ is null.
+ is less than .
+
+
+
+ Represents an object that schedules units of work on the CLR thread pool.
+
+ Singleton instance of this type exposed through this static property.
+
+
+
+ Gets the singleton instance of the CLR thread pool scheduler.
+
+
+
+
+ Schedules an action to be executed.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules an action to be executed after dueTime, using a System.Threading.Timer object.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Relative time after which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules a long-running task by creating a new thread. Cancellation happens through polling.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Starts a new stopwatch object.
+
+ New stopwatch object; started at the time of the request.
+
+
+
+ Schedules a periodic piece of work, using a System.Threading.Timer object.
+
+ The type of the state passed to the scheduled action.
+ Initial state passed to the action upon the first iteration.
+ Period for running the work periodically.
+ Action to be executed, potentially updating the state.
+ The disposable object used to cancel the scheduled recurring action (best effort).
+ is null.
+ is less than zero.
+
+
+
+ Base class for virtual time schedulers.
+
+ Absolute time representation type.
+ Relative time representation type.
+
+
+
+ Creates a new virtual time scheduler with the default value of TAbsolute as the initial clock value.
+
+
+
+
+ Creates a new virtual time scheduler with the specified initial clock value and absolute time comparer.
+
+ Initial value for the clock.
+ Comparer to determine causality of events based on absolute time.
+ is null.
+
+
+
+ Adds a relative time value to an absolute time value.
+
+ Absolute time value.
+ Relative time value to add.
+ The resulting absolute time sum value.
+
+
+
+ Converts the absolute time value to a DateTimeOffset value.
+
+ Absolute time value to convert.
+ The corresponding DateTimeOffset value.
+
+
+
+ Converts the TimeSpan value to a relative time value.
+
+ TimeSpan value to convert.
+ The corresponding relative time value.
+
+
+
+ Gets whether the scheduler is enabled to run work.
+
+
+
+
+ Gets the comparer used to compare absolute time values.
+
+
+
+
+ Schedules an action to be executed at dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Absolute time at which to execute the action.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+
+
+
+ Schedules an action to be executed at dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Relative time after which to execute the action.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+
+
+
+ Schedules an action to be executed.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules an action to be executed after dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Relative time after which to execute the action.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Schedules an action to be executed at dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Absolute time at which to execute the action.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Starts the virtual time scheduler.
+
+
+
+
+ Stops the virtual time scheduler.
+
+
+
+
+ Advances the scheduler's clock to the specified time, running all work till that point.
+
+ Absolute time to advance the scheduler's clock to.
+ is in the past.
+ The scheduler is already running. VirtualTimeScheduler doesn't support running nested work dispatch loops. To simulate time slippage while running work on the scheduler, use .
+
+
+
+ Advances the scheduler's clock by the specified relative time, running all work scheduled for that timespan.
+
+ Relative time to advance the scheduler's clock by.
+ is negative.
+ The scheduler is already running. VirtualTimeScheduler doesn't support running nested work dispatch loops. To simulate time slippage while running work on the scheduler, use .
+
+
+
+ Advances the scheduler's clock by the specified relative time.
+
+ Relative time to advance the scheduler's clock by.
+ is negative.
+
+
+
+ Gets the scheduler's absolute time clock value.
+
+
+
+
+ Gets the scheduler's notion of current time.
+
+
+
+
+ Gets the next scheduled item to be executed.
+
+ The next scheduled item.
+
+
+
+ Discovers scheduler services by interface type. The base class implementation supports
+ only the IStopwatchProvider service. To influence service discovery - such as adding
+ support for other scheduler services - derived types can override this method.
+
+ Scheduler service interface type to discover.
+ Object implementing the requested service, if available; null otherwise.
+
+
+
+ Starts a new stopwatch object.
+
+ New stopwatch object; started at the time of the request.
+
+
+
+ Base class for virtual time schedulers using a priority queue for scheduled items.
+
+ Absolute time representation type.
+ Relative time representation type.
+
+
+
+ Creates a new virtual time scheduler with the default value of TAbsolute as the initial clock value.
+
+
+
+
+ Creates a new virtual time scheduler.
+
+ Initial value for the clock.
+ Comparer to determine causality of events based on absolute time.
+ is null.
+
+
+
+ Gets the next scheduled item to be executed.
+
+ The next scheduled item.
+
+
+
+ Schedules an action to be executed at dueTime.
+
+ The type of the state passed to the scheduled action.
+ State passed to the action to be executed.
+ Action to be executed.
+ Absolute time at which to execute the action.
+ The disposable object used to cancel the scheduled action (best effort).
+ is null.
+
+
+
+ Provides a set of extension methods for virtual time scheduling.
+
+
+
+
+ Schedules an action to be executed at .
+
+ Absolute time representation type.
+ Relative time representation type.
+ Scheduler to execute the action on.
+ Relative time after which to execute the action.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ Schedules an action to be executed at .
+
+ Absolute time representation type.
+ Relative time representation type.
+ Scheduler to execute the action on.
+ Absolute time at which to execute the action.
+ Action to be executed.
+ The disposable object used to cancel the scheduled action (best effort).
+ or is null.
+
+
+
+ The System.Reactive.Concurrency namespace contains interfaces and classes that provide the scheduler infrastructure used by Reactive Extensions to construct and
+ process event streams. Schedulers are used to parameterize the concurrency introduced by query operators, provide means to virtualize time, to process historical data,
+ and to write unit tests for functionality built using Reactive Extensions constructs.
+
+
+
+
+ Represents an Action-based disposable.
+
+
+
+
+ Constructs a new disposable with the given action used for disposal.
+
+ Disposal action which will be run upon calling Dispose.
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Calls the disposal action if and only if the current instance hasn't been disposed yet.
+
+
+
+
+ Represents a Action-based disposable that can hold onto some state.
+
+
+
+
+ Constructs a new disposable with the given action used for disposal.
+
+ The state to be passed to the disposal action.
+ Disposal action which will be run upon calling Dispose.
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Calls the disposal action if and only if the current instance hasn't been disposed yet.
+
+
+
+
+ Represents a disposable resource that can be checked for disposal status.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Sets the status to disposed, which can be observer through the property.
+
+
+
+
+ Represents a disposable resource that has an associated that will be set to the cancellation requested state upon disposal.
+
+
+
+
+ Initializes a new instance of the class that uses an existing .
+
+ used for cancellation.
+ is null.
+
+
+
+ Initializes a new instance of the class that uses a new .
+
+
+
+
+ Gets the used by this .
+
+
+
+
+ Cancels the underlying .
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Represents a group of disposable resources that are disposed together.
+
+
+
+
+ Initializes a new instance of the class with no disposables contained by it initially.
+
+
+
+
+ Initializes a new instance of the class with the specified number of disposables.
+
+ The number of disposables that the new CompositeDisposable can initially store.
+ is less than zero.
+
+
+
+ Initializes a new instance of the class from a group of disposables.
+
+ Disposables that will be disposed together.
+ is null.
+ Any of the disposables in the collection is null.
+
+
+
+ Initializes a new instance of the class from a group of disposables.
+
+ Disposables that will be disposed together.
+ is null.
+ Any of the disposables in the collection is null.
+
+
+
+ Initialize the inner disposable list and count fields.
+
+ The enumerable sequence of disposables.
+ The number of items expected from
+
+
+
+ Gets the number of disposables contained in the .
+
+
+
+
+ Adds a disposable to the or disposes the disposable if the is disposed.
+
+ Disposable to add.
+ is null.
+
+
+
+ Removes and disposes the first occurrence of a disposable from the .
+
+ Disposable to remove.
+ true if found; false otherwise.
+ is null.
+
+
+
+ Disposes all disposables in the group and removes them from the group.
+
+
+
+
+ Removes and disposes all disposables from the , but does not dispose the .
+
+
+
+
+ Determines whether the contains a specific disposable.
+
+ Disposable to search for.
+ true if the disposable was found; otherwise, false.
+ is null.
+
+
+
+ Copies the disposables contained in the to an array, starting at a particular array index.
+
+ Array to copy the contained disposables to.
+ Target index at which to copy the first disposable of the group.
+ is null.
+ is less than zero. -or - is larger than or equal to the array length.
+
+
+
+ Always returns false.
+
+
+
+
+ Returns an enumerator that iterates through the .
+
+ An enumerator to iterate over the disposables.
+
+
+
+ Returns an enumerator that iterates through the .
+
+ An enumerator to iterate over the disposables.
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ An empty enumerator for the
+ method to avoid allocation on disposed or empty composites.
+
+
+
+
+ An enumerator for an array of disposables.
+
+
+
+
+ Represents a disposable resource whose disposal invocation will be posted to the specified .
+
+
+
+
+ Initializes a new instance of the class that uses the specified on which to dispose the specified disposable resource.
+
+ Context to perform disposal on.
+ Disposable whose Dispose operation to run on the given synchronization context.
+ or is null.
+
+
+
+ Gets the provided .
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Disposes the underlying disposable on the provided .
+
+
+
+
+ Provides a set of static methods for creating objects.
+
+
+
+
+ Represents a disposable that does nothing on disposal.
+
+
+
+
+ Singleton default disposable.
+
+
+
+
+ Does nothing.
+
+
+
+
+ Gets the disposable that does nothing when disposed.
+
+
+
+
+ Creates a disposable object that invokes the specified action when disposed.
+
+ Action to run during the first call to . The action is guaranteed to be run at most once.
+ The disposable object that runs the given action upon disposal.
+ is null.
+
+
+
+ Creates a disposable object that invokes the specified action when disposed.
+
+ The state to be passed to the action.
+ Action to run during the first call to . The action is guaranteed to be run at most once.
+ The disposable object that runs the given action upon disposal.
+ is null.
+
+
+
+ Gets the value stored in or a null if
+ was already disposed.
+
+
+
+
+ Gets the value stored in or a no-op-Disposable if
+ was already disposed.
+
+
+
+
+ Assigns to .
+
+ true if was assigned to and has not
+ been assigned before.
+ false if has been already disposed.
+ has already been assigned a value.
+
+
+
+ Tries to assign to .
+
+ A value indicating the outcome of the operation.
+
+
+
+ Tries to assign to . If
+ is not disposed and is assigned a different value, it will not be disposed.
+
+ true if was successfully assigned to .
+ false has been disposed.
+
+
+
+ Tries to assign to . If
+ is not disposed and is assigned a different value, it will be disposed.
+
+ true if was successfully assigned to .
+ false has been disposed.
+
+
+
+ Gets a value indicating whether has been disposed.
+
+ true if has been disposed.
+ false if has not been disposed.
+
+
+
+ Tries to dispose .
+
+ true if was not disposed previously and was successfully disposed.
+ false if was disposed previously.
+
+
+
+ Disposable resource with disposal state tracking.
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Represents a disposable resource whose underlying disposable resource can be swapped for another disposable resource.
+
+
+
+
+ Initializes a new instance of the class with no current underlying disposable.
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Gets or sets the underlying disposable. After disposal, the result of getting this property is undefined.
+
+ If the has already been disposed, assignment to this property causes immediate disposal of the given disposable object.
+
+
+
+ Disposes the underlying disposable as well as all future replacements.
+
+
+
+
+ Represents a disposable resource that only disposes its underlying disposable resource when all dependent disposable objects have been disposed.
+
+
+
+
+ Holds the number of active child disposables and the
+ indicator bit (31) if the main _disposable has been marked
+ for disposition.
+
+
+
+
+ Initializes a new instance of the class with the specified disposable.
+
+ Underlying disposable.
+ is null.
+
+
+
+ Initializes a new instance of the class with the specified disposable.
+
+ Underlying disposable.
+ Indicates whether subsequent calls to should throw when this instance is disposed.
+ is null.
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Returns a dependent disposable that when disposed decreases the refcount on the underlying disposable.
+
+ A dependent disposable contributing to the reference count that manages the underlying disposable's lifetime.
+ This instance has been disposed and is configured to throw in this case by .
+
+
+
+ Disposes the underlying disposable only when all dependent disposables have been disposed.
+
+
+
+
+ Represents a disposable resource whose disposal invocation will be scheduled on the specified .
+
+
+
+
+ Initializes a new instance of the class that uses an on which to dispose the disposable.
+
+ Scheduler where the disposable resource will be disposed on.
+ Disposable resource to dispose on the given scheduler.
+ or is null.
+
+
+
+ Gets the scheduler where the disposable resource will be disposed on.
+
+
+
+
+ Gets the underlying disposable. After disposal, the result is undefined.
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Disposes the wrapped disposable on the provided scheduler.
+
+
+
+
+ Represents a disposable resource whose underlying disposable resource can be replaced by another disposable resource, causing automatic disposal of the previous underlying disposable resource.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Gets or sets the underlying disposable.
+
+ If the SerialDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object. Assigning this property disposes the previous disposable object.
+
+
+
+ Disposes the underlying disposable as well as all future replacements.
+
+
+
+
+ Represents a disposable resource which only allows a single assignment of its underlying disposable resource.
+ If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ Gets or sets the underlying disposable. After disposal, the result of getting this property is undefined.
+
+ Thrown if the has already been assigned to.
+
+
+
+ Disposes the underlying disposable.
+
+
+
+
+ Represents a group of disposable resources that are disposed together.
+
+
+
+
+ Creates a new group containing two disposable resources that are disposed together.
+
+ The first disposable resource to add to the group.
+ The second disposable resource to add to the group.
+ Group of disposable resources that are disposed together.
+
+
+
+ Creates a new group of disposable resources that are disposed together.
+
+ Disposable resources to add to the group.
+ Group of disposable resources that are disposed together.
+
+
+
+ Creates a group of disposable resources that are disposed together
+ and without copying or checking for nulls inside the group.
+
+ The array of disposables that is trusted
+ to not contain nulls and gives no need to defensively copy it.
+ Group of disposable resources that are disposed together.
+
+
+
+ Creates a new group of disposable resources that are disposed together.
+
+ Disposable resources to add to the group.
+ Group of disposable resources that are disposed together.
+
+
+
+ Disposes all disposables in the group.
+
+
+
+
+ Gets a value that indicates whether the object is disposed.
+
+
+
+
+ A stable composite that doesn't do defensive copy of
+ the input disposable array nor checks it for null.
+
+
+
+
+ The System.Reactive.Disposables namespace contains interfaces and classes that provide a compositional set of constructs used to deal with resource and subscription
+ management in Reactive Extensions. Those types are used extensively within the implementation of Reactive Extensions and are useful when writing custom query operators or
+ schedulers.
+
+
+
+
+ Provides access to the platform enlightenments used by other Rx libraries to improve system performance and
+ runtime efficiency. While Rx can run without platform enlightenments loaded, it's recommended to deploy the
+ System.Reactive.PlatformServices assembly with your application and call during
+ application startup to ensure enlightenments are properly loaded.
+
+
+
+
+ Ensures that the calling assembly has a reference to the System.Reactive.PlatformServices assembly with
+ platform enlightenments. If no reference is made from the user code, it's possible for the build process
+ to drop the deployment of System.Reactive.PlatformServices, preventing its runtime discovery.
+
+
+ true if the loaded enlightenment provider matches the provided defined in the current assembly; false
+ otherwise. When a custom enlightenment provider is installed by the host, false will be returned.
+
+
+
+
+ (Infrastructure) Provider for platform-specific framework enlightenments.
+
+
+
+
+ (Infrastructure) Tries to gets the specified service.
+
+ Service type.
+ Optional set of arguments.
+ Service instance or null if not found.
+
+
+
+ (Infrastructure) Services to rethrow exceptions.
+
+
+ This type is used by the Rx infrastructure and not meant for public consumption or implementation.
+ No guarantees are made about forward compatibility of the type's functionality and its usage.
+
+
+
+
+ Rethrows the specified exception.
+
+ Exception to rethrow.
+
+
+
+ (Infrastructure) Provides access to the host's lifecycle management services.
+
+
+
+
+ Event that gets raised when the host suspends the application.
+
+
+
+
+ Event that gets raised when the host resumes the application.
+
+
+
+
+ Adds a reference to the host lifecycle manager, causing it to be sending notifications.
+
+
+
+
+ Removes a reference to the host lifecycle manager, causing it to stop sending notifications
+ if the removed reference was the last one.
+
+
+
+
+ (Infrastructure) Provides notifications about the host's lifecycle events.
+
+
+
+
+ Event that gets raised when the host suspends.
+
+
+
+
+ Event that gets raised when the host resumes.
+
+
+
+
+ (Infrastructure) Event arguments for host suspension events.
+
+
+
+
+ (Infrastructure) Event arguments for host resumption events.
+
+
+
+
+ (Infrastructure) Interface for enlightenment providers.
+
+
+ This type is used by the Rx infrastructure and not meant for public consumption or implementation.
+ No guarantees are made about forward compatibility of the type's functionality and its usage.
+
+
+
+
+ (Infrastructure) Tries to gets the specified service.
+
+ Service type.
+ Optional set of arguments.
+ Service instance or null if not found.
+
+
+
+ (Infrastructure) Provider for platform-specific framework enlightenments.
+
+
+ This type is used by the Rx infrastructure and not meant for public consumption or implementation.
+
+
+
+
+ (Infrastructure) Gets the current enlightenment provider. If none is loaded yet, accessing this property triggers provider resolution.
+
+
+ This member is used by the Rx infrastructure and not meant for public consumption or implementation.
+
+
+
+
+ (Infrastructure) Provides access to local system clock services.
+
+
+ This type is used by the Rx infrastructure and not meant for public consumption or implementation.
+ No guarantees are made about forward compatibility of the type's functionality and its usage.
+
+
+
+
+ Gets the local system clock time.
+
+
+
+
+ Adds a reference to the system clock monitor, causing it to be sending notifications.
+
+ Thrown when the system doesn't support sending clock change notifications.
+
+
+
+ Removes a reference to the system clock monitor, causing it to stop sending notifications
+ if the removed reference was the last one.
+
+
+
+
+ (Infrastructure) Provides access to the local system clock.
+
+
+ This type is used by the Rx infrastructure and not meant for public consumption or implementation.
+ No guarantees are made about forward compatibility of the type's functionality and its usage.
+
+
+
+
+ Gets the current time.
+
+
+
+
+ (Infrastructure) Provides a mechanism to notify local schedulers about system clock changes.
+
+
+ This type is used by the Rx infrastructure and not meant for public consumption or implementation.
+ No guarantees are made about forward compatibility of the type's functionality and its usage.
+
+
+
+
+ Event that gets raised when a system clock change is detected.
+
+
+
+
+ (Infrastructure) Event arguments for system clock change notifications.
+
+
+ This type is used by the Rx infrastructure and not meant for public consumption or implementation.
+ No guarantees are made about forward compatibility of the type's functionality and its usage.
+
+
+
+
+ Creates a new system clock notification object with unknown old and new times.
+
+
+
+
+ Creates a new system clock notification object with the specified old and new times.
+
+ Time before the system clock changed, or DateTimeOffset.MinValue if not known.
+ Time after the system clock changed, or DateTimeOffset.MaxValue if not known.
+
+
+
+ Gets the time before the system clock changed, or DateTimeOffset.MinValue if not known.
+
+
+
+
+ Gets the time after the system clock changed, or DateTimeOffset.MaxValue if not known.
+
+
+
+
+ (Infrastructure) Provides access to the local system clock.
+
+
+
+
+ Gets the current time.
+
+
+
+
+ (Infrastructure) Monitors for system clock changes based on a periodic timer.
+
+
+
+
+ Use the Unix milliseconds for the current time
+ so it can be atomically read/written without locking.
+
+
+
+
+ Creates a new monitor for system clock changes with the specified polling frequency.
+
+ Polling frequency for system clock changes.
+
+
+
+ Event that gets raised when a system clock change is detected.
+
+
+
+
+ The System.Reactive.PlatformServices namespace contains interfaces and classes used by the runtime infrastructure of Reactive Extensions.
+ Those are not intended to be used directly from user code and are subject to change in future releases of the product.
+
+
+
+
+ Represents a .NET event invocation consisting of the weakly typed object that raised the event and the data that was generated by the event.
+
+ The type of the event data generated by the event.
+
+
+
+ Creates a new data representation instance of a .NET event invocation with the given sender and event data.
+
+ The sender object that raised the event.
+ The event data that was generated by the event.
+
+
+
+ Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event.
+
+ The type of the sender that raised the event.
+ The type of the event data generated by the event.
+
+
+
+ Creates a new data representation instance of a .NET event invocation with the given sender and event data.
+
+ The sender object that raised the event.
+ The event data that was generated by the event.
+
+
+
+ Gets the sender object that raised the event.
+
+
+
+
+ Gets the event data that was generated by the event.
+
+
+
+
+ Determines whether the current object represents the same event as a specified object.
+
+ An object to compare to the current object.
+ true if both objects represent the same event; otherwise, false.
+
+
+
+ Determines whether the specified System.Object is equal to the current .
+
+ The System.Object to compare with the current .
+ true if the specified System.Object is equal to the current ; otherwise, false.
+
+
+
+ Returns the hash code for the current instance.
+
+ A hash code for the current instance.
+
+
+
+ Determines whether two specified objects represent the same event.
+
+ The first to compare, or null.
+ The second to compare, or null.
+ true if both objects represent the same event; otherwise, false.
+
+
+
+ Determines whether two specified objects represent a different event.
+
+ The first to compare, or null.
+ The second to compare, or null.
+ true if both objects don't represent the same event; otherwise, false.
+
+
+
+ Base class for classes that expose an observable sequence as a well-known event pattern (sender, event arguments).
+ Contains functionality to maintain a map of event handler delegates to observable sequence subscriptions. Subclasses
+ should only add an event with custom add and remove methods calling into the base class's operations.
+
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+
+
+
+ Creates a new event pattern source.
+
+ Source sequence to expose as an event.
+ Delegate used to invoke the event for each element of the sequence.
+ or is null.
+
+
+
+ Adds the specified event handler, causing a subscription to the underlying source.
+
+ Event handler to add. The same delegate should be passed to the operation in order to remove the event handler.
+ Invocation delegate to raise the event in the derived class.
+ or is null.
+
+
+
+ Removes the specified event handler, causing a disposal of the corresponding subscription to the underlying source that was created during the operation.
+
+ Event handler to remove. This should be the same delegate as one that was passed to the operation.
+ is null.
+
+
+
+ Marks the program elements that are experimental. This class cannot be inherited.
+
+
+
+
+ Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event.
+
+
+ The type of the sender that raised the event.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+ The type of the event data generated by the event.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+
+
+ Gets the sender object that raised the event.
+
+
+
+
+ Gets the event data that was generated by the event.
+
+
+
+
+ Represents a data stream signaling its elements by means of an event.
+
+ The type of the event data generated by the event.
+
+
+
+ Event signaling the next element in the data stream.
+
+
+
+
+ Represents a data stream signaling its elements by means of an event.
+
+
+ The type of the event data generated by the event.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+
+
+ Event signaling the next element in the data stream.
+
+
+
+
+ Utility methods to handle lock-free combining of Exceptions
+ as well as hosting a terminal-exception indicator for
+ lock-free termination support.
+
+
+
+
+ The singleton instance of the exception indicating a terminal state,
+ DO NOT LEAK or signal this via OnError!
+
+
+
+
+ Tries to atomically set the Exception on the given field if it is
+ still null.
+
+ The target field to try to set atomically.
+ The exception to set, not null (not verified).
+ True if the operation succeeded, false if the target was not null.
+
+
+
+ Atomically swaps in the Terminated exception into the field and
+ returns the previous exception in that field (which could be the
+ Terminated instance too).
+
+ The target field to terminate.
+ The previous exception in that field before the termination.
+
+
+
+ Atomically sets the field to the given new exception or combines
+ it with any pre-existing exception as a new AggregateException
+ unless the field contains the Terminated instance.
+
+ The field to set or combine with.
+ The exception to combine with.
+ True if successful, false if the field contains the Terminated instance.
+ This type of atomic aggregation helps with operators that
+ want to delay all errors until all of their sources terminate in some way.
+
+
+
+ The class indicating a terminal state as an Exception type.
+
+
+
+
+ Utility methods for dealing with serializing OnXXX signals
+ for an IObserver where concurrent OnNext is still not allowed
+ but concurrent OnError/OnCompleted may happen.
+ This serialization case is generally lower overhead than
+ a full SerializedObserver wrapper and doesn't need
+ allocation.
+
+
+
+
+ Signals the given item to the observer in a serialized fashion
+ allowing a concurrent OnError or OnCompleted emission to be delayed until
+ the observer.OnNext returns.
+ Do not call OnNext from multiple threads as it may lead to ignored items.
+ Use a full SerializedObserver wrapper for merging multiple sequences.
+
+ The element type of the observer.
+ The observer to signal events in a serialized fashion.
+ The item to signal.
+ Indicates there is an emission going on currently.
+ The field containing an error or terminal indicator.
+
+
+
+ Signals the given exception to the observer. If there is a concurrent
+ OnNext emission is happening, saves the exception into the given field
+ otherwise to be picked up by .
+ This method can be called concurrently with itself and the other methods of this
+ helper class but only one terminal signal may actually win.
+
+ The element type of the observer.
+ The observer to signal events in a serialized fashion.
+ The exception to signal sooner or later.
+ Indicates there is an emission going on currently.
+ The field containing an error or terminal indicator.
+
+
+
+ Signals OnCompleted on the observer. If there is a concurrent
+ OnNext emission happening, the error field will host a special
+ terminal exception signal to be picked up by once it finishes with OnNext and signal the
+ OnCompleted as well.
+ This method can be called concurrently with itself and the other methods of this
+ helper class but only one terminal signal may actually win.
+
+ The element type of the observer.
+ The observer to signal events in a serialized fashion.
+ Indicates there is an emission going on currently.
+ The field containing an error or terminal indicator.
+
+
+
+ Base interface for observers that can dispose of a resource on a terminal notification
+ or when disposed itself.
+
+
+
+
+
+ Interface with variance annotation; allows for better type checking when detecting capabilities in SubscribeSafe.
+
+ Type of the resulting sequence's elements.
+
+
+
+ Base class for implementation of query operators, providing performance benefits over the use of Observable.Create.
+
+ Type of the resulting sequence's elements.
+
+
+
+ Publicly visible Subscribe method.
+
+ Observer to send notifications on. The implementation of a producer must ensure the correct message grammar on the observer.
+ IDisposable to cancel the subscription. This causes the underlying sink to be notified of unsubscription, causing it to prevent further messages from being sent to the observer.
+
+
+
+ Core implementation of the query operator, called upon a new subscription to the producer object.
+
+ Observer to send notifications on. The implementation of a producer must ensure the correct message grammar on the observer.
+ Disposable representing all the resources and/or subscriptions the operator uses to process events.
+ The observer passed in to this method is not protected using auto-detach behavior upon an OnError or OnCompleted call. The implementation must ensure proper resource disposal and enforce the message grammar.
+
+
+
+ Publicly visible Subscribe method.
+
+ Observer to send notifications on. The implementation of a producer must ensure the correct message grammar on the observer.
+ IDisposable to cancel the subscription. This causes the underlying sink to be notified of unsubscription, causing it to prevent further messages from being sent to the observer.
+
+
+
+ Core implementation of the query operator, called upon a new subscription to the producer object.
+
+ The sink object.
+
+
+
+ Represents an observable sequence of elements that have a common key.
+
+
+ The type of the key shared by all elements in the group.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+ The type of the elements in the group.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+
+
+ Gets the common key.
+
+
+
+
+ Provides functionality to evaluate queries against a specific data source wherein the type of the data is known.
+
+
+ The type of the data in the data source.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+
+
+ Provides functionality to evaluate queries against a specific data source wherein the type of the data is not specified.
+
+
+
+
+ Gets the type of the element(s) that are returned when the expression tree associated with this instance of IQbservable is executed.
+
+
+
+
+ Gets the expression tree that is associated with the instance of IQbservable.
+
+
+
+
+ Gets the query provider that is associated with this data source.
+
+
+
+
+ Defines methods to create and execute queries that are described by an IQbservable object.
+
+
+
+
+ Constructs an object that can evaluate the query represented by a specified expression tree.
+
+ The type of the elements of the that is returned.
+ Expression tree representing the query.
+ IQbservable object that can evaluate the given query expression.
+
+
+
+ Internal interface describing the LINQ to Events query language.
+
+
+
+
+ Internal interface describing the LINQ to Events query language.
+
+
+
+
+ Attribute applied to static classes providing expression tree forms of query methods,
+ mapping those to the corresponding methods for local query execution on the specified
+ target class type.
+
+
+
+
+ Creates a new mapping to the specified local execution query method implementation type.
+
+ Type with query methods for local execution.
+
+
+
+ Gets the type with the implementation of local query methods.
+
+
+
+
+ Provides a set of static methods for writing in-memory queries over observable sequences.
+
+
+
+
+ Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
+ For aggregation behavior with incremental intermediate results, see .
+
+ The type of the elements in the source sequence.
+ The type of the result of the aggregation.
+ An observable sequence to aggregate over.
+ The initial accumulator value.
+ An accumulator function to be invoked on each element.
+ An observable sequence containing a single element with the final accumulator value.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value,
+ and the specified result selector function is used to select the result value.
+
+ The type of the elements in the source sequence.
+ The type of the accumulator value.
+ The type of the resulting value.
+ An observable sequence to aggregate over.
+ The initial accumulator value.
+ An accumulator function to be invoked on each element.
+ A function to transform the final accumulator value into the result value.
+ An observable sequence containing a single element with the final accumulator value.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence.
+ For aggregation behavior with incremental intermediate results, see .
+
+ The type of the elements in the source sequence and the result of the aggregation.
+ An observable sequence to aggregate over.
+ An accumulator function to be invoked on each element.
+ An observable sequence containing a single element with the final accumulator value.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether all elements of an observable sequence satisfy a condition.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose elements to apply the predicate to.
+ A function to test each element for a condition.
+ An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether an observable sequence contains any elements.
+
+ The type of the elements in the source sequence.
+ An observable sequence to check for non-emptiness.
+ An observable sequence containing a single element determining whether the source sequence contains any elements.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether any element of an observable sequence satisfies a condition.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose elements to apply the predicate to.
+ A function to test each element for a condition.
+ An observable sequence containing a single element determining whether any elements in the source sequence pass the test in the specified predicate.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether an observable sequence contains a specified element by using the default equality comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence in which to locate a value.
+ The value to locate in the source sequence.
+ An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer{T}.
+
+ The type of the elements in the source sequence.
+ An observable sequence in which to locate a value.
+ The value to locate in the source sequence.
+ An equality comparer to compare elements.
+ An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns an observable sequence containing an that represents the total number of elements in an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence that contains elements to be counted.
+ An observable sequence containing a single element with the number of elements in the input sequence.
+ is null.
+ (Asynchronous) The number of elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition.
+
+ The type of the elements in the source sequence.
+ An observable sequence that contains elements to be counted.
+ A function to test each element for a condition.
+ An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the element at a specified index in a sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to return the element from.
+ The zero-based index of the element to retrieve.
+ An observable sequence that produces the element at the specified position in the source sequence.
+ is null.
+ is less than zero.
+ (Asynchronous) is greater than or equal to the number of elements in the source sequence.
+
+
+
+ Returns the element at a specified index in a sequence or a default value if the index is out of range.
+
+ The type of the elements in the source sequence.
+ Observable sequence to return the element from.
+ The zero-based index of the element to retrieve.
+ An observable sequence that produces the element at the specified position in the source sequence, or a default value if the index is outside the bounds of the source sequence.
+ is null.
+ is less than zero.
+
+
+
+ Returns the first element of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the first element in the observable sequence.
+ is null.
+ (Asynchronous) The source sequence is empty.
+
+
+
+ Returns the first element of an observable sequence that satisfies the condition in the predicate.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the first element in the observable sequence that satisfies the condition in the predicate.
+ or is null.
+ (Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+ Returns the first element of an observable sequence, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the first element in the observable sequence, or a default value if no such element exists.
+ is null.
+
+
+
+ Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+ or is null.
+
+
+
+ Determines whether an observable sequence is empty.
+
+ The type of the elements in the source sequence.
+ An observable sequence to check for emptiness.
+ An observable sequence containing a single element determining whether the source sequence is empty.
+ is null.
+
+
+
+ Returns the last element of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the last element in the observable sequence.
+ is null.
+ (Asynchronous) The source sequence is empty.
+
+
+
+ Returns the last element of an observable sequence that satisfies the condition in the predicate.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the last element in the observable sequence that satisfies the condition in the predicate.
+ or is null.
+ (Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+ Returns the last element of an observable sequence, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the last element in the observable sequence, or a default value if no such element exists.
+ is null.
+
+
+
+ Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+ or is null.
+
+
+
+ Returns an observable sequence containing an that represents the total number of elements in an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence that contains elements to be counted.
+ An observable sequence containing a single element with the number of elements in the input sequence.
+ is null.
+ (Asynchronous) The number of elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition.
+
+ The type of the elements in the source sequence.
+ An observable sequence that contains elements to be counted.
+ A function to test each element for a condition.
+ An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum element in an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence to determine the maximum element of.
+ An observable sequence containing a single element with the maximum element in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence to determine the maximum element of.
+ Comparer used to compare elements.
+ An observable sequence containing a single element with the maximum element in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ The type of the objects derived from the elements in the source sequence to determine the maximum of.
+ An observable sequence to determine the minimum element of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ The type of the objects derived from the elements in the source sequence to determine the maximum of.
+ An observable sequence to determine the minimum element of.
+ A transform function to apply to each element.
+ Comparer used to compare elements.
+ An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the elements in an observable sequence with the maximum key value.
+
+ The type of the elements in the source sequence.
+ The type of the key computed for each element in the source sequence.
+ An observable sequence to get the maximum elements for.
+ Key selector function.
+ An observable sequence containing a list of zero or more elements that have a maximum key value.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the elements in an observable sequence with the maximum key value according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ The type of the key computed for each element in the source sequence.
+ An observable sequence to get the maximum elements for.
+ Key selector function.
+ Comparer used to compare key values.
+ An observable sequence containing a list of zero or more elements that have a maximum key value.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum element in an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence to determine the minimum element of.
+ An observable sequence containing a single element with the minimum element in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum element in an observable sequence according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence to determine the minimum element of.
+ Comparer used to compare elements.
+ An observable sequence containing a single element with the minimum element in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ The type of the objects derived from the elements in the source sequence to determine the minimum of.
+ An observable sequence to determine the minimum element of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ The type of the objects derived from the elements in the source sequence to determine the minimum of.
+ An observable sequence to determine the minimum element of.
+ A transform function to apply to each element.
+ Comparer used to compare elements.
+ An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the elements in an observable sequence with the minimum key value.
+
+ The type of the elements in the source sequence.
+ The type of the key computed for each element in the source sequence.
+ An observable sequence to get the minimum elements for.
+ Key selector function.
+ An observable sequence containing a list of zero or more elements that have a minimum key value.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the elements in an observable sequence with the minimum key value according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ The type of the key computed for each element in the source sequence.
+ An observable sequence to get the minimum elements for.
+ Key selector function.
+ Comparer used to compare key values.
+ An observable sequence containing a list of zero or more elements that have a minimum key value.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether two sequences are equal by comparing the elements pairwise.
+
+ The type of the elements in the source sequence.
+ First observable sequence to compare.
+ Second observable sequence to compare.
+ An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer.
+
+ The type of the elements in the source sequence.
+ First observable sequence to compare.
+ Second observable sequence to compare.
+ Comparer used to compare elements of both sequences.
+ An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise.
+
+ The type of the elements in the source sequence.
+ First observable sequence to compare.
+ Second observable sequence to compare.
+ An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise using a specified equality comparer.
+
+ The type of the elements in the source sequence.
+ First observable sequence to compare.
+ Second observable sequence to compare.
+ Comparer used to compare elements of both sequences.
+ An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the only element of an observable sequence, and reports an exception if there is not exactly one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the single element in the observable sequence.
+ is null.
+ (Asynchronous) The source sequence contains more than one element. -or- The source sequence is empty.
+
+
+
+ Returns the only element of an observable sequence that satisfies the condition in the predicate, and reports an exception if there is not exactly one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the single element in the observable sequence that satisfies the condition in the predicate.
+ or is null.
+ (Asynchronous) No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+ Returns the only element of an observable sequence, or a default value if the observable sequence is empty; this method reports an exception if there is more than one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the single element in the observable sequence, or a default value if no such element exists.
+ is null.
+ (Asynchronous) The source sequence contains more than one element.
+
+
+
+ Returns the only element of an observable sequence that matches the predicate, or a default value if no such element exists; this method reports an exception if there is more than one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+ or is null.
+ (Asynchronous) The sequence contains more than one element that satisfies the condition in the predicate.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates an array from an observable sequence.
+
+ The type of the elements in the source sequence.
+ The source observable sequence to get an array of elements for.
+ An observable sequence containing a single element with an array containing all the elements of the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a dictionary from an observable sequence according to a specified key selector function.
+
+ The type of the elements in the source sequence.
+ The type of the dictionary key computed for each element in the source sequence.
+ An observable sequence to create a dictionary for.
+ A function to extract a key from each element.
+ An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer.
+
+ The type of the elements in the source sequence.
+ The type of the dictionary key computed for each element in the source sequence.
+ An observable sequence to create a dictionary for.
+ A function to extract a key from each element.
+ An equality comparer to compare keys.
+ An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function.
+
+ The type of the elements in the source sequence.
+ The type of the dictionary key computed for each element in the source sequence.
+ The type of the dictionary value computed for each element in the source sequence.
+ An observable sequence to create a dictionary for.
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function.
+
+ The type of the elements in the source sequence.
+ The type of the dictionary key computed for each element in the source sequence.
+ The type of the dictionary value computed for each element in the source sequence.
+ An observable sequence to create a dictionary for.
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An equality comparer to compare keys.
+ An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
+ or or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a list from an observable sequence.
+
+ The type of the elements in the source sequence.
+ The source observable sequence to get a list of elements for.
+ An observable sequence containing a single element with a list containing all the elements of the source sequence.
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a lookup from an observable sequence according to a specified key selector function.
+
+ The type of the elements in the source sequence.
+ The type of the lookup key computed for each element in the source sequence.
+ An observable sequence to create a lookup for.
+ A function to extract a key from each element.
+ An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a lookup from an observable sequence according to a specified key selector function, and a comparer.
+
+ The type of the elements in the source sequence.
+ The type of the lookup key computed for each element in the source sequence.
+ An observable sequence to create a lookup for.
+ A function to extract a key from each element.
+ An equality comparer to compare keys.
+ An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function.
+
+ The type of the elements in the source sequence.
+ The type of the lookup key computed for each element in the source sequence.
+ The type of the lookup value computed for each element in the source sequence.
+ An observable sequence to create a lookup for.
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function.
+
+ The type of the elements in the source sequence.
+ The type of the lookup key computed for each element in the source sequence.
+ The type of the lookup value computed for each element in the source sequence.
+ An observable sequence to create a lookup for.
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An equality comparer to compare keys.
+ An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
+ or or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the thirteenth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the thirteenth argument passed to the begin delegate.
+ The type of the fourteenth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the thirteenth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the thirteenth argument passed to the begin delegate.
+ The type of the fourteenth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Invokes the specified function asynchronously, surfacing the result through an observable sequence.
+
+ The type of the result returned by the function.
+ Function to run asynchronously.
+ An observable sequence exposing the function's result value, or an exception.
+ is null.
+
+
+ - The function is called immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the function's result.
+
+
+
+
+
+ Invokes the specified function asynchronously on the specified scheduler, surfacing the result through an observable sequence
+
+ The type of the result returned by the function.
+ Function to run asynchronously.
+ Scheduler to run the function on.
+ An observable sequence exposing the function's result value, or an exception.
+ or is null.
+
+
+ - The function is called immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the function's result.
+
+
+
+
+
+ Invokes the asynchronous function, surfacing the result through an observable sequence.
+
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to run.
+ An observable sequence exposing the function's result value, or an exception.
+ is null.
+
+
+ - The function is started immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the function's result.
+
+
+
+
+
+ Invokes the asynchronous function, surfacing the result through an observable sequence.
+
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to run.
+ Scheduler on which to notify observers.
+ An observable sequence exposing the function's result value, or an exception.
+ is null or is null.
+
+
+ - The function is started immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the function's result.
+
+
+
+
+
+ Invokes the asynchronous function, surfacing the result through an observable sequence.
+ The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
+
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to run.
+ An observable sequence exposing the function's result value, or an exception.
+ is null.
+
+
+ - The function is started immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the function's result.
+ -
+ If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
+ subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
+ Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
+ to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
+ multicast operators.
+
+
+
+
+
+
+ Invokes the asynchronous function, surfacing the result through an observable sequence.
+ The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
+
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to run.
+ Scheduler on which to notify observers.
+ An observable sequence exposing the function's result value, or an exception.
+ is null or is null.
+
+
+ - The function is started immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the function's result.
+ -
+ If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
+ subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
+ Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
+ to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
+ multicast operators.
+
+
+
+
+
+
+ Invokes the action asynchronously, surfacing the result through an observable sequence.
+
+ Action to run asynchronously.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ is null.
+
+
+ - The action is called immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+
+
+
+
+ Invokes the action asynchronously on the specified scheduler, surfacing the result through an observable sequence.
+
+ Action to run asynchronously.
+ Scheduler to run the action on.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ or is null.
+
+
+ - The action is called immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+
+
+
+
+ Invokes the asynchronous action, surfacing the result through an observable sequence.
+
+ Asynchronous action to run.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ is null.
+
+
+ - The action is started immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+
+
+
+
+ Invokes the asynchronous action, surfacing the result through an observable sequence.
+
+ Asynchronous action to run.
+ Scheduler on which to notify observers.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ is null or is null.
+
+
+ - The action is started immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+
+
+
+
+ Invokes the asynchronous action, surfacing the result through an observable sequence.
+ The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
+
+ Asynchronous action to run.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ is null.
+
+
+ - The action is started immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the action's outcome.
+ -
+ If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
+ subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
+ Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
+ to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
+ multicast operators.
+
+
+
+
+
+
+ Invokes the asynchronous action, surfacing the result through an observable sequence.
+ The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
+
+ Asynchronous action to run.
+ Scheduler on which to notify observers.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ is null or is null.
+
+
+ - The action is started immediately, not during the subscription of the resulting sequence.
+ - Multiple subscriptions to the resulting sequence can observe the action's outcome.
+ -
+ If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
+ subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
+ Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
+ to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
+ multicast operators.
+
+
+
+
+
+
+ Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
+
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to convert.
+ An observable sequence exposing the result of invoking the function, or an exception.
+ is null.
+
+
+
+ Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
+
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to convert.
+ Scheduler on which to notify observers.
+ An observable sequence exposing the result of invoking the function, or an exception.
+ is null or is null.
+
+
+
+ Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
+ The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation.
+
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to convert.
+ An observable sequence exposing the result of invoking the function, or an exception.
+ is null.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
+
+
+
+ Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
+ The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation.
+
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to convert.
+ Scheduler on which to notify observers.
+ An observable sequence exposing the result of invoking the function, or an exception.
+ is null or is null.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
+
+
+
+ Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
+
+ Asynchronous action to convert.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ is null.
+
+
+
+ Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
+
+ Asynchronous action to convert.
+ Scheduler on which to notify observers.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ is null or is null.
+
+
+
+ Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
+ The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation.
+
+ Asynchronous action to convert.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
+ is null.
+
+
+
+ Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
+ The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation.
+
+ Asynchronous action to convert.
+ Scheduler on which to notify observers.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
+ is null or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the fifteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the fifteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the fifteenth argument passed to the function.
+ The type of the sixteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the fifteenth argument passed to the function.
+ The type of the sixteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ The type of the fifteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ The type of the fifteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ The type of the fifteenth argument passed to the action.
+ The type of the sixteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ The type of the fifteenth argument passed to the action.
+ The type of the sixteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+ or is null.
+
+
+
+ Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty.
+ This operation subscribes to the observable sequence, making it hot.
+
+ The type of the elements in the source sequence.
+ Source sequence to await.
+ Object that can be awaited.
+ is null.
+
+
+
+ Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty.
+ This operation subscribes and connects to the observable sequence, making it hot.
+
+ The type of the elements in the source sequence.
+ Source sequence to await.
+ Object that can be awaited.
+ is null.
+
+
+
+ Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty.
+ This operation subscribes to the observable sequence, making it hot. The supplied CancellationToken can be used to cancel the subscription.
+
+ The type of the elements in the source sequence.
+ Source sequence to await.
+ Cancellation token.
+ Object that can be awaited.
+ is null.
+
+
+
+ Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty.
+ This operation subscribes and connects to the observable sequence, making it hot. The supplied CancellationToken can be used to cancel the subscription and connection.
+
+ The type of the elements in the source sequence.
+ Source sequence to await.
+ Cancellation token.
+ Object that can be awaited.
+ is null.
+
+
+
+ Multicasts the source sequence notifications through the specified subject to the resulting connectable observable. Upon connection of the
+ connectable observable, the subject is subscribed to the source exactly one, and messages are forwarded to the observers registered with
+ the connectable observable. For specializations with fixed subject types, see Publish, PublishLast, and Replay.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be pushed into the specified subject.
+ Subject to push source elements into.
+ A connectable observable sequence that upon connection causes the source sequence to push results into the specified subject.
+ or is null.
+
+
+
+ Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each
+ subscription to the resulting sequence causes a separate multicast invocation, exposing the sequence resulting from the selector function's
+ invocation. For specializations with fixed subject types, see Publish, PublishLast, and Replay.
+
+ The type of the elements in the source sequence.
+ The type of the elements produced by the intermediate subject.
+ The type of the elements in the result sequence.
+ Source sequence which will be multicasted in the specified selector function.
+ Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function.
+ Selector function which can use the multicasted source sequence subject to the policies enforced by the created subject.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or or is null.
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence.
+ This operator is a specialization of Multicast using a regular .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ is null.
+ Subscribers will receive all notifications of the source from the time of the subscription on.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence.
+ This operator is a specialization of Multicast using a regular .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all notifications of the source from the time of the subscription on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or is null.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Initial value received by observers upon subscription.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ is null.
+ Subscribers will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.
+ Initial value received by observers upon subscription.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or is null.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ is null.
+ Subscribers will only receive the last notification of the source.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will only receive the last notification of the source.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or is null.
+
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+ is null.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The time span that should be waited before possibly unsubscribing from the connectable observable.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+ is null.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The time span that should be waited before possibly unsubscribing from the connectable observable.
+ The scheduler to use for delayed unsubscription.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+ is null.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The minimum number of observers required to subscribe before establishing the connection to the source.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+ is null.
+ is non-positive.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The minimum number of observers required to subscribe before establishing the connection to the source.
+ The time span that should be waited before possibly unsubscribing from the connectable observable.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+ is null.
+ is non-positive.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The minimum number of observers required to subscribe before establishing the connection to the source.
+ The time span that should be waited before possibly unsubscribing from the connectable observable.
+ The scheduler to use for delayed unsubscription.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+ is null.
+ is non-positive.
+
+
+
+ Automatically connect the upstream IConnectableObservable at most once when the
+ specified number of IObservers have subscribed to this IObservable.
+
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The number of observers required to subscribe before the connection to source happens, non-positive value will trigger an immediate subscription.
+ If not null, the connection's IDisposable is provided to it.
+ An observable sequence that connects to the source at most once when the given number of observers have subscribed to it.
+ is null.
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ is null.
+ Subscribers will receive all the notifications of the source.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Scheduler where connected observers will be invoked on.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ or is null.
+ Subscribers will receive all the notifications of the source.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or is null.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source.
+ Scheduler where connected observers within the selector function will be invoked on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or or is null.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Maximum time length of the replay buffer.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ is null.
+ is less than TimeSpan.Zero.
+ Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum time length of the replay buffer.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or is null.
+ is less than TimeSpan.Zero.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Maximum time length of the replay buffer.
+ Scheduler where connected observers will be invoked on.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+ Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum time length of the replay buffer.
+ Scheduler where connected observers within the selector function will be invoked on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or or is null.
+ is less than TimeSpan.Zero.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Maximum element count of the replay buffer.
+ Scheduler where connected observers will be invoked on.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ or is null.
+ is less than zero.
+ Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum element count of the replay buffer.
+ Scheduler where connected observers within the selector function will be invoked on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or or is null.
+ is less than zero.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Maximum element count of the replay buffer.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ is null.
+ is less than zero.
+ Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum element count of the replay buffer.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or is null.
+ is less than zero.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Maximum element count of the replay buffer.
+ Maximum time length of the replay buffer.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ is null.
+ is less than zero.
+ is less than TimeSpan.Zero.
+ Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum element count of the replay buffer.
+ Maximum time length of the replay buffer.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or is null.
+ is less than zero.
+ is less than TimeSpan.Zero.
+
+
+
+
+ Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Maximum element count of the replay buffer.
+ Maximum time length of the replay buffer.
+ Scheduler where connected observers will be invoked on.
+ A connectable observable sequence that shares a single subscription to the underlying sequence.
+ or is null.
+ is less than zero.
+ is less than TimeSpan.Zero.
+ Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum element count of the replay buffer.
+ Maximum time length of the replay buffer.
+ Scheduler where connected observers within the selector function will be invoked on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or or is null.
+ is less than zero.
+ is less than TimeSpan.Zero.
+
+
+
+
+ Produces an enumerable sequence of consecutive (possibly empty) chunks of the source sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The enumerable sequence that returns consecutive (possibly empty) chunks upon each iteration.
+ is null.
+
+
+
+ Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations.
+
+ The type of the elements in the source sequence.
+ The type of the elements produced by the merge operation during collection.
+ Source observable sequence.
+ Factory to create a new collector object.
+ Merges a sequence element with the current collector.
+ The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration.
+ or or is null.
+
+
+
+ Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations.
+
+ The type of the elements in the source sequence.
+ The type of the elements produced by the merge operation during collection.
+ Source observable sequence.
+ Factory to create the initial collector object.
+ Merges a sequence element with the current collector.
+ Factory to replace the current collector by a new collector.
+ The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration.
+ or or or is null.
+
+
+
+ Returns the first element of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The first element in the observable sequence.
+ is null.
+ The source sequence is empty.
+
+
+
+
+ Returns the first element of an observable sequence that satisfies the condition in the predicate.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ The first element in the observable sequence that satisfies the condition in the predicate.
+ or is null.
+ No element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+
+ Returns the first element of an observable sequence, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The first element in the observable sequence, or a default value if no such element exists.
+ is null.
+
+
+
+
+ Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ The first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+ or is null.
+
+
+
+
+ Invokes an action for each element in the observable sequence, and blocks until the sequence is terminated.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ or is null.
+ Because of its blocking nature, this operator is mainly used for testing.
+
+
+
+ Invokes an action for each element in the observable sequence, incorporating the element's index, and blocks until the sequence is terminated.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ or is null.
+ Because of its blocking nature, this operator is mainly used for testing.
+
+
+
+ Returns an enumerator that enumerates all values of the observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence to get an enumerator for.
+ The enumerator that can be used to enumerate over the elements in the observable sequence.
+ is null.
+
+
+
+ Returns the last element of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The last element in the observable sequence.
+ is null.
+ The source sequence is empty.
+
+
+
+
+ Returns the last element of an observable sequence that satisfies the condition in the predicate.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ The last element in the observable sequence that satisfies the condition in the predicate.
+ or is null.
+ No element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+
+ Returns the last element of an observable sequence, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The last element in the observable sequence, or a default value if no such element exists.
+ is null.
+
+
+
+
+ Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ The last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+ or is null.
+
+
+
+
+ Returns an enumerable sequence whose enumeration returns the latest observed element in the source observable sequence.
+ Enumerators on the resulting sequence will never produce the same element repeatedly, and will block until the next element becomes available.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The enumerable sequence that returns the last sampled element upon each iteration and subsequently blocks until the next element in the observable source sequence becomes available.
+
+
+
+ Returns an enumerable sequence whose enumeration returns the most recently observed element in the source observable sequence, using the specified initial value in case no element has been sampled yet.
+ Enumerators on the resulting sequence never block and can produce the same element repeatedly.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Initial value that will be yielded by the enumerable sequence if no element has been sampled yet.
+ The enumerable sequence that returns the last sampled element upon each iteration.
+ is null.
+
+
+
+ Returns an enumerable sequence whose enumeration blocks until the next element in the source observable sequence becomes available.
+ Enumerators on the resulting sequence will block until the next element becomes available.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The enumerable sequence that blocks upon each iteration until the next element in the observable source sequence becomes available.
+ is null.
+
+
+
+ Returns the only element of an observable sequence, and throws an exception if there is not exactly one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The single element in the observable sequence.
+ is null.
+ The source sequence contains more than one element. -or- The source sequence is empty.
+
+
+
+
+ Returns the only element of an observable sequence that satisfies the condition in the predicate, and throws an exception if there is not exactly one element matching the predicate in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ The single element in the observable sequence that satisfies the condition in the predicate.
+ or is null.
+ No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+
+ Returns the only element of an observable sequence, or a default value if the observable sequence is empty; this method throws an exception if there is more than one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The single element in the observable sequence, or a default value if no such element exists.
+ is null.
+ The source sequence contains more than one element.
+
+
+
+
+ Returns the only element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists; this method throws an exception if there is more than one element matching the predicate in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ The single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+ or is null.
+ The sequence contains more than one element that satisfies the condition in the predicate.
+
+
+
+
+ Waits for the observable sequence to complete and returns the last element of the sequence.
+ If the sequence terminates with an OnError notification, the exception is thrown.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The last element in the observable sequence.
+ is null.
+ The source sequence is empty.
+
+
+
+ Wraps the source sequence in order to run its observer callbacks on the specified scheduler.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Scheduler to notify observers on.
+ The source sequence whose observations happen on the specified scheduler.
+ or is null.
+
+ This only invokes observer callbacks on a scheduler. In case the subscription and/or unsubscription actions have side-effects
+ that require to be run on a scheduler, use .
+
+
+
+
+ Wraps the source sequence in order to run its observer callbacks on the specified synchronization context.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Synchronization context to notify observers on.
+ The source sequence whose observations happen on the specified synchronization context.
+ or is null.
+
+ This only invokes observer callbacks on a synchronization context. In case the subscription and/or unsubscription actions have side-effects
+ that require to be run on a synchronization context, use .
+
+
+
+
+ Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. This operation is not commonly used;
+ see the remarks section for more information on the distinction between SubscribeOn and ObserveOn.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Scheduler to perform subscription and unsubscription actions on.
+ The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler.
+ or is null.
+
+ This only performs the side-effects of subscription and unsubscription on the specified scheduler. In order to invoke observer
+ callbacks on a scheduler, use .
+
+
+
+
+ Wraps the source sequence in order to run its subscription and unsubscription logic on the specified synchronization context. This operation is not commonly used;
+ see the remarks section for more information on the distinction between SubscribeOn and ObserveOn.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Synchronization context to perform subscription and unsubscription actions on.
+ The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context.
+ or is null.
+
+ This only performs the side-effects of subscription and unsubscription on the specified synchronization context. In order to invoke observer
+ callbacks on a synchronization context, use .
+
+
+
+
+ Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently.
+ This overload is useful to "fix" an observable sequence that exhibits concurrent callbacks on individual observers, which is invalid behavior for the query processor.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ The source sequence whose outgoing calls to observers are synchronized.
+ is null.
+
+ It's invalid behavior - according to the observer grammar - for a sequence to exhibit concurrent callbacks on a given observer.
+ This operator can be used to "fix" a source that doesn't conform to this rule.
+
+
+
+
+ Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently, using the specified gate object.
+ This overload is useful when writing n-ary query operators, in order to prevent concurrent callbacks from different sources by synchronizing on a common gate object.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Gate object to synchronize each observer call on.
+ The source sequence whose outgoing calls to observers are synchronized on the given gate object.
+ or is null.
+
+
+
+ Subscribes an observer to an enumerable sequence.
+
+ The type of the elements in the source sequence.
+ Enumerable sequence to subscribe to.
+ Observer that will receive notifications from the enumerable sequence.
+ Disposable object that can be used to unsubscribe the observer from the enumerable
+ or is null.
+
+
+
+ Subscribes an observer to an enumerable sequence, using the specified scheduler to run the enumeration loop.
+
+ The type of the elements in the source sequence.
+ Enumerable sequence to subscribe to.
+ Observer that will receive notifications from the enumerable sequence.
+ Scheduler to perform the enumeration on.
+ Disposable object that can be used to unsubscribe the observer from the enumerable
+ or or is null.
+
+
+
+ Converts an observable sequence to an enumerable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence to convert to an enumerable sequence.
+ The enumerable sequence containing the elements in the observable sequence.
+ is null.
+
+
+
+ Exposes an observable sequence as an object with an -based .NET event.
+
+ Observable source sequence.
+ The event source object.
+ is null.
+
+
+
+ Exposes an observable sequence as an object with an -based .NET event.
+
+ The type of the elements in the source sequence.
+ Observable source sequence.
+ The event source object.
+ is null.
+
+
+
+ Exposes an observable sequence as an object with a .NET event, conforming to the standard .NET event pattern.
+
+ The type of the event data generated by the event.
+ Observable source sequence.
+ The event source object.
+ is null.
+
+
+
+ Converts an enumerable sequence to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Enumerable sequence to convert to an observable sequence.
+ The observable sequence whose elements are pulled from the given enumerable sequence.
+ is null.
+
+
+
+ Converts an enumerable sequence to an observable sequence, using the specified scheduler to run the enumeration loop.
+
+ The type of the elements in the source sequence.
+ Enumerable sequence to convert to an observable sequence.
+ Scheduler to run the enumeration of the input sequence on.
+ The observable sequence whose elements are pulled from the given enumerable sequence.
+ or is null.
+
+
+
+ Creates an observable sequence from a specified Subscribe method implementation.
+
+ The type of the elements in the produced sequence.
+ Implementation of the resulting observable sequence's Subscribe method.
+ The observable sequence with the specified implementation for the Subscribe method.
+ is null.
+
+ Use of this operator is preferred over manual implementation of the interface. In case
+ you need a type implementing rather than an anonymous implementation, consider using
+ the abstract base class.
+
+
+
+
+ Creates an observable sequence from a specified Subscribe method implementation.
+
+ The type of the elements in the produced sequence.
+ Implementation of the resulting observable sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
+ The observable sequence with the specified implementation for the Subscribe method.
+ is null.
+
+ Use of this operator is preferred over manual implementation of the interface. In case
+ you need a type implementing rather than an anonymous implementation, consider using
+ the abstract base class.
+
+
+
+
+ Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
+ The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
+
+ The type of the elements in the produced sequence.
+ Asynchronous method used to produce elements.
+ The observable sequence surfacing the elements produced by the asynchronous method.
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
+
+
+
+ Creates an observable sequence from a specified asynchronous Subscribe method.
+
+ The type of the elements in the produced sequence.
+ Asynchronous method used to produce elements.
+ The observable sequence surfacing the elements produced by the asynchronous method.
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
+ The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
+
+ The type of the elements in the produced sequence.
+ Asynchronous method used to implement the resulting sequence's Subscribe method.
+ The observable sequence with the specified implementation for the Subscribe method.
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
+
+
+
+ Creates an observable sequence from a specified asynchronous Subscribe method.
+
+ The type of the elements in the produced sequence.
+ Asynchronous method used to implement the resulting sequence's Subscribe method.
+ The observable sequence with the specified implementation for the Subscribe method.
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
+ The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
+
+ The type of the elements in the produced sequence.
+ Asynchronous method used to implement the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
+ The observable sequence with the specified implementation for the Subscribe method.
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
+
+
+
+ Creates an observable sequence from a specified asynchronous Subscribe method.
+
+ The type of the elements in the produced sequence.
+ Asynchronous method used to implement the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
+ The observable sequence with the specified implementation for the Subscribe method.
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes.
+
+ The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
+ Observable factory function to invoke for each observer that subscribes to the resulting sequence.
+ An observable sequence whose observers trigger an invocation of the given observable factory function.
+ is null.
+
+
+
+ Returns an observable sequence that starts the specified asynchronous factory function whenever a new observer subscribes.
+
+ The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
+ Asynchronous factory function to start for each observer that subscribes to the resulting sequence.
+ An observable sequence whose observers trigger the given asynchronous observable factory function to be started.
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Returns an observable sequence that starts the specified cancellable asynchronous factory function whenever a new observer subscribes.
+ The CancellationToken passed to the asynchronous factory function is tied to the returned disposable subscription, allowing best-effort cancellation.
+
+ The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
+ Asynchronous factory function to start for each observer that subscribes to the resulting sequence.
+ An observable sequence whose observers trigger the given asynchronous observable factory function to be started.
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous observable factory function will be signaled.
+
+
+
+ Returns an empty observable sequence.
+
+ The type used for the type parameter of the resulting sequence.
+ An observable sequence with no elements.
+
+
+
+ Returns an empty observable sequence.
+
+ The type used for the type parameter of the resulting sequence.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ An observable sequence with no elements.
+
+
+
+ Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message.
+
+ The type used for the type parameter of the resulting sequence.
+ Scheduler to send the termination call on.
+ An observable sequence with no elements.
+ is null.
+
+
+
+ Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message.
+
+ The type used for the type parameter of the resulting sequence.
+ Scheduler to send the termination call on.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ An observable sequence with no elements.
+ is null.
+
+
+
+ Generates an observable sequence by running a state-driven loop producing the sequence's elements.
+
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ The generated sequence.
+ or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages.
+
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Scheduler on which to run the generator loop.
+ The generated sequence.
+ or or or is null.
+
+
+
+ Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins).
+
+ The type used for the type parameter of the resulting sequence.
+ An observable sequence whose observers will never get called.
+
+
+
+ Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins).
+
+ The type used for the type parameter of the resulting sequence.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ An observable sequence whose observers will never get called.
+
+
+
+ Generates an observable sequence of integral numbers within a specified range.
+
+ The value of the first integer in the sequence.
+ The number of sequential integers to generate.
+ An observable sequence that contains a range of sequential integral numbers.
+ is less than zero. -or- + - 1 is larger than .
+
+
+
+ Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to send out observer messages.
+
+ The value of the first integer in the sequence.
+ The number of sequential integers to generate.
+ Scheduler to run the generator loop on.
+ An observable sequence that contains a range of sequential integral numbers.
+ is less than zero. -or- + - 1 is larger than .
+ is null.
+
+
+
+ Generates an observable sequence that repeats the given element infinitely.
+
+ The type of the element that will be repeated in the produced sequence.
+ Element to repeat.
+ An observable sequence that repeats the given element infinitely.
+
+
+
+ Generates an observable sequence that repeats the given element infinitely, using the specified scheduler to send out observer messages.
+
+ The type of the element that will be repeated in the produced sequence.
+ Element to repeat.
+ Scheduler to run the producer loop on.
+ An observable sequence that repeats the given element infinitely.
+ is null.
+
+
+
+ Generates an observable sequence that repeats the given element the specified number of times.
+
+ The type of the element that will be repeated in the produced sequence.
+ Element to repeat.
+ Number of times to repeat the element.
+ An observable sequence that repeats the given element the specified number of times.
+ is less than zero.
+
+
+
+ Generates an observable sequence that repeats the given element the specified number of times, using the specified scheduler to send out observer messages.
+
+ The type of the element that will be repeated in the produced sequence.
+ Element to repeat.
+ Number of times to repeat the element.
+ Scheduler to run the producer loop on.
+ An observable sequence that repeats the given element the specified number of times.
+ is less than zero.
+ is null.
+
+
+
+ Returns an observable sequence that contains a single element.
+
+ The type of the element that will be returned in the produced sequence.
+ Single element in the resulting observable sequence.
+ An observable sequence containing the single specified element.
+
+
+
+ Returns an observable sequence that contains a single element, using the specified scheduler to send out observer messages.
+
+ The type of the element that will be returned in the produced sequence.
+ Single element in the resulting observable sequence.
+ Scheduler to send the single element on.
+ An observable sequence containing the single specified element.
+ is null.
+
+
+
+ Returns an observable sequence that terminates with an exception.
+
+ The type used for the type parameter of the resulting sequence.
+ Exception object used for the sequence's termination.
+ The observable sequence that terminates exceptionally with the specified exception object.
+ is null.
+
+
+
+ Returns an observable sequence that terminates with an exception.
+
+ The type used for the type parameter of the resulting sequence.
+ Exception object used for the sequence's termination.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ The observable sequence that terminates exceptionally with the specified exception object.
+ is null.
+
+
+
+ Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message.
+
+ The type used for the type parameter of the resulting sequence.
+ Exception object used for the sequence's termination.
+ Scheduler to send the exceptional termination call on.
+ The observable sequence that terminates exceptionally with the specified exception object.
+ or is null.
+
+
+
+ Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message.
+
+ The type used for the type parameter of the resulting sequence.
+ Exception object used for the sequence's termination.
+ Scheduler to send the exceptional termination call on.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ The observable sequence that terminates exceptionally with the specified exception object.
+ or is null.
+
+
+
+ Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime.
+
+ The type of the elements in the produced sequence.
+ The type of the resource used during the generation of the resulting sequence. Needs to implement .
+ Factory function to obtain a resource object.
+ Factory function to obtain an observable sequence that depends on the obtained resource.
+ An observable sequence whose lifetime controls the lifetime of the dependent resource object.
+ or is null.
+
+
+
+ Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. The resource is obtained and used through asynchronous methods.
+ The CancellationToken passed to the asynchronous methods is tied to the returned disposable subscription, allowing best-effort cancellation at any stage of the resource acquisition or usage.
+
+ The type of the elements in the produced sequence.
+ The type of the resource used during the generation of the resulting sequence. Needs to implement .
+ Asynchronous factory function to obtain a resource object.
+ Asynchronous factory function to obtain an observable sequence that depends on the obtained resource.
+ An observable sequence whose lifetime controls the lifetime of the dependent resource object.
+ or is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous resource factory and observable factory functions will be signaled.
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the event data generated by the event.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the event data generated by the event.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the event data generated by the event.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the event data generated by the event.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+ or or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Invokes an action for each element in the observable sequence, and returns a Task object that will get signaled when the sequence terminates.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Task that signals the termination of the sequence.
+ or is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Invokes an action for each element in the observable sequence, and returns a Task object that will get signaled when the sequence terminates.
+ The loop can be quit prematurely by setting the specified cancellation token.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Cancellation token used to stop the loop.
+ Task that signals the termination of the sequence.
+ or is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Invokes an action for each element in the observable sequence, incorporating the element's index, and returns a Task object that will get signaled when the sequence terminates.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Task that signals the termination of the sequence.
+ or is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Invokes an action for each element in the observable sequence, incorporating the element's index, and returns a Task object that will get signaled when the sequence terminates.
+ The loop can be quit prematurely by setting the specified cancellation token.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Cancellation token used to stop the loop.
+ Task that signals the termination of the sequence.
+ or is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Uses to determine which source in to return, choosing if no match is found.
+
+ The type of the value returned by the selector function, used to look up the resulting source.
+ The type of the elements in the result sequence.
+ Selector function invoked to determine the source to lookup in the dictionary.
+ Dictionary of sources to select from based on the invocation result.
+ Default source to select in case no matching source in is found.
+ The observable sequence retrieved from the dictionary based on the invocation result, or if no match is found.
+ or or is null.
+
+
+
+ Uses to determine which source in to return, choosing an empty sequence on the specified scheduler if no match is found.
+
+ The type of the value returned by the selector function, used to look up the resulting source.
+ The type of the elements in the result sequence.
+ Selector function invoked to determine the source to lookup in the dictionary.
+ Dictionary of sources to select from based on the invocation result.
+ Scheduler to generate an empty sequence on in case no matching source in is found.
+ The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found.
+ or or is null.
+
+
+
+ Uses to determine which source in to return, choosing an empty sequence if no match is found.
+
+ The type of the value returned by the selector function, used to look up the resulting source.
+ The type of the elements in the result sequence.
+ Selector function invoked to determine the source to lookup in the dictionary.
+ Dictionary of sources to select from based on the invocation result.
+ The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found.
+ or is null.
+
+
+
+ Repeats the given as long as the specified holds, where the is evaluated after each repeated completed.
+
+ The type of the elements in the source sequence.
+ Source to repeat as long as the function evaluates to true.
+ Condition that will be evaluated upon the completion of an iteration through the , to determine whether repetition of the source is required.
+ The observable sequence obtained by concatenating the sequence as long as the holds.
+ or is null.
+
+
+
+ Concatenates the observable sequences obtained by running the for each element in the given enumerable .
+
+ The type of the elements in the enumerable source sequence.
+ The type of the elements in the observable result sequence.
+ Enumerable source for which each element will be mapped onto an observable source that will be concatenated in the result sequence.
+ Function to select an observable source for each element in the .
+ The observable sequence obtained by concatenating the sources returned by for each element in the .
+ or is null.
+
+
+
+ If the specified evaluates true, select the sequence. Otherwise, select the sequence.
+
+ The type of the elements in the result sequence.
+ Condition evaluated to decide which sequence to return.
+ Sequence returned in case evaluates true.
+ Sequence returned in case evaluates false.
+ if evaluates true; otherwise.
+ or or is null.
+
+
+
+ If the specified evaluates true, select the sequence. Otherwise, return an empty sequence.
+
+ The type of the elements in the result sequence.
+ Condition evaluated to decide which sequence to return.
+ Sequence returned in case evaluates true.
+ if evaluates true; an empty sequence otherwise.
+ or is null.
+
+
+
+ If the specified evaluates true, select the sequence. Otherwise, return an empty sequence generated on the specified scheduler.
+
+ The type of the elements in the result sequence.
+ Condition evaluated to decide which sequence to return.
+ Sequence returned in case evaluates true.
+ Scheduler to generate an empty sequence on in case evaluates false.
+ if evaluates true; an empty sequence otherwise.
+ or or is null.
+
+
+
+ Repeats the given as long as the specified holds, where the is evaluated before each repeated is subscribed to.
+
+ The type of the elements in the source sequence.
+ Source to repeat as long as the function evaluates to true.
+ Condition that will be evaluated before subscription to the , to determine whether repetition of the source is required.
+ The observable sequence obtained by concatenating the sequence as long as the holds.
+ or is null.
+
+
+
+ Creates a pattern that matches when both observable sequences have an available element.
+
+ The type of the elements in the left sequence.
+ The type of the elements in the right sequence.
+ Observable sequence to match with the right sequence.
+ Observable sequence to match with the left sequence.
+ Pattern object that matches when both observable sequences have an available element.
+ or is null.
+
+
+
+ Matches when the observable sequence has an available element and projects the element by invoking the selector function.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ Observable sequence to apply the selector on.
+ Selector that will be invoked for elements in the source sequence.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ or is null.
+
+
+
+ Joins together the results from several patterns.
+
+ The type of the elements in the result sequence, obtained from the specified patterns.
+ A series of plans created by use of the Then operator on patterns.
+ An observable sequence with the results from matching several patterns.
+ is null.
+
+
+
+ Joins together the results from several patterns.
+
+ The type of the elements in the result sequence, obtained from the specified patterns.
+ A series of plans created by use of the Then operator on patterns.
+ An observable sequence with the results form matching several patterns.
+ is null.
+
+
+
+ Propagates the observable sequence that reacts first.
+
+ The type of the elements in the source sequences.
+ First observable sequence.
+ Second observable sequence.
+ An observable sequence that surfaces either of the given sequences, whichever reacted first.
+ or is null.
+
+
+
+ Propagates the observable sequence that reacts first.
+
+ The type of the elements in the source sequences.
+ Observable sources competing to react first.
+ An observable sequence that surfaces any of the given sequences, whichever reacted first.
+ is null.
+
+
+
+ Propagates the observable sequence that reacts first.
+
+ The type of the elements in the source sequences.
+ Observable sources competing to react first.
+ An observable sequence that surfaces any of the given sequences, whichever reacted first.
+ is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ The type of the elements in the sequences indicating buffer closing events.
+ Source sequence to produce buffers over.
+ A function invoked to define the boundaries of the produced buffers. A new buffer is started when the previous one is closed.
+ An observable sequence of buffers.
+ or is null.
+
+
+
+ Projects each element of an observable sequence into zero or more buffers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ The type of the elements in the sequence indicating buffer opening events, also passed to the closing selector to obtain a sequence of buffer closing events.
+ The type of the elements in the sequences indicating buffer closing events.
+ Source sequence to produce buffers over.
+ Observable sequence whose elements denote the creation of new buffers.
+ A function invoked to define the closing of each produced buffer.
+ An observable sequence of buffers.
+ or or is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ The type of the elements in the sequences indicating buffer boundary events.
+ Source sequence to produce buffers over.
+ Sequence of buffer boundary markers. The current buffer is closed and a new buffer is opened upon receiving a boundary marker.
+ An observable sequence of buffers.
+ or is null.
+
+
+
+ Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler.
+
+ The type of the elements in the source sequence and sequences returned by the exception handler function.
+ The type of the exception to catch and handle. Needs to derive from .
+ Source sequence.
+ Exception handler function, producing another observable sequence.
+ An observable sequence containing the source sequence's elements, followed by the elements produced by the handler's resulting observable sequence in case an exception occurred.
+ or is null.
+
+
+
+ Continues an observable sequence that is terminated by an exception with the next observable sequence.
+
+ The type of the elements in the source sequence and handler sequence.
+ First observable sequence whose exception (if any) is caught.
+ Second observable sequence used to produce results when an error occurred in the first sequence.
+ An observable sequence containing the first sequence's elements, followed by the elements of the second sequence in case an exception occurred.
+ or is null.
+
+
+
+ Continues an observable sequence that is terminated by an exception with the next observable sequence.
+
+ The type of the elements in the source and handler sequences.
+ Observable sequences to catch exceptions for.
+ An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully.
+ is null.
+
+
+
+ Continues an observable sequence that is terminated by an exception with the next observable sequence.
+
+ The type of the elements in the source and handler sequences.
+ Observable sequences to catch exceptions for.
+ An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully.
+ is null.
+
+
+
+ Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Function to invoke whenever either of the sources produces an element.
+ An observable sequence containing the result of combining elements of both sources using the specified result selector function.
+ or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Fifteenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the sixteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Fifteenth observable source.
+ Sixteenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the source sequences.
+ The type of the elements in the result sequence, returned by the selector function.
+ Observable sources.
+ Function to invoke whenever any of the sources produces an element. For efficiency, the input list is reused after the selector returns. Either aggregate or copy the values during the function call.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element.
+
+ The type of the elements in the source sequences, and in the lists in the result sequence.
+ Observable sources.
+ An observable sequence containing lists of the latest elements of the sources.
+ is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element.
+
+ The type of the elements in the source sequences, and in the lists in the result sequence.
+ Observable sources.
+ An observable sequence containing lists of the latest elements of the sources.
+ is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Concatenates the second observable sequence to the first observable sequence upon successful termination of the first.
+
+ The type of the elements in the source sequences.
+ First observable sequence.
+ Second observable sequence.
+ An observable sequence that contains the elements of the first sequence, followed by those of the second the sequence.
+ or is null.
+
+
+
+ Concatenates all of the specified observable sequences, as long as the previous observable sequence terminated successfully.
+
+ The type of the elements in the source sequences.
+ Observable sequences to concatenate.
+ An observable sequence that contains the elements of each given sequence, in sequential order.
+ is null.
+
+
+
+ Concatenates all observable sequences in the given enumerable sequence, as long as the previous observable sequence terminated successfully.
+
+ The type of the elements in the source sequences.
+ Observable sequences to concatenate.
+ An observable sequence that contains the elements of each given sequence, in sequential order.
+ is null.
+
+
+
+ Concatenates all inner observable sequences, as long as the previous observable sequence terminated successfully.
+
+ The type of the elements in the source sequences.
+ Observable sequence of inner observable sequences.
+ An observable sequence that contains the elements of each observed inner sequence, in sequential order.
+ is null.
+
+
+
+ Concatenates all task results, as long as the previous task terminated successfully.
+
+ The type of the results produced by the tasks.
+ Observable sequence of tasks.
+ An observable sequence that contains the results of each task, in sequential order.
+ is null.
+ If the tasks support cancellation, consider manual conversion of the tasks using , followed by a concatenation operation using .
+
+
+
+ Merges elements from all inner observable sequences into a single observable sequence.
+
+ The type of the elements in the source sequences.
+ Observable sequence of inner observable sequences.
+ The observable sequence that merges the elements of the inner sequences.
+ is null.
+
+
+
+ Merges results from all source tasks into a single observable sequence.
+
+ The type of the results produced by the source tasks.
+ Observable sequence of tasks.
+ The observable sequence that merges the results of the source tasks.
+ is null.
+ If the tasks support cancellation, consider manual conversion of the tasks using , followed by a merge operation using .
+
+
+
+ Merges elements from all inner observable sequences into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences.
+
+ The type of the elements in the source sequences.
+ Observable sequence of inner observable sequences.
+ Maximum number of inner observable sequences being subscribed to concurrently.
+ The observable sequence that merges the elements of the inner sequences.
+ is null.
+ is less than or equal to zero.
+
+
+
+ Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences.
+
+ The type of the elements in the source sequences.
+ Enumerable sequence of observable sequences.
+ Maximum number of observable sequences being subscribed to concurrently.
+ The observable sequence that merges the elements of the observable sequences.
+ is null.
+ is less than or equal to zero.
+
+
+
+ Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences, and using the specified scheduler for enumeration of and subscription to the sources.
+
+ The type of the elements in the source sequences.
+ Enumerable sequence of observable sequences.
+ Maximum number of observable sequences being subscribed to concurrently.
+ Scheduler to run the enumeration of the sequence of sources on.
+ The observable sequence that merges the elements of the observable sequences.
+ or is null.
+ is less than or equal to zero.
+
+
+
+ Merges elements from two observable sequences into a single observable sequence.
+
+ The type of the elements in the source sequences.
+ First observable sequence.
+ Second observable sequence.
+ The observable sequence that merges the elements of the given sequences.
+ or is null.
+
+
+
+ Merges elements from two observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
+
+ The type of the elements in the source sequences.
+ First observable sequence.
+ Second observable sequence.
+ Scheduler used to introduce concurrency for making subscriptions to the given sequences.
+ The observable sequence that merges the elements of the given sequences.
+ or or is null.
+
+
+
+ Merges elements from all of the specified observable sequences into a single observable sequence.
+
+ The type of the elements in the source sequences.
+ Observable sequences.
+ The observable sequence that merges the elements of the observable sequences.
+ is null.
+
+
+
+ Merges elements from all of the specified observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
+
+ The type of the elements in the source sequences.
+ Observable sequences.
+ Scheduler to run the enumeration of the sequence of sources on.
+ The observable sequence that merges the elements of the observable sequences.
+ or is null.
+
+
+
+ Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence.
+
+ The type of the elements in the source sequences.
+ Enumerable sequence of observable sequences.
+ The observable sequence that merges the elements of the observable sequences.
+ is null.
+
+
+
+ Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
+
+ The type of the elements in the source sequences.
+ Enumerable sequence of observable sequences.
+ Scheduler to run the enumeration of the sequence of sources on.
+ The observable sequence that merges the elements of the observable sequences.
+ or is null.
+
+
+
+ Concatenates the second observable sequence to the first observable sequence upon successful or exceptional termination of the first.
+
+ The type of the elements in the source sequences.
+ First observable sequence whose exception (if any) is caught.
+ Second observable sequence used to produce results after the first sequence terminates.
+ An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally.
+ or is null.
+
+
+
+ Concatenates all of the specified observable sequences, even if the previous observable sequence terminated exceptionally.
+
+ The type of the elements in the source sequences.
+ Observable sequences to concatenate.
+ An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.
+ is null.
+
+
+
+ Concatenates all observable sequences in the given enumerable sequence, even if the previous observable sequence terminated exceptionally.
+
+ The type of the elements in the source sequences.
+ Observable sequences to concatenate.
+ An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.
+ is null.
+
+
+
+ Returns the elements from the source observable sequence only after the other observable sequence produces an element.
+ Starting from Rx.NET 4.0, this will subscribe to before subscribing to
+ so in case emits an element right away, elements from are not missed.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the other sequence that indicates the end of skip behavior.
+ Source sequence to propagate elements for.
+ Observable sequence that triggers propagation of elements of the source sequence.
+ An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation.
+ or is null.
+
+
+
+ Transforms an observable sequence of observable sequences into an observable sequence
+ producing values only from the most recent observable sequence.
+ Each time a new inner observable sequence is received, unsubscribe from the
+ previous inner observable sequence.
+
+ The type of the elements in the source sequences.
+ Observable sequence of inner observable sequences.
+ The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received.
+ is null.
+
+
+
+ Transforms an observable sequence of tasks into an observable sequence
+ producing values only from the most recent observable sequence.
+ Each time a new task is received, the previous task's result is ignored.
+
+ The type of the results produced by the source tasks.
+ Observable sequence of tasks.
+ The observable sequence that at any point in time produces the result of the most recent task that has been received.
+ is null.
+ If the tasks support cancellation, consider manual conversion of the tasks using , followed by a switch operation using .
+
+
+
+ Returns the elements from the source observable sequence until the other observable sequence produces an element.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the other sequence that indicates the end of take behavior.
+ Source sequence to propagate elements for.
+ Observable sequence that terminates propagation of elements of the source sequence.
+ An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation.
+ or is null.
+
+
+
+ Relays elements from the source observable sequence and calls the predicate after an
+ emission to check if the sequence should stop after that specific item.
+
+ The type of the elements in the source and result sequences.
+ The source sequence to relay elements of.
+ Called after each upstream item has been emitted with
+ that upstream item and should return true
to indicate the sequence should
+ complete.
+ The observable sequence with the source elements until the stop predicate returns true.
+
+ The following sequence will stop after the value 5 has been encountered:
+
+ Observable.Range(1, 10)
+ .TakeUntil(item => item == 5)
+ .Subscribe(Console.WriteLine);
+
+
+ If or is null
.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ The type of the elements in the sequences indicating window closing events.
+ Source sequence to produce windows over.
+ A function invoked to define the boundaries of the produced windows. A new window is started when the previous one is closed.
+ An observable sequence of windows.
+ or is null.
+
+
+
+ Projects each element of an observable sequence into zero or more windows.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ The type of the elements in the sequence indicating window opening events, also passed to the closing selector to obtain a sequence of window closing events.
+ The type of the elements in the sequences indicating window closing events.
+ Source sequence to produce windows over.
+ Observable sequence whose elements denote the creation of new windows.
+ A function invoked to define the closing of each produced window.
+ An observable sequence of windows.
+ or or is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ The type of the elements in the sequences indicating window boundary events.
+ Source sequence to produce windows over.
+ Sequence of window boundary markers. The current window is closed and a new window is opened upon receiving a boundary marker.
+ An observable sequence of windows.
+ or is null.
+
+
+
+ Merges two observable sequences into one observable sequence by combining each element from the first source with the latest element from the second source, if any.
+ Starting from Rx.NET 4.0, this will subscribe to before subscribing to to have a latest element readily available
+ in case emits an element right away.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Function to invoke for each element from the first source combined with the latest element from the second source, if any.
+ An observable sequence containing the result of combining each element of the first source with the latest element from the second source, if any, using the specified result selector function.
+ or or is null.
+
+
+
+ Merges two observable sequences into one observable sequence by combining their elements in a pairwise fashion.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Function to invoke for each consecutive pair of elements from the first and second source.
+ An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.
+ or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Fifteenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the sixteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Fifteenth observable source.
+ Sixteenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or or or or or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the source sequences.
+ The type of the elements in the result sequence, returned by the selector function.
+ Observable sources.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+ or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes.
+
+ The type of the elements in the source sequences, and in the lists in the result sequence.
+ Observable sources.
+ An observable sequence containing lists of elements at corresponding indexes.
+ is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes.
+
+ The type of the elements in the source sequences, and in the lists in the result sequence.
+ Observable sources.
+ An observable sequence containing lists of elements at corresponding indexes.
+ is null.
+
+
+
+ Merges an observable sequence and an enumerable sequence into one observable sequence by using the selector function.
+
+ The type of the elements in the first observable source sequence.
+ The type of the elements in the second enumerable source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second enumerable source.
+ Function to invoke for each consecutive pair of elements from the first and second source.
+ An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.
+ or or is null.
+
+
+
+ Append a value to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to append the value to.
+ Value to append to the specified sequence.
+ The source sequence appended with the specified value.
+ is null.
+
+
+
+ Append a value to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to append the value to.
+ Value to append to the specified sequence.
+ Scheduler to emit the append values on.
+ The source sequence appended with the specified value.
+ is null.
+
+
+
+ Hides the identity of an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose identity to hide.
+ An observable sequence that hides the identity of the source sequence.
+ is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ An observable sequence of buffers.
+ is null.
+ is less than or equal to zero.
+
+
+
+ Projects each element of an observable sequence into zero or more buffers which are produced based on element count information.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ Number of elements to skip between creation of consecutive buffers.
+ An observable sequence of buffers.
+ is null.
+ or is less than or equal to zero.
+
+
+
+ Dematerializes the explicit notification values of an observable sequence as implicit notifications.
+
+ The type of the elements materialized in the source sequence notification objects.
+ An observable sequence containing explicit notification values which have to be turned into implicit notifications.
+ An observable sequence exhibiting the behavior corresponding to the source sequence's notification values.
+ is null.
+
+
+
+ Returns an observable sequence that contains only distinct contiguous elements.
+
+ The type of the elements in the source sequence.
+ An observable sequence to retain distinct contiguous elements for.
+ An observable sequence only containing the distinct contiguous elements from the source sequence.
+ is null.
+
+
+
+ Returns an observable sequence that contains only distinct contiguous elements according to the comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence to retain distinct contiguous elements for.
+ Equality comparer for source elements.
+ An observable sequence only containing the distinct contiguous elements from the source sequence.
+ or is null.
+
+
+
+ Returns an observable sequence that contains only distinct contiguous elements according to the keySelector.
+
+ The type of the elements in the source sequence.
+ The type of the discriminator key computed for each element in the source sequence.
+ An observable sequence to retain distinct contiguous elements for, based on a computed key value.
+ A function to compute the comparison key for each element.
+ An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence.
+ or is null.
+
+
+
+ Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer.
+
+ The type of the elements in the source sequence.
+ The type of the discriminator key computed for each element in the source sequence.
+ An observable sequence to retain distinct contiguous elements for, based on a computed key value.
+ A function to compute the comparison key for each element.
+ Equality comparer for computed key values.
+ An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence.
+ or or is null.
+
+
+
+ Invokes an action for each element in the observable sequence, and propagates all observer messages through the result sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ The source sequence with the side-effecting behavior applied.
+ or is null.
+
+
+
+ Invokes an action for each element in the observable sequence and invokes an action upon graceful termination of the observable sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon graceful termination of the observable sequence.
+ The source sequence with the side-effecting behavior applied.
+ or or is null.
+
+
+
+ Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon exceptional termination of the observable sequence.
+ The source sequence with the side-effecting behavior applied.
+ or or is null.
+
+
+
+ Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon exceptional termination of the observable sequence.
+ Action to invoke upon graceful termination of the observable sequence.
+ The source sequence with the side-effecting behavior applied.
+ or or or is null.
+
+
+
+ Invokes the observer's methods for each message in the source sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Observer whose methods to invoke as part of the source sequence's observation.
+ The source sequence with the side-effecting behavior applied.
+ or is null.
+
+
+
+ Invokes a specified action after the source observable sequence terminates gracefully or exceptionally.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke after the source observable sequence terminates.
+ Source sequence with the action-invoking termination behavior applied.
+ or is null.
+
+
+
+ Ignores all elements in an observable sequence leaving only the termination messages.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ An empty observable sequence that signals termination, successful or exceptional, of the source sequence.
+ is null.
+
+
+
+ Materializes the implicit notifications of an observable sequence as explicit notification values.
+
+ The type of the elements in the source sequence.
+ An observable sequence to get notification values for.
+ An observable sequence containing the materialized notification values from the source sequence.
+ is null.
+
+
+
+ Prepend a value to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend the value to.
+ Value to prepend to the specified sequence.
+ The source sequence prepended with the specified value.
+ is null.
+
+
+
+ Prepend a value to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend the value to.
+ Value to prepend to the specified sequence.
+ Scheduler to emit the prepend values on.
+ The source sequence prepended with the specified value.
+ is null.
+
+
+
+ Repeats the observable sequence indefinitely.
+
+ The type of the elements in the source sequence.
+ Observable sequence to repeat.
+ The observable sequence producing the elements of the given sequence repeatedly and sequentially.
+ is null.
+
+
+
+ Repeats the observable sequence a specified number of times.
+
+ The type of the elements in the source sequence.
+ Observable sequence to repeat.
+ Number of times to repeat the sequence.
+ The observable sequence producing the elements of the given sequence repeatedly.
+ is null.
+ is less than zero.
+
+
+
+ Repeatedly resubscribes to the source observable after a normal completion and when the observable
+ returned by a handler produces an arbitrary item.
+
+ The type of the elements in the source sequence.
+ The arbitrary element type signaled by the handler observable.
+ Observable sequence to keep repeating when it successfully terminates.
+ The function that is called for each observer and takes an observable sequence objects.
+ It should return an observable of arbitrary items that should signal that arbitrary item in
+ response to receiving the completion signal from the source observable. If this observable signals
+ a terminal event, the sequence is terminated with that signal instead.
+ An observable sequence producing the elements of the given sequence repeatedly while each repetition terminates successfully.
+ is null.
+ is null.
+
+
+
+ Repeats the source observable sequence until it successfully terminates.
+
+ The type of the elements in the source sequence.
+ Observable sequence to repeat until it successfully terminates.
+ An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
+ is null.
+
+
+
+ Repeats the source observable sequence the specified number of times or until it successfully terminates.
+
+ The type of the elements in the source sequence.
+ Observable sequence to repeat until it successfully terminates.
+ Number of times to repeat the sequence.
+ An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
+ is null.
+ is less than zero.
+
+
+
+ Retries (resubscribes to) the source observable after a failure and when the observable
+ returned by a handler produces an arbitrary item.
+
+ The type of the elements in the source sequence.
+ The arbitrary element type signaled by the handler observable.
+ Observable sequence to repeat until it successfully terminates.
+ The function that is called for each observer and takes an observable sequence of
+ errors. It should return an observable of arbitrary items that should signal that arbitrary item in
+ response to receiving the failure Exception from the source observable. If this observable signals
+ a terminal event, the sequence is terminated with that signal instead.
+ An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
+ is null.
+ is null.
+
+
+
+ Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value.
+ For aggregation behavior with no intermediate results, see .
+
+ The type of the elements in the source sequence.
+ The type of the result of the aggregation.
+ An observable sequence to accumulate over.
+ The initial accumulator value.
+ An accumulator function to be invoked on each element.
+ An observable sequence containing the accumulated values.
+ or is null.
+
+
+
+ Applies an accumulator function over an observable sequence and returns each intermediate result.
+ For aggregation behavior with no intermediate results, see .
+
+ The type of the elements in the source sequence and the result of the aggregation.
+ An observable sequence to accumulate over.
+ An accumulator function to be invoked on each element.
+ An observable sequence containing the accumulated values.
+ or is null.
+
+
+
+ Bypasses a specified number of elements at the end of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Number of elements to bypass at the end of the source sequence.
+ An observable sequence containing the source sequence elements except for the bypassed ones at the end.
+ is null.
+ is less than zero.
+
+ This operator accumulates a queue with a length enough to store the first elements. As more elements are
+ received, elements are taken from the front of the queue and produced on the result sequence. This causes elements to be delayed.
+
+
+
+
+ Prepends a sequence of values to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend values to.
+ Values to prepend to the specified sequence.
+ The source sequence prepended with the specified values.
+ or is null.
+
+
+
+ Prepends a sequence of values to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend values to.
+ Values to prepend to the specified sequence.
+ The source sequence prepended with the specified values.
+ or is null.
+
+
+
+ Prepends a sequence of values to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend values to.
+ Scheduler to emit the prepended values on.
+ Values to prepend to the specified sequence.
+ The source sequence prepended with the specified values.
+ or or is null.
+
+
+
+ Prepends a sequence of values to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend values to.
+ Scheduler to emit the prepended values on.
+ Values to prepend to the specified sequence.
+ The source sequence prepended with the specified values.
+ or or is null.
+
+
+
+ Returns a specified number of contiguous elements from the end of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Number of elements to take from the end of the source sequence.
+ An observable sequence containing the specified number of elements from the end of the source sequence.
+ is null.
+ is less than zero.
+
+ This operator accumulates a buffer with a length enough to store elements elements. Upon completion of
+ the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed.
+
+
+
+
+ Returns a specified number of contiguous elements from the end of an observable sequence, using the specified scheduler to drain the queue.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Number of elements to take from the end of the source sequence.
+ Scheduler used to drain the queue upon completion of the source sequence.
+ An observable sequence containing the specified number of elements from the end of the source sequence.
+ or is null.
+ is less than zero.
+
+ This operator accumulates a buffer with a length enough to store elements elements. Upon completion of
+ the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed.
+
+
+
+
+ Returns a list with the specified number of contiguous elements from the end of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Number of elements to take from the end of the source sequence.
+ An observable sequence containing a single list with the specified number of elements from the end of the source sequence.
+ is null.
+ is less than zero.
+
+ This operator accumulates a buffer with a length enough to store elements. Upon completion of the
+ source sequence, this buffer is produced on the result sequence.
+
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ An observable sequence of windows.
+ is null.
+ is less than or equal to zero.
+
+
+
+ Projects each element of an observable sequence into zero or more windows which are produced based on element count information.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ Number of elements to skip between creation of consecutive windows.
+ An observable sequence of windows.
+ is null.
+ or is less than or equal to zero.
+
+
+
+ Converts the elements of an observable sequence to the specified type.
+
+ The type to convert the elements in the source sequence to.
+ The observable sequence that contains the elements to be converted.
+ An observable sequence that contains each element of the source sequence converted to the specified type.
+ is null.
+
+
+
+ Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty.
+
+ The type of the elements in the source sequence (if any), whose default value will be taken if the sequence is empty.
+ The sequence to return a default value for if it is empty.
+ An observable sequence that contains the default value for the TSource type if the source is empty; otherwise, the elements of the source itself.
+ is null.
+
+
+
+ Returns the elements of the specified sequence or the specified value in a singleton sequence if the sequence is empty.
+
+ The type of the elements in the source sequence (if any), and the specified default value which will be taken if the sequence is empty.
+ The sequence to return the specified value for if it is empty.
+ The value to return if the sequence is empty.
+ An observable sequence that contains the specified default value if the source is empty; otherwise, the elements of the source itself.
+ is null.
+
+
+
+ Returns an observable sequence that contains only distinct elements.
+
+ The type of the elements in the source sequence.
+ An observable sequence to retain distinct elements for.
+ An observable sequence only containing the distinct elements from the source sequence.
+ is null.
+ Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
+
+
+
+ Returns an observable sequence that contains only distinct elements according to the comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence to retain distinct elements for.
+ Equality comparer for source elements.
+ An observable sequence only containing the distinct elements from the source sequence.
+ or is null.
+ Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
+
+
+
+ Returns an observable sequence that contains only distinct elements according to the keySelector.
+
+ The type of the elements in the source sequence.
+ The type of the discriminator key computed for each element in the source sequence.
+ An observable sequence to retain distinct elements for.
+ A function to compute the comparison key for each element.
+ An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence.
+ or is null.
+ Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
+
+
+
+ Returns an observable sequence that contains only distinct elements according to the keySelector and the comparer.
+
+ The type of the elements in the source sequence.
+ The type of the discriminator key computed for each element in the source sequence.
+ An observable sequence to retain distinct elements for.
+ A function to compute the comparison key for each element.
+ Equality comparer for source elements.
+ An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence.
+ or or is null.
+ Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ or is null.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and comparer.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ An equality comparer to compare keys with.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ or or is null.
+
+
+
+ Groups the elements of an observable sequence and selects the resulting elements by using a specified function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ or or is null.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ An equality comparer to compare keys with.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ or or or is null.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ The initial number of elements that the underlying dictionary can contain.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ or is null.
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ The initial number of elements that the underlying dictionary can contain.
+ An equality comparer to compare keys with.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ or or is null.
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity and selects the resulting elements by using a specified function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ The initial number of elements that the underlying dictionary can contain.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ or or is null.
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ The initial number of elements that the underlying dictionary can contain.
+ An equality comparer to compare keys with.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ or or or is null.
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A function to signal the expiration of a group.
+ An equality comparer to compare keys with.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+ or or or or is null.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and selects the resulting elements by using a specified function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A function to signal the expiration of a group.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+ or or or is null.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and comparer.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to signal the expiration of a group.
+ An equality comparer to compare keys with.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+ or or or is null.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to signal the expiration of a group.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+ or or is null.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A function to signal the expiration of a group.
+ The initial number of elements that the underlying dictionary can contain.
+ An equality comparer to compare keys with.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+ or or or or is null.
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and selects the resulting elements by using a specified function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A function to signal the expiration of a group.
+ The initial number of elements that the underlying dictionary can contain.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+ or or or is null.
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to signal the expiration of a group.
+ The initial number of elements that the underlying dictionary can contain.
+ An equality comparer to compare keys with.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+ or or or is null.
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to signal the expiration of a group.
+ The initial number of elements that the underlying dictionary can contain.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+ or or is null.
+ is less than 0.
+
+
+
+ Correlates the elements of two sequences based on overlapping durations, and groups the results.
+
+ The type of the elements in the left source sequence.
+ The type of the elements in the right source sequence.
+ The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence.
+ The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence.
+ The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration.
+ The left observable sequence to join elements for.
+ The right observable sequence to join elements for.
+ A function to select the duration of each element of the left observable sequence, used to determine overlap.
+ A function to select the duration of each element of the right observable sequence, used to determine overlap.
+ A function invoked to compute a result element for any element of the left sequence with overlapping elements from the right observable sequence.
+ An observable sequence that contains result elements computed from source elements that have an overlapping duration.
+ or or or or is null.
+
+
+
+ Correlates the elements of two sequences based on overlapping durations.
+
+ The type of the elements in the left source sequence.
+ The type of the elements in the right source sequence.
+ The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence.
+ The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence.
+ The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration.
+ The left observable sequence to join elements for.
+ The right observable sequence to join elements for.
+ A function to select the duration of each element of the left observable sequence, used to determine overlap.
+ A function to select the duration of each element of the right observable sequence, used to determine overlap.
+ A function invoked to compute a result element for any two overlapping elements of the left and right observable sequences.
+ An observable sequence that contains result elements computed from source elements that have an overlapping duration.
+ or or or or is null.
+
+
+
+ Filters the elements of an observable sequence based on the specified type.
+
+ The type to filter the elements in the source sequence on.
+ The observable sequence that contains the elements to be filtered.
+ An observable sequence that contains elements from the input sequence of type TResult.
+ is null.
+
+
+
+ Projects each element of an observable sequence into a new form.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence.
+ A sequence of elements to invoke a transform function on.
+ A transform function to apply to each source element.
+ An observable sequence whose elements are the result of invoking the transform function on each element of source.
+ or is null.
+
+
+
+ Projects each element of an observable sequence into a new form by incorporating the element's index.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence.
+ A sequence of elements to invoke a transform function on.
+ A transform function to apply to each source element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of invoking the transform function on each element of source.
+ or is null.
+
+
+
+ Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the other sequence and the elements in the result sequence.
+ An observable sequence of elements to project.
+ An observable sequence to project each element from the source sequence onto.
+ An observable sequence whose elements are the result of projecting each source element onto the other sequence and merging all the resulting sequences together.
+ or is null.
+
+
+
+ Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner sequences and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
+ or is null.
+
+
+
+ Projects each element of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner sequences and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
+ or is null.
+
+
+
+ Projects each element of an observable sequence to a task and merges all of the task results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the result produced by the projected tasks and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
+ This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+ or is null.
+
+
+
+ Projects each element of an observable sequence to a task by incorporating the element's index and merges all of the task results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the result produced by the projected tasks and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
+ This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+ or is null.
+
+
+
+ Projects each element of an observable sequence to a task with cancellation support and merges all of the task results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the result produced by the projected tasks and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
+ This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+ or is null.
+
+
+
+ Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support and merges all of the task results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the result produced by the projected tasks and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
+ This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+ or is null.
+
+
+
+ Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected intermediate sequences.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ A transform function to apply to each element of the intermediate sequence.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
+ or or is null.
+
+
+
+ Projects each element of an observable sequence to an observable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected intermediate sequences.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
+ or or is null.
+
+
+
+ Projects each element of an observable sequence to a task, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the results produced by the projected intermediate tasks.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ A transform function to apply to each element of the intermediate sequence.
+ An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
+ or or is null.
+ This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+
+
+ Projects each element of an observable sequence to a task by incorporating the element's index, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the results produced by the projected intermediate tasks.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
+ or or is null.
+ This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+
+
+ Projects each element of an observable sequence to a task with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the results produced by the projected intermediate tasks.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ A transform function to apply to each element of the intermediate sequence.
+ An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
+ or or is null.
+ This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+
+
+ Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the results produced by the projected intermediate tasks.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
+ or or is null.
+ This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+
+
+ Projects each notification of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner sequences and the elements in the merged result sequence.
+ An observable sequence of notifications to project.
+ A transform function to apply to each element.
+ A transform function to apply when an error occurs in the source sequence.
+ A transform function to apply when the end of the source sequence is reached.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence.
+ or or or is null.
+
+
+
+ Projects each notification of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner sequences and the elements in the merged result sequence.
+ An observable sequence of notifications to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply when an error occurs in the source sequence.
+ A transform function to apply when the end of the source sequence is reached.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence.
+ or or or is null.
+
+
+
+ Projects each element of an observable sequence to an enumerable sequence and concatenates the resulting enumerable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
+ or is null.
+ The projected sequences are enumerated synchronously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
+
+
+
+ Projects each element of an observable sequence to an enumerable sequence by incorporating the element's index and concatenates the resulting enumerable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
+ or is null.
+ The projected sequences are enumerated synchronously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
+
+
+
+ Projects each element of an observable sequence to an enumerable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected intermediate enumerable sequences.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ A transform function to apply to each element of the intermediate sequence.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
+ or or is null.
+ The projected sequences are enumerated synchronously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
+
+
+
+ Projects each element of an observable sequence to an enumerable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected intermediate enumerable sequences.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
+ or or is null.
+ The projected sequences are enumerated synchronously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
+
+
+
+ Bypasses a specified number of elements in an observable sequence and then returns the remaining elements.
+
+ The type of the elements in the source sequence.
+ The sequence to take elements from.
+ The number of elements to skip before returning the remaining elements.
+ An observable sequence that contains the elements that occur after the specified index in the input sequence.
+ is null.
+ is less than zero.
+
+
+
+ Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements.
+
+ The type of the elements in the source sequence.
+ An observable sequence to return elements from.
+ A function to test each element for a condition.
+ An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.
+ or is null.
+
+
+
+ Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements.
+ The element's index is used in the logic of the predicate function.
+
+ The type of the elements in the source sequence.
+ An observable sequence to return elements from.
+ A function to test each element for a condition; the second parameter of the function represents the index of the source element.
+ An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.
+ or is null.
+
+
+
+ Returns a specified number of contiguous elements from the start of an observable sequence.
+
+ The type of the elements in the source sequence.
+ The sequence to take elements from.
+ The number of elements to return.
+ An observable sequence that contains the specified number of elements from the start of the input sequence.
+ is null.
+ is less than zero.
+
+
+
+ Returns a specified number of contiguous elements from the start of an observable sequence, using the specified scheduler for the edge case of Take(0).
+
+ The type of the elements in the source sequence.
+ The sequence to take elements from.
+ The number of elements to return.
+ Scheduler used to produce an OnCompleted message in case count is set to 0.
+ An observable sequence that contains the specified number of elements from the start of the input sequence.
+ or is null.
+ is less than zero.
+
+
+
+ Returns elements from an observable sequence as long as a specified condition is true.
+
+ The type of the elements in the source sequence.
+ A sequence to return elements from.
+ A function to test each element for a condition.
+ An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.
+ or is null.
+
+
+
+ Returns elements from an observable sequence as long as a specified condition is true.
+ The element's index is used in the logic of the predicate function.
+
+ The type of the elements in the source sequence.
+ A sequence to return elements from.
+ A function to test each element for a condition; the second parameter of the function represents the index of the source element.
+ An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.
+ or is null.
+
+
+
+ Filters the elements of an observable sequence based on a predicate.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose elements to filter.
+ A function to test each source element for a condition.
+ An observable sequence that contains elements from the input sequence that satisfy the condition.
+ or is null.
+
+
+
+ Filters the elements of an observable sequence based on a predicate by incorporating the element's index.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose elements to filter.
+ A function to test each source element for a condition; the second parameter of the function represents the index of the source element.
+ An observable sequence that contains elements from the input sequence that satisfy the condition.
+ or is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ An observable sequence of buffers.
+ is null.
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ Scheduler to run buffering timers on.
+ An observable sequence of buffers.
+ or is null.
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into zero or more buffers which are produced based on timing information.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ Interval between creation of consecutive buffers.
+ An observable sequence of buffers.
+ is null.
+ or is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration
+ length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
+ current buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
+ where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+
+ Projects each element of an observable sequence into zero or more buffers which are produced based on timing information, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ Interval between creation of consecutive buffers.
+ Scheduler to run buffering timers on.
+ An observable sequence of buffers.
+ or is null.
+ or is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration
+ length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
+ current buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
+ where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+
+ Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed.
+ A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Maximum time length of a window.
+ Maximum element count of a window.
+ An observable sequence of buffers.
+ is null.
+ is less than TimeSpan.Zero. -or- is less than or equal to zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers.
+ A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Maximum time length of a buffer.
+ Maximum element count of a buffer.
+ Scheduler to run buffering timers on.
+ An observable sequence of buffers.
+ or is null.
+ is less than TimeSpan.Zero. -or- is less than or equal to zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Time shifts the observable sequence by the specified relative time duration.
+ The relative time intervals between the values are preserved.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay values for.
+ Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible.
+ Time-shifted sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+
+ This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
+
+
+ Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+ In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
+
+
+
+
+
+ Time shifts the observable sequence by the specified relative time duration, using the specified scheduler to run timers.
+ The relative time intervals between the values are preserved.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay values for.
+ Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible.
+ Scheduler to run the delay timers on.
+ Time-shifted sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+
+ This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
+
+
+ Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+ In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
+
+
+
+
+
+ Time shifts the observable sequence to start propagating notifications at the specified absolute time.
+ The relative time intervals between the values are preserved.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay values for.
+ Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible.
+ Time-shifted sequence.
+ is null.
+
+
+ This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
+
+
+ Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+ In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
+
+
+
+
+
+ Time shifts the observable sequence to start propagating notifications at the specified absolute time, using the specified scheduler to run timers.
+ The relative time intervals between the values are preserved.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay values for.
+ Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible.
+ Scheduler to run the delay timers on.
+ Time-shifted sequence.
+ or is null.
+
+
+ This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
+
+
+ Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+ In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
+
+
+
+
+
+ Time shifts the observable sequence based on a delay selector function for each element.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence.
+ Source sequence to delay values for.
+ Selector function to retrieve a sequence indicating the delay for each given element.
+ Time-shifted sequence.
+ or is null.
+
+
+
+ Time shifts the observable sequence based on a subscription delay and a delay selector function for each element.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence.
+ Source sequence to delay values for.
+ Sequence indicating the delay for the subscription to the source.
+ Selector function to retrieve a sequence indicating the delay for each given element.
+ Time-shifted sequence.
+ or or is null.
+
+
+
+ Time shifts the observable sequence by delaying the subscription with the specified relative time duration.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay subscription for.
+ Relative time shift of the subscription.
+ Time-shifted sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+
+ This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
+
+
+ The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected.
+
+
+
+
+
+ Time shifts the observable sequence by delaying the subscription with the specified relative time duration, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay subscription for.
+ Relative time shift of the subscription.
+ Scheduler to run the subscription delay timer on.
+ Time-shifted sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+
+ This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
+
+
+ The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected.
+
+
+
+
+
+ Time shifts the observable sequence by delaying the subscription to the specified absolute time.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay subscription for.
+ Absolute time to perform the subscription at.
+ Time-shifted sequence.
+ is null.
+
+
+ This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
+
+
+ The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected.
+
+
+
+
+
+ Time shifts the observable sequence by delaying the subscription to the specified absolute time, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay subscription for.
+ Absolute time to perform the subscription at.
+ Scheduler to run the subscription delay timer on.
+ Time-shifted sequence.
+ or is null.
+
+
+ This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
+
+
+ The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected.
+
+
+
+
+
+ Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements.
+
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Time selector function to control the speed of values being produced each iteration.
+ The generated sequence.
+ or or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages.
+
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Time selector function to control the speed of values being produced each iteration.
+ Scheduler on which to run the generator loop.
+ The generated sequence.
+ or or or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements.
+
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Time selector function to control the speed of values being produced each iteration.
+ The generated sequence.
+ or or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages.
+
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Time selector function to control the speed of values being produced each iteration.
+ Scheduler on which to run the generator loop.
+ The generated sequence.
+ or or or or is null.
+
+
+
+ Returns an observable sequence that produces a value after each period.
+
+ Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ An observable sequence that produces a value after each period.
+ is less than TimeSpan.Zero.
+
+ Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification.
+ If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the
+ current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the
+
+ operator instead.
+
+
+
+
+ Returns an observable sequence that produces a value after each period, using the specified scheduler to run timers and to send out observer messages.
+
+ Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ Scheduler to run the timer on.
+ An observable sequence that produces a value after each period.
+ is less than TimeSpan.Zero.
+ is null.
+
+ Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification.
+ If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the
+ current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the
+
+ operator instead.
+
+
+
+
+ Samples the observable sequence at each interval.
+ Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to sample.
+ Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream.
+ Sampled observable sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect
+ of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Samples the observable sequence at each interval, using the specified scheduler to run sampling timers.
+ Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to sample.
+ Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream.
+ Scheduler to run the sampling timer on.
+ Sampled observable sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect
+ of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Samples the source observable sequence using a sampler observable sequence producing sampling ticks.
+ Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the sampling sequence.
+ Source sequence to sample.
+ Sampling tick sequence.
+ Sampled observable sequence.
+ or is null.
+
+
+
+ Skips elements for the specified duration from the start of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Duration for skipping elements from the start of the sequence.
+ An observable sequence with the elements skipped during the specified duration from the start of the source sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence.
+ This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded
+ may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
+
+
+
+
+
+ Skips elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Duration for skipping elements from the start of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence with the elements skipped during the specified duration from the start of the source sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence.
+ This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded
+ may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
+
+
+
+
+
+ Skips elements for the specified duration from the end of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Duration for skipping elements from the end of the sequence.
+ An observable sequence with the elements skipped during the specified duration from the end of the source sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a queue with a length enough to store elements received during the initial window.
+ As more elements are received, elements older than the specified are taken from the queue and produced on the
+ result sequence. This causes elements to be delayed with .
+
+
+
+
+ Skips elements for the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Duration for skipping elements from the end of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence with the elements skipped during the specified duration from the end of the source sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a queue with a length enough to store elements received during the initial window.
+ As more elements are received, elements older than the specified are taken from the queue and produced on the
+ result sequence. This causes elements to be delayed with .
+
+
+
+
+ Skips elements from the observable source sequence until the specified start time.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped.
+ An observable sequence with the elements skipped until the specified start time.
+ is null.
+
+ Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
+
+
+
+
+ Skips elements from the observable source sequence until the specified start time, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped.
+ Scheduler to run the timer on.
+ An observable sequence with the elements skipped until the specified start time.
+ or is null.
+
+ Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
+
+
+
+
+ Takes elements for the specified duration from the start of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the start of the sequence.
+ An observable sequence with the elements taken during the specified duration from the start of the source sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect
+ of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute
+ immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Takes elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the start of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence with the elements taken during the specified duration from the start of the source sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect
+ of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute
+ immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Returns elements within the specified duration from the end of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ An observable sequence with the elements taken during the specified duration from the end of the source sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
+ to be delayed with .
+
+
+
+
+ Returns elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence with the elements taken during the specified duration from the end of the source sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
+ to be delayed with .
+
+
+
+
+ Returns elements within the specified duration from the end of the observable source sequence, using the specified schedulers to run timers and to drain the collected elements.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ Scheduler to run the timer on.
+ Scheduler to drain the collected elements.
+ An observable sequence with the elements taken during the specified duration from the end of the source sequence.
+ or or is null.
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
+ to be delayed with .
+
+
+
+
+ Returns a list with the elements within the specified duration from the end of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence.
+
+
+
+
+ Returns a list with the elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence.
+
+
+
+
+ Takes elements for the specified duration until the specified end time.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately.
+ An observable sequence with the elements taken until the specified end time.
+ is null.
+
+
+
+ Takes elements for the specified duration until the specified end time, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately.
+ Scheduler to run the timer on.
+ An observable sequence with the elements taken until the specified end time.
+ or is null.
+
+
+
+ Ignores elements from an observable sequence which are followed by another element within a specified relative time duration.
+
+ The type of the elements in the source sequence.
+ Source sequence to throttle.
+ Throttling duration for each element.
+ The throttled sequence.
+ is null.
+ is less than TimeSpan.Zero.
+
+
+ This operator throttles the source sequence by holding on to each element for the duration specified in . If another
+ element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole
+ process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't
+ produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the
+ Observable.Sample set of operators.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled
+ that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the
+ asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero
+ due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action.
+
+
+
+
+
+ Ignores elements from an observable sequence which are followed by another element within a specified relative time duration, using the specified scheduler to run throttling timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to throttle.
+ Throttling duration for each element.
+ Scheduler to run the throttle timers on.
+ The throttled sequence.
+ or is null.
+ is less than TimeSpan.Zero.
+
+
+ This operator throttles the source sequence by holding on to each element for the duration specified in . If another
+ element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole
+ process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't
+ produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the
+ Observable.Sample set of operators.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled
+ that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the
+ asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero
+ due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action.
+
+
+
+
+
+ Ignores elements from an observable sequence which are followed by another value within a computed throttle duration.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the throttle sequences selected for each element in the source sequence.
+ Source sequence to throttle.
+ Selector function to retrieve a sequence indicating the throttle duration for each given element.
+ The throttled sequence.
+ or is null.
+
+ This operator throttles the source sequence by holding on to each element for the duration denoted by .
+ If another element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this
+ whole process. For streams where the duration computed by applying the to each element overlaps with
+ the occurrence of the successor element, the resulting stream won't produce any elements. In order to reduce the volume of a stream whilst
+ guaranteeing the periodic production of elements, consider using the Observable.Sample set of operators.
+
+
+
+
+ Records the time interval between consecutive elements in an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to record time intervals for.
+ An observable sequence with time interval information on elements.
+ is null.
+
+
+
+ Records the time interval between consecutive elements in an observable sequence, using the specified scheduler to compute time intervals.
+
+ The type of the elements in the source sequence.
+ Source sequence to record time intervals for.
+ Scheduler used to compute time intervals.
+ An observable sequence with time interval information on elements.
+ or is null.
+
+
+
+ Applies a timeout policy for each element in the observable sequence.
+ If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ Source sequence to perform a timeout for.
+ Maximum duration between values before a timeout occurs.
+ The source sequence with a TimeoutException in case of a timeout.
+ is null.
+ is less than TimeSpan.Zero.
+ (Asynchronous) If no element is produced within from the previous element.
+
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
+ immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
+ scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
+ arrive before the scheduler gets a chance to run the timeout action.
+
+
+
+
+
+ Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers.
+ If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ Source sequence to perform a timeout for.
+ Maximum duration between values before a timeout occurs.
+ Scheduler to run the timeout timers on.
+ The source sequence with a TimeoutException in case of a timeout.
+ or is null.
+ is less than TimeSpan.Zero.
+ (Asynchronous) If no element is produced within from the previous element.
+
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
+ immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
+ scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
+ arrive before the scheduler gets a chance to run the timeout action.
+
+
+
+
+
+ Applies a timeout policy for each element in the observable sequence.
+ If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ Source sequence to perform a timeout for.
+ Maximum duration between values before a timeout occurs.
+ Sequence to return in case of a timeout.
+ The source sequence switching to the other sequence in case of a timeout.
+ or is null.
+ is less than TimeSpan.Zero.
+
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
+ immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
+ scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
+ arrive before the scheduler gets a chance to run the timeout action.
+
+
+
+
+
+ Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers.
+ If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ Source sequence to perform a timeout for.
+ Maximum duration between values before a timeout occurs.
+ Sequence to return in case of a timeout.
+ Scheduler to run the timeout timers on.
+ The source sequence switching to the other sequence in case of a timeout.
+ or or is null.
+ is less than TimeSpan.Zero.
+
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
+ immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
+ scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
+ arrive before the scheduler gets a chance to run the timeout action.
+
+
+
+
+
+ Applies a timeout policy to the observable sequence based on an absolute time.
+ If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ Source sequence to perform a timeout for.
+ Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
+ The source sequence with a TimeoutException in case of a timeout.
+ is null.
+ (Asynchronous) If the sequence hasn't terminated before .
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+
+
+ Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers.
+ If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ Source sequence to perform a timeout for.
+ Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
+ Scheduler to run the timeout timers on.
+ The source sequence with a TimeoutException in case of a timeout.
+ or is null.
+ (Asynchronous) If the sequence hasn't terminated before .
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+
+
+ Applies a timeout policy to the observable sequence based on an absolute time.
+ If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ Source sequence to perform a timeout for.
+ Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
+ Sequence to return in case of a timeout.
+ The source sequence switching to the other sequence in case of a timeout.
+ or is null.
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+
+
+ Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers.
+ If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ Source sequence to perform a timeout for.
+ Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
+ Sequence to return in case of a timeout.
+ Scheduler to run the timeout timers on.
+ The source sequence switching to the other sequence in case of a timeout.
+ or or is null.
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+
+
+ Applies a timeout policy to the observable sequence based on a timeout duration computed for each element.
+ If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
+ Source sequence to perform a timeout for.
+ Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
+ The source sequence with a TimeoutException in case of a timeout.
+ or is null.
+
+
+
+ Applies a timeout policy to the observable sequence based on a timeout duration computed for each element.
+ If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
+ Source sequence to perform a timeout for.
+ Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
+ Sequence to return in case of a timeout.
+ The source sequence switching to the other sequence in case of a timeout.
+ or or is null.
+
+
+
+ Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element.
+ If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
+ Source sequence to perform a timeout for.
+ Observable sequence that represents the timeout for the first element.
+ Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
+ The source sequence with a TimeoutException in case of a timeout.
+ or or is null.
+
+
+
+ Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element.
+ If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
+ Source sequence to perform a timeout for.
+ Observable sequence that represents the timeout for the first element.
+ Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
+ Sequence to return in case of a timeout.
+ The source sequence switching to the other sequence in case of a timeout.
+ or or or is null.
+
+
+
+ Returns an observable sequence that produces a single value after the specified relative due time has elapsed.
+
+ Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
+ An observable sequence that produces a value after the due time has elapsed.
+
+
+
+ Returns an observable sequence that produces a single value at the specified absolute due time.
+
+ Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
+ An observable sequence that produces a value at due time.
+
+
+
+ Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed.
+
+ Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
+ Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ An observable sequence that produces a value after due time has elapsed and then after each period.
+ is less than TimeSpan.Zero.
+
+
+
+ Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time.
+
+ Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
+ Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ An observable sequence that produces a value at due time and then after each period.
+ is less than TimeSpan.Zero.
+
+
+
+ Returns an observable sequence that produces a single value after the specified relative due time has elapsed, using the specified scheduler to run the timer.
+
+ Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
+ Scheduler to run the timer on.
+ An observable sequence that produces a value after the due time has elapsed.
+ is null.
+
+
+
+ Returns an observable sequence that produces a single value at the specified absolute due time, using the specified scheduler to run the timer.
+
+ Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
+ Scheduler to run the timer on.
+ An observable sequence that produces a value at due time.
+ is null.
+
+
+
+ Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed, using the specified scheduler to run timers.
+
+ Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
+ Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ Scheduler to run timers on.
+ An observable sequence that produces a value after due time has elapsed and then each period.
+ is less than TimeSpan.Zero.
+ is null.
+
+
+
+ Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time, using the specified scheduler to run timers.
+
+ Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
+ Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ Scheduler to run timers on.
+ An observable sequence that produces a value at due time and then after each period.
+ is less than TimeSpan.Zero.
+ is null.
+
+
+
+ Timestamps each element in an observable sequence using the local system clock.
+
+ The type of the elements in the source sequence.
+ Source sequence to timestamp elements for.
+ An observable sequence with timestamp information on elements.
+ is null.
+
+
+
+ Timestamp each element in an observable sequence using the clock of the specified scheduler.
+
+ The type of the elements in the source sequence.
+ Source sequence to timestamp elements for.
+ Scheduler used to compute timestamps.
+ An observable sequence with timestamp information on elements.
+ or is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ The sequence of windows.
+ is null.
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ Scheduler to run windowing timers on.
+ An observable sequence of windows.
+ or is null.
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into zero or more windows which are produced based on timing information.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ Interval between creation of consecutive windows.
+ An observable sequence of windows.
+ is null.
+ or is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration
+ length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
+ current window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
+ where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+
+ Projects each element of an observable sequence into zero or more windows which are produced based on timing information, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ Interval between creation of consecutive windows.
+ Scheduler to run windowing timers on.
+ An observable sequence of windows.
+ or is null.
+ or is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration
+ length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
+ current window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
+ where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+
+ Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed.
+ A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Maximum time length of a window.
+ Maximum element count of a window.
+ An observable sequence of windows.
+ is null.
+ is less than TimeSpan.Zero. -or- is less than or equal to zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers.
+ A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Maximum time length of a window.
+ Maximum element count of a window.
+ Scheduler to run windowing timers on.
+ An observable sequence of windows.
+ or is null.
+ is less than TimeSpan.Zero. -or- is less than or equal to zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Provides a set of static methods for writing queries over observable sequences, allowing translation to a target query language.
+
+
+
+
+ Gets the local query provider which will retarget Qbservable-based queries to the corresponding Observable-based query for in-memory execution upon subscription.
+
+
+
+
+ Converts an in-memory observable sequence into an sequence with an expression tree representing the source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ sequence representing the given observable source sequence.
+ is null.
+
+
+
+ Returns the input typed as an .
+ This operator is used to separate the part of the query that's captured as an expression tree from the part that's executed locally.
+
+ The type of the elements in the source sequence.
+ An sequence to convert to an sequence.
+ The original source object, but typed as an .
+ is null.
+
+
+
+ Converts an enumerable sequence to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Enumerable sequence to convert to an observable sequence.
+ The observable sequence whose elements are pulled from the given enumerable sequence.
+ is null.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Converts an enumerable sequence to an observable sequence, using the specified scheduler to run the enumeration loop.
+
+ The type of the elements in the source sequence.
+ Enumerable sequence to convert to an observable sequence.
+ Scheduler to run the enumeration of the input sequence on.
+ The observable sequence whose elements are pulled from the given enumerable sequence.
+ or is null.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence.
+ For aggregation behavior with incremental intermediate results, see .
+
+ The type of the elements in the source sequence and the result of the aggregation.
+ An observable sequence to aggregate over.
+ An accumulator function to be invoked on each element.
+ An observable sequence containing a single element with the final accumulator value.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
+ For aggregation behavior with incremental intermediate results, see .
+
+ The type of the elements in the source sequence.
+ The type of the result of the aggregation.
+ An observable sequence to aggregate over.
+ The initial accumulator value.
+ An accumulator function to be invoked on each element.
+ An observable sequence containing a single element with the final accumulator value.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value,
+ and the specified result selector function is used to select the result value.
+
+ The type of the elements in the source sequence.
+ The type of the accumulator value.
+ The type of the resulting value.
+ An observable sequence to aggregate over.
+ The initial accumulator value.
+ An accumulator function to be invoked on each element.
+ A function to transform the final accumulator value into the result value.
+ An observable sequence containing a single element with the final accumulator value.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether all elements of an observable sequence satisfy a condition.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose elements to apply the predicate to.
+ A function to test each element for a condition.
+ An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Propagates the observable sequence that reacts first.
+
+ The type of the elements in the source sequences.
+ First observable sequence.
+ Second observable sequence.
+ An observable sequence that surfaces either of the given sequences, whichever reacted first.
+
+ or is null.
+
+
+
+ Propagates the observable sequence that reacts first.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sources competing to react first.
+ An observable sequence that surfaces any of the given sequences, whichever reacted first.
+
+ is null.
+
+
+
+ Propagates the observable sequence that reacts first.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sources competing to react first.
+ An observable sequence that surfaces any of the given sequences, whichever reacted first.
+
+ is null.
+
+
+
+ Determines whether an observable sequence contains any elements.
+
+ The type of the elements in the source sequence.
+ An observable sequence to check for non-emptiness.
+ An observable sequence containing a single element determining whether the source sequence contains any elements.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether any element of an observable sequence satisfies a condition.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose elements to apply the predicate to.
+ A function to test each element for a condition.
+ An observable sequence containing a single element determining whether any elements in the source sequence pass the test in the specified predicate.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Append a value to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to append the value to.
+ Value to append to the specified sequence.
+ The source sequence appended with the specified value.
+
+ is null.
+
+
+
+ Append a value to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to append the value to.
+ Value to append to the specified sequence.
+ Scheduler to emit the append values on.
+ The source sequence appended with the specified value.
+
+ is null.
+
+
+
+ Automatically connect the upstream IConnectableObservable at most once when the
+ specified number of IObservers have subscribed to this IObservable.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The number of observers required to subscribe before the connection to source happens, non-positive value will trigger an immediate subscription.
+ If not null, the connection's IDisposable is provided to it.
+ An observable sequence that connects to the source at most once when the given number of observers have subscribed to it.
+
+ is null.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values.
+
+ A sequence of nullable values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values.
+
+ A sequence of values to calculate the average of.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values to calculate the average of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.
+
+ or is null.
+ (Asynchronous) The source sequence is empty.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ An observable sequence of buffers.
+
+ is null.
+
+ is less than or equal to zero.
+
+
+
+ Projects each element of an observable sequence into zero or more buffers which are produced based on element count information.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ Number of elements to skip between creation of consecutive buffers.
+ An observable sequence of buffers.
+
+ is null.
+
+ or is less than or equal to zero.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ An observable sequence of buffers.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed.
+ A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Maximum time length of a window.
+ Maximum element count of a window.
+ An observable sequence of buffers.
+
+ is null.
+
+ is less than TimeSpan.Zero. -or- is less than or equal to zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers.
+ A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Maximum time length of a buffer.
+ Maximum element count of a buffer.
+ Scheduler to run buffering timers on.
+ An observable sequence of buffers.
+
+ or is null.
+
+ is less than TimeSpan.Zero. -or- is less than or equal to zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ Scheduler to run buffering timers on.
+ An observable sequence of buffers.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into zero or more buffers which are produced based on timing information.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ Interval between creation of consecutive buffers.
+ An observable sequence of buffers.
+
+ is null.
+
+ or is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration
+ length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
+ current buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
+ where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+
+ Projects each element of an observable sequence into zero or more buffers which are produced based on timing information, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ Source sequence to produce buffers over.
+ Length of each buffer.
+ Interval between creation of consecutive buffers.
+ Scheduler to run buffering timers on.
+ An observable sequence of buffers.
+
+ or is null.
+
+ or is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration
+ length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
+ current buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can.
+ However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
+ where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ The type of the elements in the sequences indicating buffer boundary events.
+ Source sequence to produce buffers over.
+ Sequence of buffer boundary markers. The current buffer is closed and a new buffer is opened upon receiving a boundary marker.
+ An observable sequence of buffers.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping buffers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ The type of the elements in the sequences indicating buffer closing events.
+ Source sequence to produce buffers over.
+ A function invoked to define the boundaries of the produced buffers. A new buffer is started when the previous one is closed.
+ An observable sequence of buffers.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence into zero or more buffers.
+
+ The type of the elements in the source sequence, and in the lists in the result sequence.
+ The type of the elements in the sequence indicating buffer opening events, also passed to the closing selector to obtain a sequence of buffer closing events.
+ The type of the elements in the sequences indicating buffer closing events.
+ Source sequence to produce buffers over.
+ Observable sequence whose elements denote the creation of new buffers.
+ A function invoked to define the closing of each produced buffer.
+ An observable sequence of buffers.
+
+ or or is null.
+
+
+
+ Uses to determine which source in to return, choosing an empty sequence if no match is found.
+
+ Query provider used to construct the data source.
+ The type of the value returned by the selector function, used to look up the resulting source.
+ The type of the elements in the result sequence.
+ Selector function invoked to determine the source to lookup in the dictionary.
+ Dictionary of sources to select from based on the invocation result.
+ The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found.
+
+ or is null.
+
+
+
+ Uses to determine which source in to return, choosing if no match is found.
+
+ Query provider used to construct the data source.
+ The type of the value returned by the selector function, used to look up the resulting source.
+ The type of the elements in the result sequence.
+ Selector function invoked to determine the source to lookup in the dictionary.
+ Dictionary of sources to select from based on the invocation result.
+ Default source to select in case no matching source in is found.
+ The observable sequence retrieved from the dictionary based on the invocation result, or if no match is found.
+
+ or or is null.
+
+
+
+ Uses to determine which source in to return, choosing an empty sequence on the specified scheduler if no match is found.
+
+ Query provider used to construct the data source.
+ The type of the value returned by the selector function, used to look up the resulting source.
+ The type of the elements in the result sequence.
+ Selector function invoked to determine the source to lookup in the dictionary.
+ Dictionary of sources to select from based on the invocation result.
+ Scheduler to generate an empty sequence on in case no matching source in is found.
+ The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found.
+
+ or or is null.
+
+
+
+ Converts the elements of an observable sequence to the specified type.
+
+ The type to convert the elements in the source sequence to.
+ The observable sequence that contains the elements to be converted.
+ An observable sequence that contains each element of the source sequence converted to the specified type.
+
+ is null.
+
+
+
+ Continues an observable sequence that is terminated by an exception with the next observable sequence.
+
+ The type of the elements in the source sequence and handler sequence.
+ First observable sequence whose exception (if any) is caught.
+ Second observable sequence used to produce results when an error occurred in the first sequence.
+ An observable sequence containing the first sequence's elements, followed by the elements of the second sequence in case an exception occurred.
+
+ or is null.
+
+
+
+ Continues an observable sequence that is terminated by an exception with the next observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source and handler sequences.
+ Observable sequences to catch exceptions for.
+ An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully.
+
+ is null.
+
+
+
+ Continues an observable sequence that is terminated by an exception with the next observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source and handler sequences.
+ Observable sequences to catch exceptions for.
+ An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully.
+
+ is null.
+
+
+
+ Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler.
+
+ The type of the elements in the source sequence and sequences returned by the exception handler function.
+ The type of the exception to catch and handle. Needs to derive from .
+ Source sequence.
+ Exception handler function, producing another observable sequence.
+ An observable sequence containing the source sequence's elements, followed by the elements produced by the handler's resulting observable sequence in case an exception occurred.
+
+ or is null.
+
+
+
+ Produces an enumerable sequence of consecutive (possibly empty) chunks of the source sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The enumerable sequence that returns consecutive (possibly empty) chunks upon each iteration.
+
+ is null.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations.
+
+ The type of the elements in the source sequence.
+ The type of the elements produced by the merge operation during collection.
+ Source observable sequence.
+ Factory to create the initial collector object.
+ Merges a sequence element with the current collector.
+ Factory to replace the current collector by a new collector.
+ The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration.
+
+ or or or is null.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations.
+
+ The type of the elements in the source sequence.
+ The type of the elements produced by the merge operation during collection.
+ Source observable sequence.
+ Factory to create a new collector object.
+ Merges a sequence element with the current collector.
+ The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration.
+
+ or or is null.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences, and in the lists in the result sequence.
+ Observable sources.
+ An observable sequence containing lists of the latest elements of the sources.
+
+ is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences, and in the lists in the result sequence.
+ Observable sources.
+ An observable sequence containing lists of the latest elements of the sources.
+
+ is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ The type of the elements in the result sequence, returned by the selector function.
+ Observable sources.
+ Function to invoke whenever any of the sources produces an element. For efficiency, the input list is reused after the selector returns. Either aggregate or copy the values during the function call.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Function to invoke whenever either of the sources produces an element.
+ An observable sequence containing the result of combining elements of both sources using the specified result selector function.
+
+ or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Fifteenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the sixteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Fifteenth observable source.
+ Sixteenth observable source.
+ Function to invoke whenever any of the sources produces an element.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or or or or or is null.
+ If a non-empty source completes, its very last value will be used for creating subsequent combinations until all sources terminate.
+
+
+
+ Concatenates the second observable sequence to the first observable sequence upon successful termination of the first.
+
+ The type of the elements in the source sequences.
+ First observable sequence.
+ Second observable sequence.
+ An observable sequence that contains the elements of the first sequence, followed by those of the second the sequence.
+
+ or is null.
+
+
+
+ Concatenates all of the specified observable sequences, as long as the previous observable sequence terminated successfully.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sequences to concatenate.
+ An observable sequence that contains the elements of each given sequence, in sequential order.
+
+ is null.
+
+
+
+ Concatenates all observable sequences in the given enumerable sequence, as long as the previous observable sequence terminated successfully.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sequences to concatenate.
+ An observable sequence that contains the elements of each given sequence, in sequential order.
+
+ is null.
+
+
+
+ Concatenates all inner observable sequences, as long as the previous observable sequence terminated successfully.
+
+ The type of the elements in the source sequences.
+ Observable sequence of inner observable sequences.
+ An observable sequence that contains the elements of each observed inner sequence, in sequential order.
+
+ is null.
+
+
+
+ Concatenates all task results, as long as the previous task terminated successfully.
+
+ The type of the results produced by the tasks.
+ Observable sequence of tasks.
+ An observable sequence that contains the results of each task, in sequential order.
+
+ is null.
+ If the tasks support cancellation, consider manual conversion of the tasks using , followed by a concatenation operation using .
+
+
+
+ Determines whether an observable sequence contains a specified element by using the default equality comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence in which to locate a value.
+ The value to locate in the source sequence.
+ An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer{T}.
+
+ The type of the elements in the source sequence.
+ An observable sequence in which to locate a value.
+ The value to locate in the source sequence.
+ An equality comparer to compare elements.
+ An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns an observable sequence containing an that represents the total number of elements in an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence that contains elements to be counted.
+ An observable sequence containing a single element with the number of elements in the input sequence.
+
+ is null.
+ (Asynchronous) The number of elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition.
+
+ The type of the elements in the source sequence.
+ An observable sequence that contains elements to be counted.
+ A function to test each element for a condition.
+ An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates an observable sequence from a specified Subscribe method implementation.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Implementation of the resulting observable sequence's Subscribe method.
+ The observable sequence with the specified implementation for the Subscribe method.
+
+ is null.
+
+ Use of this operator is preferred over manual implementation of the interface. In case
+ you need a type implementing rather than an anonymous implementation, consider using
+ the abstract base class.
+
+
+
+
+ Creates an observable sequence from a specified Subscribe method implementation.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Implementation of the resulting observable sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
+ The observable sequence with the specified implementation for the Subscribe method.
+
+ is null.
+
+ Use of this operator is preferred over manual implementation of the interface. In case
+ you need a type implementing rather than an anonymous implementation, consider using
+ the abstract base class.
+
+
+
+
+ Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
+ The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Asynchronous method used to produce elements.
+ The observable sequence surfacing the elements produced by the asynchronous method.
+
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
+
+
+
+ Creates an observable sequence from a specified asynchronous Subscribe method.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Asynchronous method used to produce elements.
+ The observable sequence surfacing the elements produced by the asynchronous method.
+
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
+ The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Asynchronous method used to implement the resulting sequence's Subscribe method.
+ The observable sequence with the specified implementation for the Subscribe method.
+
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
+
+
+
+ Creates an observable sequence from a specified asynchronous Subscribe method.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Asynchronous method used to implement the resulting sequence's Subscribe method.
+ The observable sequence with the specified implementation for the Subscribe method.
+
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Creates an observable sequence from a specified cancellable asynchronous Subscribe method.
+ The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Asynchronous method used to implement the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
+ The observable sequence with the specified implementation for the Subscribe method.
+
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled.
+
+
+
+ Creates an observable sequence from a specified asynchronous Subscribe method.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Asynchronous method used to implement the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable.
+ The observable sequence with the specified implementation for the Subscribe method.
+
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty.
+
+ The type of the elements in the source sequence (if any), whose default value will be taken if the sequence is empty.
+ The sequence to return a default value for if it is empty.
+ An observable sequence that contains the default value for the TSource type if the source is empty; otherwise, the elements of the source itself.
+
+ is null.
+
+
+
+ Returns the elements of the specified sequence or the specified value in a singleton sequence if the sequence is empty.
+
+ The type of the elements in the source sequence (if any), and the specified default value which will be taken if the sequence is empty.
+ The sequence to return the specified value for if it is empty.
+ The value to return if the sequence is empty.
+ An observable sequence that contains the specified default value if the source is empty; otherwise, the elements of the source itself.
+
+ is null.
+
+
+
+ Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes.
+
+ Query provider used to construct the data source.
+ The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
+ Observable factory function to invoke for each observer that subscribes to the resulting sequence.
+ An observable sequence whose observers trigger an invocation of the given observable factory function.
+
+ is null.
+
+
+
+ Returns an observable sequence that starts the specified asynchronous factory function whenever a new observer subscribes.
+
+ Query provider used to construct the data source.
+ The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
+ Asynchronous factory function to start for each observer that subscribes to the resulting sequence.
+ An observable sequence whose observers trigger the given asynchronous observable factory function to be started.
+
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+
+
+
+ Returns an observable sequence that starts the specified cancellable asynchronous factory function whenever a new observer subscribes.
+ The CancellationToken passed to the asynchronous factory function is tied to the returned disposable subscription, allowing best-effort cancellation.
+
+ Query provider used to construct the data source.
+ The type of the elements in the sequence returned by the factory function, and in the resulting sequence.
+ Asynchronous factory function to start for each observer that subscribes to the resulting sequence.
+ An observable sequence whose observers trigger the given asynchronous observable factory function to be started.
+
+ is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous observable factory function will be signaled.
+
+
+
+ Time shifts the observable sequence to start propagating notifications at the specified absolute time.
+ The relative time intervals between the values are preserved.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay values for.
+ Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible.
+ Time-shifted sequence.
+
+ is null.
+
+
+ This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
+
+
+ Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+ In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
+
+
+
+
+
+ Time shifts the observable sequence to start propagating notifications at the specified absolute time, using the specified scheduler to run timers.
+ The relative time intervals between the values are preserved.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay values for.
+ Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible.
+ Scheduler to run the delay timers on.
+ Time-shifted sequence.
+
+ or is null.
+
+
+ This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
+
+
+ Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+ In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
+
+
+
+
+
+ Time shifts the observable sequence by the specified relative time duration.
+ The relative time intervals between the values are preserved.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay values for.
+ Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible.
+ Time-shifted sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+
+ This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
+
+
+ Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+ In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
+
+
+
+
+
+ Time shifts the observable sequence by the specified relative time duration, using the specified scheduler to run timers.
+ The relative time intervals between the values are preserved.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay values for.
+ Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible.
+ Scheduler to run the delay timers on.
+ Time-shifted sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+
+ This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors.
+
+
+ Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+
+
+ Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped.
+ In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription.
+
+
+
+
+
+ Time shifts the observable sequence based on a delay selector function for each element.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence.
+ Source sequence to delay values for.
+ Selector function to retrieve a sequence indicating the delay for each given element.
+ Time-shifted sequence.
+
+ or is null.
+
+
+
+ Time shifts the observable sequence based on a subscription delay and a delay selector function for each element.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence.
+ Source sequence to delay values for.
+ Sequence indicating the delay for the subscription to the source.
+ Selector function to retrieve a sequence indicating the delay for each given element.
+ Time-shifted sequence.
+
+ or or is null.
+
+
+
+ Time shifts the observable sequence by delaying the subscription to the specified absolute time.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay subscription for.
+ Absolute time to perform the subscription at.
+ Time-shifted sequence.
+
+ is null.
+
+
+ This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
+
+
+ The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected.
+
+
+
+
+
+ Time shifts the observable sequence by delaying the subscription to the specified absolute time, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay subscription for.
+ Absolute time to perform the subscription at.
+ Scheduler to run the subscription delay timer on.
+ Time-shifted sequence.
+
+ or is null.
+
+
+ This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
+
+
+ The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected.
+
+
+
+
+
+ Time shifts the observable sequence by delaying the subscription with the specified relative time duration.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay subscription for.
+ Relative time shift of the subscription.
+ Time-shifted sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+
+ This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
+
+
+ The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected.
+
+
+
+
+
+ Time shifts the observable sequence by delaying the subscription with the specified relative time duration, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to delay subscription for.
+ Relative time shift of the subscription.
+ Scheduler to run the subscription delay timer on.
+ Time-shifted sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+
+ This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing.
+
+
+ The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected.
+
+
+
+
+
+ Dematerializes the explicit notification values of an observable sequence as implicit notifications.
+
+ The type of the elements materialized in the source sequence notification objects.
+ An observable sequence containing explicit notification values which have to be turned into implicit notifications.
+ An observable sequence exhibiting the behavior corresponding to the source sequence's notification values.
+
+ is null.
+
+
+
+ Returns an observable sequence that contains only distinct elements.
+
+ The type of the elements in the source sequence.
+ An observable sequence to retain distinct elements for.
+ An observable sequence only containing the distinct elements from the source sequence.
+
+ is null.
+ Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
+
+
+
+ Returns an observable sequence that contains only distinct elements according to the comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence to retain distinct elements for.
+ Equality comparer for source elements.
+ An observable sequence only containing the distinct elements from the source sequence.
+
+ or is null.
+ Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
+
+
+
+ Returns an observable sequence that contains only distinct elements according to the keySelector.
+
+ The type of the elements in the source sequence.
+ The type of the discriminator key computed for each element in the source sequence.
+ An observable sequence to retain distinct elements for.
+ A function to compute the comparison key for each element.
+ An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence.
+
+ or is null.
+ Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
+
+
+
+ Returns an observable sequence that contains only distinct elements according to the keySelector and the comparer.
+
+ The type of the elements in the source sequence.
+ The type of the discriminator key computed for each element in the source sequence.
+ An observable sequence to retain distinct elements for.
+ A function to compute the comparison key for each element.
+ Equality comparer for source elements.
+ An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence.
+
+ or or is null.
+ Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large.
+
+
+
+ Returns an observable sequence that contains only distinct contiguous elements.
+
+ The type of the elements in the source sequence.
+ An observable sequence to retain distinct contiguous elements for.
+ An observable sequence only containing the distinct contiguous elements from the source sequence.
+
+ is null.
+
+
+
+ Returns an observable sequence that contains only distinct contiguous elements according to the comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence to retain distinct contiguous elements for.
+ Equality comparer for source elements.
+ An observable sequence only containing the distinct contiguous elements from the source sequence.
+
+ or is null.
+
+
+
+ Returns an observable sequence that contains only distinct contiguous elements according to the keySelector.
+
+ The type of the elements in the source sequence.
+ The type of the discriminator key computed for each element in the source sequence.
+ An observable sequence to retain distinct contiguous elements for, based on a computed key value.
+ A function to compute the comparison key for each element.
+ An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence.
+
+ or is null.
+
+
+
+ Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer.
+
+ The type of the elements in the source sequence.
+ The type of the discriminator key computed for each element in the source sequence.
+ An observable sequence to retain distinct contiguous elements for, based on a computed key value.
+ A function to compute the comparison key for each element.
+ Equality comparer for computed key values.
+ An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence.
+
+ or or is null.
+
+
+
+ Invokes the observer's methods for each message in the source sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Observer whose methods to invoke as part of the source sequence's observation.
+ The source sequence with the side-effecting behavior applied.
+
+ or is null.
+
+
+
+ Invokes an action for each element in the observable sequence, and propagates all observer messages through the result sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ The source sequence with the side-effecting behavior applied.
+
+ or is null.
+
+
+
+ Invokes an action for each element in the observable sequence and invokes an action upon graceful termination of the observable sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon graceful termination of the observable sequence.
+ The source sequence with the side-effecting behavior applied.
+
+ or or is null.
+
+
+
+ Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon exceptional termination of the observable sequence.
+ The source sequence with the side-effecting behavior applied.
+
+ or or is null.
+
+
+
+ Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence.
+ This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon exceptional termination of the observable sequence.
+ Action to invoke upon graceful termination of the observable sequence.
+ The source sequence with the side-effecting behavior applied.
+
+ or or or is null.
+
+
+
+ Repeats the given as long as the specified holds, where the is evaluated after each repeated completed.
+
+ The type of the elements in the source sequence.
+ Source to repeat as long as the function evaluates to true.
+ Condition that will be evaluated upon the completion of an iteration through the , to determine whether repetition of the source is required.
+ The observable sequence obtained by concatenating the sequence as long as the holds.
+
+ or is null.
+
+
+
+ Returns the element at a specified index in a sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to return the element from.
+ The zero-based index of the element to retrieve.
+ An observable sequence that produces the element at the specified position in the source sequence.
+
+ is null.
+
+ is less than zero.
+ (Asynchronous) is greater than or equal to the number of elements in the source sequence.
+
+
+
+ Returns the element at a specified index in a sequence or a default value if the index is out of range.
+
+ The type of the elements in the source sequence.
+ Observable sequence to return the element from.
+ The zero-based index of the element to retrieve.
+ An observable sequence that produces the element at the specified position in the source sequence, or a default value if the index is outside the bounds of the source sequence.
+
+ is null.
+
+ is less than zero.
+
+
+
+ Returns an empty observable sequence.
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ An observable sequence with no elements.
+
+
+
+ Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message.
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ Scheduler to send the termination call on.
+ An observable sequence with no elements.
+
+ is null.
+
+
+
+ Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message.
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ Scheduler to send the termination call on.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ An observable sequence with no elements.
+
+ is null.
+
+
+
+ Returns an empty observable sequence.
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ An observable sequence with no elements.
+
+
+
+ Invokes a specified action after the source observable sequence terminates gracefully or exceptionally.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Action to invoke after the source observable sequence terminates.
+ Source sequence with the action-invoking termination behavior applied.
+
+ or is null.
+
+
+
+ Returns the first element of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the first element in the observable sequence.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+
+
+
+ Returns the first element of an observable sequence that satisfies the condition in the predicate.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the first element in the observable sequence that satisfies the condition in the predicate.
+
+ or is null.
+ (Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+ Returns the first element of an observable sequence, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the first element in the observable sequence, or a default value if no such element exists.
+
+ is null.
+
+
+
+ Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ or is null.
+
+
+
+ Concatenates the observable sequences obtained by running the for each element in the given enumerable .
+
+ Query provider used to construct the data source.
+ The type of the elements in the enumerable source sequence.
+ The type of the elements in the observable result sequence.
+ Enumerable source for which each element will be mapped onto an observable source that will be concatenated in the result sequence.
+ Function to select an observable source for each element in the .
+ The observable sequence obtained by concatenating the sources returned by for each element in the .
+
+ or is null.
+
+
+
+ Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
+
+ Query provider used to construct the data source.
+ Asynchronous action to convert.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+
+ is null.
+
+
+
+ Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
+
+ Query provider used to construct the data source.
+ Asynchronous action to convert.
+ Scheduler on which to notify observers.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+
+ is null or is null.
+
+
+
+ Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
+ The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation.
+
+ Query provider used to construct the data source.
+ Asynchronous action to convert.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
+
+ is null.
+
+
+
+ Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started.
+ The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation.
+
+ Query provider used to construct the data source.
+ Asynchronous action to convert.
+ Scheduler on which to notify observers.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
+
+ is null or is null.
+
+
+
+ Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to convert.
+ An observable sequence exposing the result of invoking the function, or an exception.
+
+ is null.
+
+
+
+ Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
+ The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to convert.
+ An observable sequence exposing the result of invoking the function, or an exception.
+
+ is null.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
+
+
+
+ Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to convert.
+ Scheduler on which to notify observers.
+ An observable sequence exposing the result of invoking the function, or an exception.
+
+ is null or is null.
+
+
+
+ Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started.
+ The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to convert.
+ Scheduler on which to notify observers.
+ An observable sequence exposing the result of invoking the function, or an exception.
+
+ is null or is null.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled.
+
+
+
+ Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Query provider used to construct the data source.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Query provider used to construct the data source.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+
+ or or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEvent, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event.
+
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the event data generated by the event.
+ A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The delegate type of the event to be converted.
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the event data generated by the event.
+ Action that attaches the given event handler to the underlying .NET event.
+ Action that detaches the given event handler from the underlying .NET event.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the event data generated by the event.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the event data generated by the event.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the event data generated by the event.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the event data generated by the event.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the target object type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Object instance that exposes the event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations.
+ This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks.
+
+
+ If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread
+ making the Subscribe or Dispose call, respectively.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so
+ makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions
+ more concise and easier to understand.
+
+
+
+
+
+
+ Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence.
+ Each event invocation is surfaced through an OnNext message in the resulting sequence.
+ Reflection is used to discover the event based on the specified type and the specified event name.
+ For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead.
+
+ Query provider used to construct the data source.
+ The type of the sender that raises the event.
+ The type of the event data generated by the event.
+ Type that exposes the static event to convert.
+ Name of the event to convert.
+ The scheduler to run the add and remove event handler logic on.
+ The observable sequence that contains data representations of invocations of the underlying .NET event.
+
+ or or is null.
+ The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs.
+
+
+ Add and remove handler invocations are made whenever the number of observers grows beyond zero.
+ As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting.
+
+
+ Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be
+ accessed from the same context, as required by some UI frameworks.
+
+
+ It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries,
+ making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler
+ parameter. For more information, see the remarks section on those overloads.
+
+
+
+
+
+
+ Generates an observable sequence by running a state-driven loop producing the sequence's elements.
+
+ Query provider used to construct the data source.
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ The generated sequence.
+
+ or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages.
+
+ Query provider used to construct the data source.
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Scheduler on which to run the generator loop.
+ The generated sequence.
+
+ or or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements.
+
+ Query provider used to construct the data source.
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Time selector function to control the speed of values being produced each iteration.
+ The generated sequence.
+
+ or or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements.
+
+ Query provider used to construct the data source.
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Time selector function to control the speed of values being produced each iteration.
+ The generated sequence.
+
+ or or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages.
+
+ Query provider used to construct the data source.
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Time selector function to control the speed of values being produced each iteration.
+ Scheduler on which to run the generator loop.
+ The generated sequence.
+
+ or or or or is null.
+
+
+
+ Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages.
+
+ Query provider used to construct the data source.
+ The type of the state used in the generator loop.
+ The type of the elements in the produced sequence.
+ Initial state.
+ Condition to terminate generation (upon returning false).
+ Iteration step function.
+ Selector function for results produced in the sequence.
+ Time selector function to control the speed of values being produced each iteration.
+ Scheduler on which to run the generator loop.
+ The generated sequence.
+
+ or or or or is null.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+
+ or is null.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ The initial number of elements that the underlying dictionary can contain.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+
+ or is null.
+
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ The initial number of elements that the underlying dictionary can contain.
+ An equality comparer to compare keys with.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+
+ or or is null.
+
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and comparer.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ An equality comparer to compare keys with.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+
+ or or is null.
+
+
+
+ Groups the elements of an observable sequence and selects the resulting elements by using a specified function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+
+ or or is null.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity and selects the resulting elements by using a specified function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ The initial number of elements that the underlying dictionary can contain.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+
+ or or is null.
+
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ The initial number of elements that the underlying dictionary can contain.
+ An equality comparer to compare keys with.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+
+ or or or is null.
+
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ An equality comparer to compare keys with.
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+
+ or or or is null.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to signal the expiration of a group.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+
+ or or is null.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to signal the expiration of a group.
+ The initial number of elements that the underlying dictionary can contain.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+
+ or or is null.
+
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to signal the expiration of a group.
+ The initial number of elements that the underlying dictionary can contain.
+ An equality comparer to compare keys with.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+
+ or or or is null.
+
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and comparer.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to signal the expiration of a group.
+ An equality comparer to compare keys with.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+
+ or or or is null.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and selects the resulting elements by using a specified function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A function to signal the expiration of a group.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+
+ or or or is null.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and selects the resulting elements by using a specified function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A function to signal the expiration of a group.
+ The initial number of elements that the underlying dictionary can contain.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+
+ or or or is null.
+
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A function to signal the expiration of a group.
+ The initial number of elements that the underlying dictionary can contain.
+ An equality comparer to compare keys with.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+
+ or or or or is null.
+
+ is less than 0.
+
+
+
+ Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function.
+ A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same
+ key value as a reclaimed group occurs, the group will be reborn with a new lifetime request.
+
+ The type of the elements in the source sequence.
+ The type of the grouping key computed for each element in the source sequence.
+ The type of the elements within the groups computed for each element in the source sequence.
+ The type of the elements in the duration sequences obtained for each group to denote its lifetime.
+ An observable sequence whose elements to group.
+ A function to extract the key for each element.
+ A function to map each source element to an element in an observable group.
+ A function to signal the expiration of a group.
+ An equality comparer to compare keys with.
+
+ A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
+ If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered.
+
+
+ or or or or is null.
+
+
+
+ Correlates the elements of two sequences based on overlapping durations, and groups the results.
+
+ The type of the elements in the left source sequence.
+ The type of the elements in the right source sequence.
+ The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence.
+ The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence.
+ The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration.
+ The left observable sequence to join elements for.
+ The right observable sequence to join elements for.
+ A function to select the duration of each element of the left observable sequence, used to determine overlap.
+ A function to select the duration of each element of the right observable sequence, used to determine overlap.
+ A function invoked to compute a result element for any element of the left sequence with overlapping elements from the right observable sequence.
+ An observable sequence that contains result elements computed from source elements that have an overlapping duration.
+
+ or or or or is null.
+
+
+
+ If the specified evaluates true, select the sequence. Otherwise, return an empty sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the result sequence.
+ Condition evaluated to decide which sequence to return.
+ Sequence returned in case evaluates true.
+
+ if evaluates true; an empty sequence otherwise.
+
+ or is null.
+
+
+
+ If the specified evaluates true, select the sequence. Otherwise, select the sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the result sequence.
+ Condition evaluated to decide which sequence to return.
+ Sequence returned in case evaluates true.
+ Sequence returned in case evaluates false.
+
+ if evaluates true; otherwise.
+
+ or or is null.
+
+
+
+ If the specified evaluates true, select the sequence. Otherwise, return an empty sequence generated on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the elements in the result sequence.
+ Condition evaluated to decide which sequence to return.
+ Sequence returned in case evaluates true.
+ Scheduler to generate an empty sequence on in case evaluates false.
+
+ if evaluates true; an empty sequence otherwise.
+
+ or or is null.
+
+
+
+ Ignores all elements in an observable sequence leaving only the termination messages.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ An empty observable sequence that signals termination, successful or exceptional, of the source sequence.
+
+ is null.
+
+
+
+ Returns an observable sequence that produces a value after each period.
+
+ Query provider used to construct the data source.
+ Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ An observable sequence that produces a value after each period.
+
+ is less than TimeSpan.Zero.
+
+ Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification.
+ If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the
+ current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the
+
+ operator instead.
+
+
+
+
+ Returns an observable sequence that produces a value after each period, using the specified scheduler to run timers and to send out observer messages.
+
+ Query provider used to construct the data source.
+ Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ Scheduler to run the timer on.
+ An observable sequence that produces a value after each period.
+
+ is less than TimeSpan.Zero.
+
+ is null.
+
+ Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification.
+ If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the
+ current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the
+
+ operator instead.
+
+
+
+
+ Determines whether an observable sequence is empty.
+
+ The type of the elements in the source sequence.
+ An observable sequence to check for emptiness.
+ An observable sequence containing a single element determining whether the source sequence is empty.
+
+ is null.
+
+
+
+ Correlates the elements of two sequences based on overlapping durations.
+
+ The type of the elements in the left source sequence.
+ The type of the elements in the right source sequence.
+ The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence.
+ The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence.
+ The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration.
+ The left observable sequence to join elements for.
+ The right observable sequence to join elements for.
+ A function to select the duration of each element of the left observable sequence, used to determine overlap.
+ A function to select the duration of each element of the right observable sequence, used to determine overlap.
+ A function invoked to compute a result element for any two overlapping elements of the left and right observable sequences.
+ An observable sequence that contains result elements computed from source elements that have an overlapping duration.
+
+ or or or or is null.
+
+
+
+ Returns the last element of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the last element in the observable sequence.
+
+ is null.
+ (Asynchronous) The source sequence is empty.
+
+
+
+ Returns the last element of an observable sequence that satisfies the condition in the predicate.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the last element in the observable sequence that satisfies the condition in the predicate.
+
+ or is null.
+ (Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+ Returns the last element of an observable sequence, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the last element in the observable sequence, or a default value if no such element exists.
+
+ is null.
+
+
+
+ Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ or is null.
+
+
+
+ Returns an enumerable sequence whose enumeration returns the latest observed element in the source observable sequence.
+ Enumerators on the resulting sequence will never produce the same element repeatedly, and will block until the next element becomes available.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The enumerable sequence that returns the last sampled element upon each iteration and subsequently blocks until the next element in the observable source sequence becomes available.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Returns an observable sequence containing an that represents the total number of elements in an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence that contains elements to be counted.
+ An observable sequence containing a single element with the number of elements in the input sequence.
+
+ is null.
+ (Asynchronous) The number of elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition.
+
+ The type of the elements in the source sequence.
+ An observable sequence that contains elements to be counted.
+ A function to test each element for a condition.
+ An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Materializes the implicit notifications of an observable sequence as explicit notification values.
+
+ The type of the elements in the source sequence.
+ An observable sequence to get notification values for.
+ An observable sequence containing the materialized notification values from the source sequence.
+
+ is null.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence of values.
+
+ A sequence of values to determine the maximum value of.
+ An observable sequence containing a single element with the maximum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum element in an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence to determine the maximum element of.
+ An observable sequence containing a single element with the maximum element in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the maximum value in an observable sequence according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence to determine the maximum element of.
+ Comparer used to compare elements.
+ An observable sequence containing a single element with the maximum element in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the maximum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value.
+
+ The type of the elements in the source sequence.
+ The type of the objects derived from the elements in the source sequence to determine the maximum of.
+ An observable sequence to determine the minimum element of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the maximum value according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ The type of the objects derived from the elements in the source sequence to determine the maximum of.
+ An observable sequence to determine the minimum element of.
+ A transform function to apply to each element.
+ Comparer used to compare elements.
+ An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the elements in an observable sequence with the maximum key value.
+
+ The type of the elements in the source sequence.
+ The type of the key computed for each element in the source sequence.
+ An observable sequence to get the maximum elements for.
+ Key selector function.
+ An observable sequence containing a list of zero or more elements that have a maximum key value.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the elements in an observable sequence with the maximum key value according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ The type of the key computed for each element in the source sequence.
+ An observable sequence to get the maximum elements for.
+ Key selector function.
+ Comparer used to compare key values.
+ An observable sequence containing a list of zero or more elements that have a maximum key value.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Merges elements from two observable sequences into a single observable sequence.
+
+ The type of the elements in the source sequences.
+ First observable sequence.
+ Second observable sequence.
+ The observable sequence that merges the elements of the given sequences.
+
+ or is null.
+
+
+
+ Merges elements from two observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
+
+ The type of the elements in the source sequences.
+ First observable sequence.
+ Second observable sequence.
+ Scheduler used to introduce concurrency for making subscriptions to the given sequences.
+ The observable sequence that merges the elements of the given sequences.
+
+ or or is null.
+
+
+
+ Merges elements from all of the specified observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sequences.
+ Scheduler to run the enumeration of the sequence of sources on.
+ The observable sequence that merges the elements of the observable sequences.
+
+ or is null.
+
+
+
+ Merges elements from all inner observable sequences into a single observable sequence.
+
+ The type of the elements in the source sequences.
+ Observable sequence of inner observable sequences.
+ The observable sequence that merges the elements of the inner sequences.
+
+ is null.
+
+
+
+ Merges results from all source tasks into a single observable sequence.
+
+ The type of the results produced by the source tasks.
+ Observable sequence of tasks.
+ The observable sequence that merges the results of the source tasks.
+
+ is null.
+ If the tasks support cancellation, consider manual conversion of the tasks using , followed by a merge operation using .
+
+
+
+ Merges elements from all of the specified observable sequences into a single observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sequences.
+ The observable sequence that merges the elements of the observable sequences.
+
+ is null.
+
+
+
+ Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Enumerable sequence of observable sequences.
+ The observable sequence that merges the elements of the observable sequences.
+
+ is null.
+
+
+
+ Merges elements from all inner observable sequences into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences.
+
+ The type of the elements in the source sequences.
+ Observable sequence of inner observable sequences.
+ Maximum number of inner observable sequences being subscribed to concurrently.
+ The observable sequence that merges the elements of the inner sequences.
+
+ is null.
+
+ is less than or equal to zero.
+
+
+
+ Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Enumerable sequence of observable sequences.
+ Maximum number of observable sequences being subscribed to concurrently.
+ The observable sequence that merges the elements of the observable sequences.
+
+ is null.
+
+ is less than or equal to zero.
+
+
+
+ Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences, and using the specified scheduler for enumeration of and subscription to the sources.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Enumerable sequence of observable sequences.
+ Maximum number of observable sequences being subscribed to concurrently.
+ Scheduler to run the enumeration of the sequence of sources on.
+ The observable sequence that merges the elements of the observable sequences.
+
+ or is null.
+
+ is less than or equal to zero.
+
+
+
+ Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Enumerable sequence of observable sequences.
+ Scheduler to run the enumeration of the sequence of sources on.
+ The observable sequence that merges the elements of the observable sequences.
+
+ or is null.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of nullable values.
+
+ A sequence of nullable values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum value in an observable sequence of values.
+
+ A sequence of values to determine the minimum value of.
+ An observable sequence containing a single element with the minimum value in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum element in an observable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence to determine the minimum element of.
+ An observable sequence containing a single element with the minimum element in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the minimum element in an observable sequence according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ An observable sequence to determine the minimum element of.
+ Comparer used to compare elements.
+ An observable sequence containing a single element with the minimum element in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum nullable value.
+
+ The type of the elements in the source sequence.
+ A sequence of values to determine the minimum value of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value.
+
+ The type of the elements in the source sequence.
+ The type of the objects derived from the elements in the source sequence to determine the minimum of.
+ An observable sequence to determine the minimum element of.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Invokes a transform function on each element of a sequence and returns the minimum value according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ The type of the objects derived from the elements in the source sequence to determine the minimum of.
+ An observable sequence to determine the minimum element of.
+ A transform function to apply to each element.
+ Comparer used to compare elements.
+ An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the elements in an observable sequence with the minimum key value.
+
+ The type of the elements in the source sequence.
+ The type of the key computed for each element in the source sequence.
+ An observable sequence to get the minimum elements for.
+ Key selector function.
+ An observable sequence containing a list of zero or more elements that have a minimum key value.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the elements in an observable sequence with the minimum key value according to the specified comparer.
+
+ The type of the elements in the source sequence.
+ The type of the key computed for each element in the source sequence.
+ An observable sequence to get the minimum elements for.
+ Key selector function.
+ Comparer used to compare key values.
+ An observable sequence containing a list of zero or more elements that have a minimum key value.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns an enumerable sequence whose enumeration returns the most recently observed element in the source observable sequence, using the specified initial value in case no element has been sampled yet.
+ Enumerators on the resulting sequence never block and can produce the same element repeatedly.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Initial value that will be yielded by the enumerable sequence if no element has been sampled yet.
+ The enumerable sequence that returns the last sampled element upon each iteration.
+
+ is null.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each
+ subscription to the resulting sequence causes a separate multicast invocation, exposing the sequence resulting from the selector function's
+ invocation. For specializations with fixed subject types, see Publish, PublishLast, and Replay.
+
+ The type of the elements in the source sequence.
+ The type of the elements produced by the intermediate subject.
+ The type of the elements in the result sequence.
+ Source sequence which will be multicasted in the specified selector function.
+ Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function.
+ Selector function which can use the multicasted source sequence subject to the policies enforced by the created subject.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or or is null.
+
+
+
+ Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins).
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ An observable sequence whose observers will never get called.
+
+
+
+ Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins).
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ An observable sequence whose observers will never get called.
+
+
+
+ Returns an enumerable sequence whose enumeration blocks until the next element in the source observable sequence becomes available.
+ Enumerators on the resulting sequence will block until the next element becomes available.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ The enumerable sequence that blocks upon each iteration until the next element in the observable source sequence becomes available.
+
+ is null.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Wraps the source sequence in order to run its observer callbacks on the specified synchronization context.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Synchronization context to notify observers on.
+ The source sequence whose observations happen on the specified synchronization context.
+
+ or is null.
+
+ This only invokes observer callbacks on a synchronization context. In case the subscription and/or unsubscription actions have side-effects
+ that require to be run on a synchronization context, use .
+
+
+
+
+ Wraps the source sequence in order to run its observer callbacks on the specified scheduler.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Scheduler to notify observers on.
+ The source sequence whose observations happen on the specified scheduler.
+
+ or is null.
+
+ This only invokes observer callbacks on a scheduler. In case the subscription and/or unsubscription actions have side-effects
+ that require to be run on a scheduler, use .
+
+
+
+
+ Filters the elements of an observable sequence based on the specified type.
+
+ The type to filter the elements in the source sequence on.
+ The observable sequence that contains the elements to be filtered.
+ An observable sequence that contains elements from the input sequence of type TResult.
+
+ is null.
+
+
+
+ Concatenates the second observable sequence to the first observable sequence upon successful or exceptional termination of the first.
+
+ The type of the elements in the source sequences.
+ First observable sequence whose exception (if any) is caught.
+ Second observable sequence used to produce results after the first sequence terminates.
+ An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally.
+
+ or is null.
+
+
+
+ Concatenates all of the specified observable sequences, even if the previous observable sequence terminated exceptionally.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sequences to concatenate.
+ An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.
+
+ is null.
+
+
+
+ Concatenates all observable sequences in the given enumerable sequence, even if the previous observable sequence terminated exceptionally.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sequences to concatenate.
+ An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.
+
+ is null.
+
+
+
+ Prepend a value to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend the value to.
+ Value to prepend to the specified sequence.
+ The source sequence prepended with the specified value.
+
+ is null.
+
+
+
+ Prepend a value to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend the value to.
+ Value to prepend to the specified sequence.
+ Scheduler to emit the prepend values on.
+ The source sequence prepended with the specified value.
+
+ is null.
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence.
+ This operator is a specialization of Multicast using a regular .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all notifications of the source from the time of the subscription on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or is null.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.
+ Initial value received by observers upon subscription.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or is null.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will only receive the last notification of the source.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or is null.
+
+
+
+
+ Generates an observable sequence of integral numbers within a specified range.
+
+ Query provider used to construct the data source.
+ The value of the first integer in the sequence.
+ The number of sequential integers to generate.
+ An observable sequence that contains a range of sequential integral numbers.
+
+ is less than zero. -or- + - 1 is larger than .
+
+
+
+ Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to send out observer messages.
+
+ Query provider used to construct the data source.
+ The value of the first integer in the sequence.
+ The number of sequential integers to generate.
+ Scheduler to run the generator loop on.
+ An observable sequence that contains a range of sequential integral numbers.
+
+ is less than zero. -or- + - 1 is larger than .
+
+ is null.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ is null.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The time span that should be waited before possibly unsubscribing from the connectable observable.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ is null.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The time span that should be waited before possibly unsubscribing from the connectable observable.
+ The scheduler to use for delayed unsubscription.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ is null.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The minimum number of observers required to subscribe before establishing the connection to the source.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ is null.
+ is non-positive.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The minimum number of observers required to subscribe before establishing the connection to the source.
+ The time span that should be waited before possibly unsubscribing from the connectable observable.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ is null.
+ is non-positive.
+
+
+
+ Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Connectable observable sequence.
+ The minimum number of observers required to subscribe before establishing the connection to the source.
+ The time span that should be waited before possibly unsubscribing from the connectable observable.
+ The scheduler to use for delayed unsubscription.
+ An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.
+
+ is null.
+ is non-positive.
+
+
+
+ Generates an observable sequence that repeats the given element infinitely.
+
+ Query provider used to construct the data source.
+ The type of the element that will be repeated in the produced sequence.
+ Element to repeat.
+ An observable sequence that repeats the given element infinitely.
+
+
+
+ Generates an observable sequence that repeats the given element the specified number of times.
+
+ Query provider used to construct the data source.
+ The type of the element that will be repeated in the produced sequence.
+ Element to repeat.
+ Number of times to repeat the element.
+ An observable sequence that repeats the given element the specified number of times.
+
+ is less than zero.
+
+
+
+ Generates an observable sequence that repeats the given element the specified number of times, using the specified scheduler to send out observer messages.
+
+ Query provider used to construct the data source.
+ The type of the element that will be repeated in the produced sequence.
+ Element to repeat.
+ Number of times to repeat the element.
+ Scheduler to run the producer loop on.
+ An observable sequence that repeats the given element the specified number of times.
+
+ is less than zero.
+
+ is null.
+
+
+
+ Generates an observable sequence that repeats the given element infinitely, using the specified scheduler to send out observer messages.
+
+ Query provider used to construct the data source.
+ The type of the element that will be repeated in the produced sequence.
+ Element to repeat.
+ Scheduler to run the producer loop on.
+ An observable sequence that repeats the given element infinitely.
+
+ is null.
+
+
+
+ Repeats the observable sequence indefinitely.
+
+ The type of the elements in the source sequence.
+ Observable sequence to repeat.
+ The observable sequence producing the elements of the given sequence repeatedly and sequentially.
+
+ is null.
+
+
+
+ Repeats the observable sequence a specified number of times.
+
+ The type of the elements in the source sequence.
+ Observable sequence to repeat.
+ Number of times to repeat the sequence.
+ The observable sequence producing the elements of the given sequence repeatedly.
+
+ is null.
+
+ is less than zero.
+
+
+
+ Repeatedly resubscribes to the source observable after a normal completion and when the observable
+ returned by a handler produces an arbitrary item.
+
+ The type of the elements in the source sequence.
+ The arbitrary element type signaled by the handler observable.
+ Observable sequence to keep repeating when it successfully terminates.
+ The function that is called for each observer and takes an observable sequence objects.
+ It should return an observable of arbitrary items that should signal that arbitrary item in
+ response to receiving the completion signal from the source observable. If this observable signals
+ a terminal event, the sequence is terminated with that signal instead.
+ An observable sequence producing the elements of the given sequence repeatedly while each repetition terminates successfully.
+ is null.
+ is null.
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or is null.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum element count of the replay buffer.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or is null.
+
+ is less than zero.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum element count of the replay buffer.
+ Scheduler where connected observers within the selector function will be invoked on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or or is null.
+
+ is less than zero.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum element count of the replay buffer.
+ Maximum time length of the replay buffer.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or is null.
+
+ is less than zero.
+
+ is less than TimeSpan.Zero.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum element count of the replay buffer.
+ Maximum time length of the replay buffer.
+ Scheduler where connected observers within the selector function will be invoked on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or or is null.
+
+ is less than zero.
+
+ is less than TimeSpan.Zero.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source.
+ Scheduler where connected observers within the selector function will be invoked on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or or is null.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum time length of the replay buffer.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer.
+ This operator is a specialization of Multicast using a .
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence whose elements will be multicasted through a single shared subscription.
+ Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy.
+ Maximum time length of the replay buffer.
+ Scheduler where connected observers within the selector function will be invoked on.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or or is null.
+
+ is less than TimeSpan.Zero.
+
+
+
+
+ Repeats the source observable sequence until it successfully terminates.
+
+ The type of the elements in the source sequence.
+ Observable sequence to repeat until it successfully terminates.
+ An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
+
+ is null.
+
+
+
+ Repeats the source observable sequence the specified number of times or until it successfully terminates.
+
+ The type of the elements in the source sequence.
+ Observable sequence to repeat until it successfully terminates.
+ Number of times to repeat the sequence.
+ An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
+
+ is null.
+
+ is less than zero.
+
+
+
+ Retries (resubscribes to) the source observable after a failure and when the observable
+ returned by a handler produces an arbitrary item.
+
+ The type of the elements in the source sequence.
+ The arbitrary element type signaled by the handler observable.
+ Observable sequence to repeat until it successfully terminates.
+ The function that is called for each observer and takes an observable sequence of
+ errors. It should return an observable of arbitrary items that should signal that arbitrary item in
+ response to receiving the failure Exception from the source observable. If this observable signals
+ a terminal event, the sequence is terminated with that signal instead.
+ An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
+
+ is null.
+
+ is null.
+
+
+
+ Returns an observable sequence that contains a single element.
+
+ Query provider used to construct the data source.
+ The type of the element that will be returned in the produced sequence.
+ Single element in the resulting observable sequence.
+ An observable sequence containing the single specified element.
+
+
+
+ Returns an observable sequence that contains a single element, using the specified scheduler to send out observer messages.
+
+ Query provider used to construct the data source.
+ The type of the element that will be returned in the produced sequence.
+ Single element in the resulting observable sequence.
+ Scheduler to send the single element on.
+ An observable sequence containing the single specified element.
+
+ is null.
+
+
+
+ Samples the observable sequence at each interval.
+ Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to sample.
+ Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream.
+ Sampled observable sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect
+ of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Samples the observable sequence at each interval, using the specified scheduler to run sampling timers.
+ Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to sample.
+ Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream.
+ Scheduler to run the sampling timer on.
+ Sampled observable sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect
+ of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Samples the source observable sequence using a sampler observable sequence producing sampling ticks.
+ Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the sampling sequence.
+ Source sequence to sample.
+ Sampling tick sequence.
+ Sampled observable sequence.
+
+ or is null.
+
+
+
+ Applies an accumulator function over an observable sequence and returns each intermediate result.
+ For aggregation behavior with no intermediate results, see .
+
+ The type of the elements in the source sequence and the result of the aggregation.
+ An observable sequence to accumulate over.
+ An accumulator function to be invoked on each element.
+ An observable sequence containing the accumulated values.
+
+ or is null.
+
+
+
+ Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value.
+ For aggregation behavior with no intermediate results, see .
+
+ The type of the elements in the source sequence.
+ The type of the result of the aggregation.
+ An observable sequence to accumulate over.
+ The initial accumulator value.
+ An accumulator function to be invoked on each element.
+ An observable sequence containing the accumulated values.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence into a new form.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence.
+ A sequence of elements to invoke a transform function on.
+ A transform function to apply to each source element.
+ An observable sequence whose elements are the result of invoking the transform function on each element of source.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence into a new form by incorporating the element's index.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence.
+ A sequence of elements to invoke a transform function on.
+ A transform function to apply to each source element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of invoking the transform function on each element of source.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected intermediate sequences.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ A transform function to apply to each element of the intermediate sequence.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
+
+ or or is null.
+
+
+
+ Projects each element of an observable sequence to an observable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected intermediate sequences.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
+
+ or or is null.
+
+
+
+ Projects each element of an observable sequence to an enumerable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected intermediate enumerable sequences.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ A transform function to apply to each element of the intermediate sequence.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
+
+ or or is null.
+ The projected sequences are enumerated synchronously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
+
+
+
+ Projects each element of an observable sequence to an enumerable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected intermediate enumerable sequences.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
+
+ or or is null.
+ The projected sequences are enumerated synchronously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
+
+
+
+ Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the other sequence and the elements in the result sequence.
+ An observable sequence of elements to project.
+ An observable sequence to project each element from the source sequence onto.
+ An observable sequence whose elements are the result of projecting each source element onto the other sequence and merging all the resulting sequences together.
+
+ or is null.
+
+
+
+ Projects each notification of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner sequences and the elements in the merged result sequence.
+ An observable sequence of notifications to project.
+ A transform function to apply to each element.
+ A transform function to apply when an error occurs in the source sequence.
+ A transform function to apply when the end of the source sequence is reached.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence.
+
+ or or or is null.
+
+
+
+ Projects each notification of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner sequences and the elements in the merged result sequence.
+ An observable sequence of notifications to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply when an error occurs in the source sequence.
+ A transform function to apply when the end of the source sequence is reached.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence.
+
+ or or or is null.
+
+
+
+ Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner sequences and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner sequences and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence to a task and merges all of the task results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the result produced by the projected tasks and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
+ This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence to a task by incorporating the element's index and merges all of the task results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the result produced by the projected tasks and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
+ This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence to a task with cancellation support and merges all of the task results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the result produced by the projected tasks and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
+ This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support and merges all of the task results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the result produced by the projected tasks and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.
+ This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence to an enumerable sequence and concatenates the resulting enumerable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
+
+ or is null.
+ The projected sequences are enumerated synchronously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
+
+
+
+ Projects each element of an observable sequence to an enumerable sequence by incorporating the element's index and concatenates the resulting enumerable sequences into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.
+
+ or is null.
+ The projected sequences are enumerated synchronously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion.
+
+
+
+ Projects each element of an observable sequence to a task, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the results produced by the projected intermediate tasks.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ A transform function to apply to each element of the intermediate sequence.
+ An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
+
+ or or is null.
+ This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+
+
+ Projects each element of an observable sequence to a task by incorporating the element's index, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the results produced by the projected intermediate tasks.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
+
+ or or is null.
+ This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+
+
+ Projects each element of an observable sequence to a task with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the results produced by the projected intermediate tasks.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
+ An observable sequence of elements to project.
+ A transform function to apply to each element.
+ A transform function to apply to each element of the intermediate sequence.
+ An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
+
+ or or is null.
+ This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+
+
+ Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the results produced by the projected intermediate tasks.
+ The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.
+ An observable sequence of elements to project.
+ A transform function to apply to each element; the second parameter of the function represents the index of the source element.
+ A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element.
+ An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.
+
+ or or is null.
+ This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using .
+
+
+
+ Determines whether two sequences are equal by comparing the elements pairwise.
+
+ The type of the elements in the source sequence.
+ First observable sequence to compare.
+ Second observable sequence to compare.
+ An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise.
+
+ The type of the elements in the source sequence.
+ First observable sequence to compare.
+ Second observable sequence to compare.
+ An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer.
+
+ The type of the elements in the source sequence.
+ First observable sequence to compare.
+ Second observable sequence to compare.
+ Comparer used to compare elements of both sequences.
+ An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise using a specified equality comparer.
+
+ The type of the elements in the source sequence.
+ First observable sequence to compare.
+ Second observable sequence to compare.
+ Comparer used to compare elements of both sequences.
+ An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Returns the only element of an observable sequence, and reports an exception if there is not exactly one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the single element in the observable sequence.
+
+ is null.
+ (Asynchronous) The source sequence contains more than one element. -or- The source sequence is empty.
+
+
+
+ Returns the only element of an observable sequence that satisfies the condition in the predicate, and reports an exception if there is not exactly one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the single element in the observable sequence that satisfies the condition in the predicate.
+
+ or is null.
+ (Asynchronous) No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty.
+
+
+
+ Returns the only element of an observable sequence, or a default value if the observable sequence is empty; this method reports an exception if there is more than one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ Sequence containing the single element in the observable sequence, or a default value if no such element exists.
+
+ is null.
+ (Asynchronous) The source sequence contains more than one element.
+
+
+
+ Returns the only element of an observable sequence that matches the predicate, or a default value if no such element exists; this method reports an exception if there is more than one element in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source observable sequence.
+ A predicate function to evaluate for elements in the source sequence.
+ Sequence containing the single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists.
+
+ or is null.
+ (Asynchronous) The sequence contains more than one element that satisfies the condition in the predicate.
+
+
+
+ Bypasses a specified number of elements in an observable sequence and then returns the remaining elements.
+
+ The type of the elements in the source sequence.
+ The sequence to take elements from.
+ The number of elements to skip before returning the remaining elements.
+ An observable sequence that contains the elements that occur after the specified index in the input sequence.
+
+ is null.
+
+ is less than zero.
+
+
+
+ Skips elements for the specified duration from the start of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Duration for skipping elements from the start of the sequence.
+ An observable sequence with the elements skipped during the specified duration from the start of the source sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence.
+ This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded
+ may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
+
+
+
+
+
+ Skips elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Duration for skipping elements from the start of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence with the elements skipped during the specified duration from the start of the source sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence.
+ This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded
+ may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
+
+
+
+
+
+ Bypasses a specified number of elements at the end of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Number of elements to bypass at the end of the source sequence.
+ An observable sequence containing the source sequence elements except for the bypassed ones at the end.
+
+ is null.
+
+ is less than zero.
+
+ This operator accumulates a queue with a length enough to store the first elements. As more elements are
+ received, elements are taken from the front of the queue and produced on the result sequence. This causes elements to be delayed.
+
+
+
+
+ Skips elements for the specified duration from the end of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Duration for skipping elements from the end of the sequence.
+ An observable sequence with the elements skipped during the specified duration from the end of the source sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a queue with a length enough to store elements received during the initial window.
+ As more elements are received, elements older than the specified are taken from the queue and produced on the
+ result sequence. This causes elements to be delayed with .
+
+
+
+
+ Skips elements for the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Duration for skipping elements from the end of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence with the elements skipped during the specified duration from the end of the source sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a queue with a length enough to store elements received during the initial window.
+ As more elements are received, elements older than the specified are taken from the queue and produced on the
+ result sequence. This causes elements to be delayed with .
+
+
+
+
+ Skips elements from the observable source sequence until the specified start time.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped.
+ An observable sequence with the elements skipped until the specified start time.
+
+ is null.
+
+ Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
+
+
+
+
+ Skips elements from the observable source sequence until the specified start time, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to skip elements for.
+ Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped.
+ Scheduler to run the timer on.
+ An observable sequence with the elements skipped until the specified start time.
+
+ or is null.
+
+ Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the .
+
+
+
+
+ Returns the elements from the source observable sequence only after the other observable sequence produces an element.
+ Starting from Rx.NET 4.0, this will subscribe to before subscribing to
+ so in case emits an element right away, elements from are not missed.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the other sequence that indicates the end of skip behavior.
+ Source sequence to propagate elements for.
+ Observable sequence that triggers propagation of elements of the source sequence.
+ An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation.
+
+ or is null.
+
+
+
+ Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements.
+
+ The type of the elements in the source sequence.
+ An observable sequence to return elements from.
+ A function to test each element for a condition.
+ An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.
+
+ or is null.
+
+
+
+ Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements.
+ The element's index is used in the logic of the predicate function.
+
+ The type of the elements in the source sequence.
+ An observable sequence to return elements from.
+ A function to test each element for a condition; the second parameter of the function represents the index of the source element.
+ An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.
+
+ or is null.
+
+
+
+ Invokes the action asynchronously, surfacing the result through an observable sequence.
+
+ Query provider used to construct the data source.
+ Action to run asynchronously.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+
+ is null.
+
+
+ -
+ The action is called immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+
+
+
+
+
+ Invokes the action asynchronously on the specified scheduler, surfacing the result through an observable sequence.
+
+ Query provider used to construct the data source.
+ Action to run asynchronously.
+ Scheduler to run the action on.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+
+ or is null.
+
+
+ -
+ The action is called immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+
+
+
+
+
+ Invokes the specified function asynchronously, surfacing the result through an observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the function.
+ Function to run asynchronously.
+ An observable sequence exposing the function's result value, or an exception.
+
+ is null.
+
+
+ -
+ The function is called immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the function's result.
+
+
+
+
+
+
+ Invokes the specified function asynchronously on the specified scheduler, surfacing the result through an observable sequence
+
+ Query provider used to construct the data source.
+ The type of the result returned by the function.
+ Function to run asynchronously.
+ Scheduler to run the function on.
+ An observable sequence exposing the function's result value, or an exception.
+
+ or is null.
+
+
+ -
+ The function is called immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the function's result.
+
+
+
+
+
+
+ Invokes the asynchronous action, surfacing the result through an observable sequence.
+
+ Query provider used to construct the data source.
+ Asynchronous action to run.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+
+ is null.
+
+
+ -
+ The action is started immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+
+
+
+
+
+ Invokes the asynchronous action, surfacing the result through an observable sequence.
+
+ Query provider used to construct the data source.
+ Asynchronous action to run.
+ Scheduler on which to notify observers.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+
+ is null or is null.
+
+
+ -
+ The action is started immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+
+
+
+
+
+ Invokes the asynchronous action, surfacing the result through an observable sequence.
+ The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
+
+ Query provider used to construct the data source.
+ Asynchronous action to run.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+
+ is null.
+
+
+ -
+ The action is started immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+ -
+
+ If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
+ subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
+ Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
+ to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
+ multicast operators.
+
+
+
+
+
+
+
+ Invokes the asynchronous action, surfacing the result through an observable sequence.
+ The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
+
+ Query provider used to construct the data source.
+ Asynchronous action to run.
+ Scheduler on which to notify observers.
+ An observable sequence exposing a Unit value upon completion of the action, or an exception.
+
+ is null or is null.
+
+
+ -
+ The action is started immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the action's outcome.
+
+ -
+
+ If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
+ subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
+ Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
+ to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
+ multicast operators.
+
+
+
+
+
+
+
+ Invokes the asynchronous function, surfacing the result through an observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to run.
+ An observable sequence exposing the function's result value, or an exception.
+
+ is null.
+
+
+ -
+ The function is started immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the function's result.
+
+
+
+
+
+
+ Invokes the asynchronous function, surfacing the result through an observable sequence.
+ The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to run.
+ An observable sequence exposing the function's result value, or an exception.
+
+ is null.
+
+
+ -
+ The function is started immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the function's result.
+
+ -
+
+ If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
+ subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
+ Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
+ to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
+ multicast operators.
+
+
+
+
+
+
+
+ Invokes the asynchronous function, surfacing the result through an observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to run.
+ Scheduler on which to notify observers.
+ An observable sequence exposing the function's result value, or an exception.
+
+ is null or is null.
+
+
+ -
+ The function is started immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the function's result.
+
+
+
+
+
+
+ Invokes the asynchronous function, surfacing the result through an observable sequence.
+ The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the asynchronous function.
+ Asynchronous function to run.
+ Scheduler on which to notify observers.
+ An observable sequence exposing the function's result value, or an exception.
+
+ is null or is null.
+
+
+ -
+ The function is started immediately, not during the subscription of the resulting sequence.
+
+ -
+ Multiple subscriptions to the resulting sequence can observe the function's result.
+
+ -
+
+ If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed
+ subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator.
+ Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription
+ to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using
+ multicast operators.
+
+
+
+
+
+
+
+ Prepends a sequence of values to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend values to.
+ Scheduler to emit the prepended values on.
+ Values to prepend to the specified sequence.
+ The source sequence prepended with the specified values.
+
+ or or is null.
+
+
+
+ Prepends a sequence of values to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend values to.
+ Scheduler to emit the prepended values on.
+ Values to prepend to the specified sequence.
+ The source sequence prepended with the specified values.
+
+ or or is null.
+
+
+
+ Prepends a sequence of values to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend values to.
+ Values to prepend to the specified sequence.
+ The source sequence prepended with the specified values.
+
+ or is null.
+
+
+
+ Prepends a sequence of values to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to prepend values to.
+ Values to prepend to the specified sequence.
+ The source sequence prepended with the specified values.
+
+ or is null.
+
+
+
+ Wraps the source sequence in order to run its subscription and unsubscription logic on the specified synchronization context. This operation is not commonly used;
+ see the remarks section for more information on the distinction between SubscribeOn and ObserveOn.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Synchronization context to perform subscription and unsubscription actions on.
+ The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context.
+
+ or is null.
+
+ This only performs the side-effects of subscription and unsubscription on the specified synchronization context. In order to invoke observer
+ callbacks on a synchronization context, use .
+
+
+
+
+ Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. This operation is not commonly used;
+ see the remarks section for more information on the distinction between SubscribeOn and ObserveOn.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Scheduler to perform subscription and unsubscription actions on.
+ The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler.
+
+ or is null.
+
+ This only performs the side-effects of subscription and unsubscription on the specified scheduler. In order to invoke observer
+ callbacks on a scheduler, use .
+
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ (Asynchronous) The sum of the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values.
+
+ A sequence of nullable values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values.
+
+ A sequence of values to calculate the sum of.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence.
+
+ The type of the elements in the source sequence.
+ A sequence of values that are used to calculate a sum.
+ A transform function to apply to each element.
+ An observable sequence containing a single element with the sum of the values in the source sequence.
+
+ or is null.
+ (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than .
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Transforms an observable sequence of observable sequences into an observable sequence
+ producing values only from the most recent observable sequence.
+ Each time a new inner observable sequence is received, unsubscribe from the
+ previous inner observable sequence.
+
+ The type of the elements in the source sequences.
+ Observable sequence of inner observable sequences.
+ The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received.
+
+ is null.
+
+
+
+ Transforms an observable sequence of tasks into an observable sequence
+ producing values only from the most recent observable sequence.
+ Each time a new task is received, the previous task's result is ignored.
+
+ The type of the results produced by the source tasks.
+ Observable sequence of tasks.
+ The observable sequence that at any point in time produces the result of the most recent task that has been received.
+
+ is null.
+ If the tasks support cancellation, consider manual conversion of the tasks using , followed by a switch operation using .
+
+
+
+ Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently.
+ This overload is useful to "fix" an observable sequence that exhibits concurrent callbacks on individual observers, which is invalid behavior for the query processor.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ The source sequence whose outgoing calls to observers are synchronized.
+
+ is null.
+
+ It's invalid behavior - according to the observer grammar - for a sequence to exhibit concurrent callbacks on a given observer.
+ This operator can be used to "fix" a source that doesn't conform to this rule.
+
+
+
+
+ Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently, using the specified gate object.
+ This overload is useful when writing n-ary query operators, in order to prevent concurrent callbacks from different sources by synchronizing on a common gate object.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Gate object to synchronize each observer call on.
+ The source sequence whose outgoing calls to observers are synchronized on the given gate object.
+
+ or is null.
+
+
+
+ Returns a specified number of contiguous elements from the start of an observable sequence.
+
+ The type of the elements in the source sequence.
+ The sequence to take elements from.
+ The number of elements to return.
+ An observable sequence that contains the specified number of elements from the start of the input sequence.
+
+ is null.
+
+ is less than zero.
+
+
+
+ Returns a specified number of contiguous elements from the start of an observable sequence, using the specified scheduler for the edge case of Take(0).
+
+ The type of the elements in the source sequence.
+ The sequence to take elements from.
+ The number of elements to return.
+ Scheduler used to produce an OnCompleted message in case count is set to 0.
+ An observable sequence that contains the specified number of elements from the start of the input sequence.
+
+ or is null.
+
+ is less than zero.
+
+
+
+ Takes elements for the specified duration from the start of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the start of the sequence.
+ An observable sequence with the elements taken during the specified duration from the start of the source sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect
+ of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute
+ immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Takes elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the start of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence with the elements taken during the specified duration from the start of the source sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect
+ of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute
+ immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Returns a specified number of contiguous elements from the end of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Number of elements to take from the end of the source sequence.
+ An observable sequence containing the specified number of elements from the end of the source sequence.
+
+ is null.
+
+ is less than zero.
+
+ This operator accumulates a buffer with a length enough to store elements elements. Upon completion of
+ the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed.
+
+
+
+
+ Returns a specified number of contiguous elements from the end of an observable sequence, using the specified scheduler to drain the queue.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Number of elements to take from the end of the source sequence.
+ Scheduler used to drain the queue upon completion of the source sequence.
+ An observable sequence containing the specified number of elements from the end of the source sequence.
+
+ or is null.
+
+ is less than zero.
+
+ This operator accumulates a buffer with a length enough to store elements elements. Upon completion of
+ the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed.
+
+
+
+
+ Returns elements within the specified duration from the end of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ An observable sequence with the elements taken during the specified duration from the end of the source sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
+ to be delayed with .
+
+
+
+
+ Returns elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence with the elements taken during the specified duration from the end of the source sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
+ to be delayed with .
+
+
+
+
+ Returns elements within the specified duration from the end of the observable source sequence, using the specified schedulers to run timers and to drain the collected elements.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ Scheduler to run the timer on.
+ Scheduler to drain the collected elements.
+ An observable sequence with the elements taken during the specified duration from the end of the source sequence.
+
+ or or is null.
+
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements
+ to be delayed with .
+
+
+
+
+ Returns a list with the specified number of contiguous elements from the end of an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Number of elements to take from the end of the source sequence.
+ An observable sequence containing a single list with the specified number of elements from the end of the source sequence.
+
+ is null.
+
+ is less than zero.
+
+ This operator accumulates a buffer with a length enough to store elements. Upon completion of the
+ source sequence, this buffer is produced on the result sequence.
+
+
+
+
+ Returns a list with the elements within the specified duration from the end of the observable source sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence.
+
+
+
+
+ Returns a list with the elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Duration for taking elements from the end of the sequence.
+ Scheduler to run the timer on.
+ An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+ This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of
+ the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence.
+
+
+
+
+ Takes elements for the specified duration until the specified end time.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately.
+ An observable sequence with the elements taken until the specified end time.
+
+ is null.
+
+
+
+ Takes elements for the specified duration until the specified end time, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to take elements from.
+ Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately.
+ Scheduler to run the timer on.
+ An observable sequence with the elements taken until the specified end time.
+
+ or is null.
+
+
+
+ Returns the elements from the source observable sequence until the other observable sequence produces an element.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the other sequence that indicates the end of take behavior.
+ Source sequence to propagate elements for.
+ Observable sequence that terminates propagation of elements of the source sequence.
+ An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation.
+
+ or is null.
+
+
+
+ Relays elements from the source observable sequence and calls the predicate after an
+ emission to check if the sequence should stop after that specific item.
+
+ The type of the elements in the source and result sequences.
+ The source sequence to relay elements of.
+ Called after each upstream item has been emitted with
+ that upstream item and should return true
to indicate the sequence should
+ complete.
+ The observable sequence with the source elements until the stop predicate returns true.
+
+ The following sequence will stop after the value 5 has been encountered:
+
+ Observable.Range(1, 10)
+ .TakeUntil(item => item == 5)
+ .Subscribe(Console.WriteLine);
+
+
+ If or is null
.
+
+
+
+ Returns elements from an observable sequence as long as a specified condition is true.
+
+ The type of the elements in the source sequence.
+ A sequence to return elements from.
+ A function to test each element for a condition.
+ An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.
+
+ or is null.
+
+
+
+ Returns elements from an observable sequence as long as a specified condition is true.
+ The element's index is used in the logic of the predicate function.
+
+ The type of the elements in the source sequence.
+ A sequence to return elements from.
+ A function to test each element for a condition; the second parameter of the function represents the index of the source element.
+ An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.
+
+ or is null.
+
+
+
+ Ignores elements from an observable sequence which are followed by another element within a specified relative time duration.
+
+ The type of the elements in the source sequence.
+ Source sequence to throttle.
+ Throttling duration for each element.
+ The throttled sequence.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+
+ This operator throttles the source sequence by holding on to each element for the duration specified in . If another
+ element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole
+ process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't
+ produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the
+ Observable.Sample set of operators.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled
+ that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the
+ asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero
+ due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action.
+
+
+
+
+
+ Ignores elements from an observable sequence which are followed by another element within a specified relative time duration, using the specified scheduler to run throttling timers.
+
+ The type of the elements in the source sequence.
+ Source sequence to throttle.
+ Throttling duration for each element.
+ Scheduler to run the throttle timers on.
+ The throttled sequence.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+
+ This operator throttles the source sequence by holding on to each element for the duration specified in . If another
+ element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole
+ process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't
+ produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the
+ Observable.Sample set of operators.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled
+ that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the
+ asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero
+ due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action.
+
+
+
+
+
+ Ignores elements from an observable sequence which are followed by another value within a computed throttle duration.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the throttle sequences selected for each element in the source sequence.
+ Source sequence to throttle.
+ Selector function to retrieve a sequence indicating the throttle duration for each given element.
+ The throttled sequence.
+
+ or is null.
+
+ This operator throttles the source sequence by holding on to each element for the duration denoted by .
+ If another element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this
+ whole process. For streams where the duration computed by applying the to each element overlaps with
+ the occurrence of the successor element, the resulting stream won't produce any elements. In order to reduce the volume of a stream whilst
+ guaranteeing the periodic production of elements, consider using the Observable.Sample set of operators.
+
+
+
+
+ Returns an observable sequence that terminates with an exception.
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ Exception object used for the sequence's termination.
+ The observable sequence that terminates exceptionally with the specified exception object.
+
+ is null.
+
+
+
+ Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message.
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ Exception object used for the sequence's termination.
+ Scheduler to send the exceptional termination call on.
+ The observable sequence that terminates exceptionally with the specified exception object.
+
+ or is null.
+
+
+
+ Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message.
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ Exception object used for the sequence's termination.
+ Scheduler to send the exceptional termination call on.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ The observable sequence that terminates exceptionally with the specified exception object.
+
+ or is null.
+
+
+
+ Returns an observable sequence that terminates with an exception.
+
+ Query provider used to construct the data source.
+ The type used for the type parameter of the resulting sequence.
+ Exception object used for the sequence's termination.
+ Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements.
+ The observable sequence that terminates exceptionally with the specified exception object.
+
+ is null.
+
+
+
+ Records the time interval between consecutive elements in an observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence to record time intervals for.
+ An observable sequence with time interval information on elements.
+
+ is null.
+
+
+
+ Records the time interval between consecutive elements in an observable sequence, using the specified scheduler to compute time intervals.
+
+ The type of the elements in the source sequence.
+ Source sequence to record time intervals for.
+ Scheduler used to compute time intervals.
+ An observable sequence with time interval information on elements.
+
+ or is null.
+
+
+
+ Applies a timeout policy to the observable sequence based on an absolute time.
+ If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ Source sequence to perform a timeout for.
+ Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
+ The source sequence with a TimeoutException in case of a timeout.
+
+ is null.
+ (Asynchronous) If the sequence hasn't terminated before .
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+
+
+ Applies a timeout policy to the observable sequence based on an absolute time.
+ If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ Source sequence to perform a timeout for.
+ Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
+ Sequence to return in case of a timeout.
+ The source sequence switching to the other sequence in case of a timeout.
+
+ or is null.
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+
+
+ Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers.
+ If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ Source sequence to perform a timeout for.
+ Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
+ Sequence to return in case of a timeout.
+ Scheduler to run the timeout timers on.
+ The source sequence switching to the other sequence in case of a timeout.
+
+ or or is null.
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+
+
+ Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers.
+ If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ Source sequence to perform a timeout for.
+ Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately.
+ Scheduler to run the timeout timers on.
+ The source sequence with a TimeoutException in case of a timeout.
+
+ or is null.
+ (Asynchronous) If the sequence hasn't terminated before .
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+
+
+ Applies a timeout policy for each element in the observable sequence.
+ If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ Source sequence to perform a timeout for.
+ Maximum duration between values before a timeout occurs.
+ The source sequence with a TimeoutException in case of a timeout.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+ (Asynchronous) If no element is produced within from the previous element.
+
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
+ immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
+ scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
+ arrive before the scheduler gets a chance to run the timeout action.
+
+
+
+
+
+ Applies a timeout policy for each element in the observable sequence.
+ If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ Source sequence to perform a timeout for.
+ Maximum duration between values before a timeout occurs.
+ Sequence to return in case of a timeout.
+ The source sequence switching to the other sequence in case of a timeout.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
+ immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
+ scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
+ arrive before the scheduler gets a chance to run the timeout action.
+
+
+
+
+
+ Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers.
+ If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ Source sequence to perform a timeout for.
+ Maximum duration between values before a timeout occurs.
+ Sequence to return in case of a timeout.
+ Scheduler to run the timeout timers on.
+ The source sequence switching to the other sequence in case of a timeout.
+
+ or or is null.
+
+ is less than TimeSpan.Zero.
+
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
+ immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
+ scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
+ arrive before the scheduler gets a chance to run the timeout action.
+
+
+
+
+
+ Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers.
+ If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ Source sequence to perform a timeout for.
+ Maximum duration between values before a timeout occurs.
+ Scheduler to run the timeout timers on.
+ The source sequence with a TimeoutException in case of a timeout.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+ (Asynchronous) If no element is produced within from the previous element.
+
+
+ In case you only want to timeout on the first element, consider using the
+ operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload
+ of Timeout, can be used.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due
+ immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the
+ scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may
+ arrive before the scheduler gets a chance to run the timeout action.
+
+
+
+
+
+ Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element.
+ If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
+ Source sequence to perform a timeout for.
+ Observable sequence that represents the timeout for the first element.
+ Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
+ The source sequence with a TimeoutException in case of a timeout.
+
+ or or is null.
+
+
+
+ Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element.
+ If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
+ Source sequence to perform a timeout for.
+ Observable sequence that represents the timeout for the first element.
+ Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
+ Sequence to return in case of a timeout.
+ The source sequence switching to the other sequence in case of a timeout.
+
+ or or or is null.
+
+
+
+ Applies a timeout policy to the observable sequence based on a timeout duration computed for each element.
+ If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
+ Source sequence to perform a timeout for.
+ Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
+ The source sequence with a TimeoutException in case of a timeout.
+
+ or is null.
+
+
+
+ Applies a timeout policy to the observable sequence based on a timeout duration computed for each element.
+ If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on.
+
+ The type of the elements in the source sequence and the other sequence used upon a timeout.
+ The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence.
+ Source sequence to perform a timeout for.
+ Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
+ Sequence to return in case of a timeout.
+ The source sequence switching to the other sequence in case of a timeout.
+
+ or or is null.
+
+
+
+ Returns an observable sequence that produces a single value at the specified absolute due time.
+
+ Query provider used to construct the data source.
+ Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
+ An observable sequence that produces a value at due time.
+
+
+
+ Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time.
+
+ Query provider used to construct the data source.
+ Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
+ Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ An observable sequence that produces a value at due time and then after each period.
+
+ is less than TimeSpan.Zero.
+
+
+
+ Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time, using the specified scheduler to run timers.
+
+ Query provider used to construct the data source.
+ Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
+ Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ Scheduler to run timers on.
+ An observable sequence that produces a value at due time and then after each period.
+
+ is less than TimeSpan.Zero.
+
+ is null.
+
+
+
+ Returns an observable sequence that produces a single value at the specified absolute due time, using the specified scheduler to run the timer.
+
+ Query provider used to construct the data source.
+ Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible.
+ Scheduler to run the timer on.
+ An observable sequence that produces a value at due time.
+
+ is null.
+
+
+
+ Returns an observable sequence that produces a single value after the specified relative due time has elapsed.
+
+ Query provider used to construct the data source.
+ Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
+ An observable sequence that produces a value after the due time has elapsed.
+
+
+
+ Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed.
+
+ Query provider used to construct the data source.
+ Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
+ Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ An observable sequence that produces a value after due time has elapsed and then after each period.
+
+ is less than TimeSpan.Zero.
+
+
+
+ Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed, using the specified scheduler to run timers.
+
+ Query provider used to construct the data source.
+ Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
+ Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible.
+ Scheduler to run timers on.
+ An observable sequence that produces a value after due time has elapsed and then each period.
+
+ is less than TimeSpan.Zero.
+
+ is null.
+
+
+
+ Returns an observable sequence that produces a single value after the specified relative due time has elapsed, using the specified scheduler to run the timer.
+
+ Query provider used to construct the data source.
+ Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible.
+ Scheduler to run the timer on.
+ An observable sequence that produces a value after the due time has elapsed.
+
+ is null.
+
+
+
+ Timestamps each element in an observable sequence using the local system clock.
+
+ The type of the elements in the source sequence.
+ Source sequence to timestamp elements for.
+ An observable sequence with timestamp information on elements.
+
+ is null.
+
+
+
+ Timestamp each element in an observable sequence using the clock of the specified scheduler.
+
+ The type of the elements in the source sequence.
+ Source sequence to timestamp elements for.
+ Scheduler used to compute timestamps.
+ An observable sequence with timestamp information on elements.
+
+ or is null.
+
+
+
+ Creates an array from an observable sequence.
+
+ The type of the elements in the source sequence.
+ The source observable sequence to get an array of elements for.
+ An observable sequence containing a single element with an array containing all the elements of the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a dictionary from an observable sequence according to a specified key selector function.
+
+ The type of the elements in the source sequence.
+ The type of the dictionary key computed for each element in the source sequence.
+ An observable sequence to create a dictionary for.
+ A function to extract a key from each element.
+ An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer.
+
+ The type of the elements in the source sequence.
+ The type of the dictionary key computed for each element in the source sequence.
+ An observable sequence to create a dictionary for.
+ A function to extract a key from each element.
+ An equality comparer to compare keys.
+ An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function.
+
+ The type of the elements in the source sequence.
+ The type of the dictionary key computed for each element in the source sequence.
+ The type of the dictionary value computed for each element in the source sequence.
+ An observable sequence to create a dictionary for.
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function.
+
+ The type of the elements in the source sequence.
+ The type of the dictionary key computed for each element in the source sequence.
+ The type of the dictionary value computed for each element in the source sequence.
+ An observable sequence to create a dictionary for.
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An equality comparer to compare keys.
+ An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.
+
+ or or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Converts an observable sequence to an enumerable sequence.
+
+ The type of the elements in the source sequence.
+ An observable sequence to convert to an enumerable sequence.
+ The enumerable sequence containing the elements in the observable sequence.
+
+ is null.
+ This operator requires the source's object (see ) to implement .
+
+
+
+ Creates a list from an observable sequence.
+
+ The type of the elements in the source sequence.
+ The source observable sequence to get a list of elements for.
+ An observable sequence containing a single element with a list containing all the elements of the source sequence.
+
+ is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a lookup from an observable sequence according to a specified key selector function.
+
+ The type of the elements in the source sequence.
+ The type of the lookup key computed for each element in the source sequence.
+ An observable sequence to create a lookup for.
+ A function to extract a key from each element.
+ An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
+
+ or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a lookup from an observable sequence according to a specified key selector function, and a comparer.
+
+ The type of the elements in the source sequence.
+ The type of the lookup key computed for each element in the source sequence.
+ An observable sequence to create a lookup for.
+ A function to extract a key from each element.
+ An equality comparer to compare keys.
+ An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function.
+
+ The type of the elements in the source sequence.
+ The type of the lookup key computed for each element in the source sequence.
+ The type of the lookup value computed for each element in the source sequence.
+ An observable sequence to create a lookup for.
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
+
+ or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function.
+
+ The type of the elements in the source sequence.
+ The type of the lookup key computed for each element in the source sequence.
+ The type of the lookup value computed for each element in the source sequence.
+ An observable sequence to create a lookup for.
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An equality comparer to compare keys.
+ An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.
+
+ or or or is null.
+ The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.
+
+
+
+ Converts an enumerable sequence to an observable sequence.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Enumerable sequence to convert to an observable sequence.
+ The observable sequence whose elements are pulled from the given enumerable sequence.
+
+ is null.
+
+
+
+ Converts an enumerable sequence to an observable sequence, using the specified scheduler to run the enumeration loop.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Enumerable sequence to convert to an observable sequence.
+ Scheduler to run the enumeration of the input sequence on.
+ The observable sequence whose elements are pulled from the given enumerable sequence.
+
+ or is null.
+
+
+
+ Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ The type of the resource used during the generation of the resulting sequence. Needs to implement .
+ Factory function to obtain a resource object.
+ Factory function to obtain an observable sequence that depends on the obtained resource.
+ An observable sequence whose lifetime controls the lifetime of the dependent resource object.
+
+ or is null.
+
+
+
+ Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. The resource is obtained and used through asynchronous methods.
+ The CancellationToken passed to the asynchronous methods is tied to the returned disposable subscription, allowing best-effort cancellation at any stage of the resource acquisition or usage.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ The type of the resource used during the generation of the resulting sequence. Needs to implement .
+ Asynchronous factory function to obtain a resource object.
+ Asynchronous factory function to obtain an observable sequence that depends on the obtained resource.
+ An observable sequence whose lifetime controls the lifetime of the dependent resource object.
+
+ or is null.
+ This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11.
+ When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous resource factory and observable factory functions will be signaled.
+
+
+
+ Filters the elements of an observable sequence based on a predicate.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose elements to filter.
+ A function to test each source element for a condition.
+ An observable sequence that contains elements from the input sequence that satisfy the condition.
+
+ or is null.
+
+
+
+ Filters the elements of an observable sequence based on a predicate by incorporating the element's index.
+
+ The type of the elements in the source sequence.
+ An observable sequence whose elements to filter.
+ A function to test each source element for a condition; the second parameter of the function represents the index of the source element.
+ An observable sequence that contains elements from the input sequence that satisfy the condition.
+
+ or is null.
+
+
+
+ Repeats the given as long as the specified holds, where the is evaluated before each repeated is subscribed to.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequence.
+ Source to repeat as long as the function evaluates to true.
+ Condition that will be evaluated before subscription to the , to determine whether repetition of the source is required.
+ The observable sequence obtained by concatenating the sequence as long as the holds.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ An observable sequence of windows.
+
+ is null.
+
+ is less than or equal to zero.
+
+
+
+ Projects each element of an observable sequence into zero or more windows which are produced based on element count information.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ Number of elements to skip between creation of consecutive windows.
+ An observable sequence of windows.
+
+ is null.
+
+ or is less than or equal to zero.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ The sequence of windows.
+
+ is null.
+
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed.
+ A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Maximum time length of a window.
+ Maximum element count of a window.
+ An observable sequence of windows.
+
+ is null.
+
+ is less than TimeSpan.Zero. -or- is less than or equal to zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers.
+ A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Maximum time length of a window.
+ Maximum element count of a window.
+ Scheduler to run windowing timers on.
+ An observable sequence of windows.
+
+ or is null.
+
+ is less than TimeSpan.Zero. -or- is less than or equal to zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ Scheduler to run windowing timers on.
+ An observable sequence of windows.
+
+ or is null.
+
+ is less than TimeSpan.Zero.
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced
+ by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+ Projects each element of an observable sequence into zero or more windows which are produced based on timing information.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ Interval between creation of consecutive windows.
+ An observable sequence of windows.
+
+ is null.
+
+ or is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration
+ length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
+ current window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
+ where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+
+ Projects each element of an observable sequence into zero or more windows which are produced based on timing information, using the specified scheduler to run timers.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ Source sequence to produce windows over.
+ Length of each window.
+ Interval between creation of consecutive windows.
+ Scheduler to run windowing timers on.
+ An observable sequence of windows.
+
+ or is null.
+
+ or is less than TimeSpan.Zero.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration
+ length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the
+ current window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+ Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can.
+ However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler,
+ where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time.
+
+
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ The type of the elements in the sequences indicating window boundary events.
+ Source sequence to produce windows over.
+ Sequence of window boundary markers. The current window is closed and a new window is opened upon receiving a boundary marker.
+ An observable sequence of windows.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence into consecutive non-overlapping windows.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ The type of the elements in the sequences indicating window closing events.
+ Source sequence to produce windows over.
+ A function invoked to define the boundaries of the produced windows. A new window is started when the previous one is closed.
+ An observable sequence of windows.
+
+ or is null.
+
+
+
+ Projects each element of an observable sequence into zero or more windows.
+
+ The type of the elements in the source sequence, and in the windows in the result sequence.
+ The type of the elements in the sequence indicating window opening events, also passed to the closing selector to obtain a sequence of window closing events.
+ The type of the elements in the sequences indicating window closing events.
+ Source sequence to produce windows over.
+ Observable sequence whose elements denote the creation of new windows.
+ A function invoked to define the closing of each produced window.
+ An observable sequence of windows.
+
+ or or is null.
+
+
+
+ Merges two observable sequences into one observable sequence by combining each element from the first source with the latest element from the second source, if any.
+ Starting from Rx.NET 4.0, this will subscribe to before subscribing to to have a latest element readily available
+ in case emits an element right away.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Function to invoke for each element from the first source combined with the latest element from the second source, if any.
+ An observable sequence containing the result of combining each element of the first source with the latest element from the second source, if any, using the specified result selector function.
+
+ or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences, and in the lists in the result sequence.
+ Observable sources.
+ An observable sequence containing lists of elements at corresponding indexes.
+
+ is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences, and in the lists in the result sequence.
+ Observable sources.
+ An observable sequence containing lists of elements at corresponding indexes.
+
+ is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ The type of the elements in the result sequence, returned by the selector function.
+ Observable sources.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or is null.
+
+
+
+ Merges two observable sequences into one observable sequence by combining their elements in a pairwise fashion.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Function to invoke for each consecutive pair of elements from the first and second source.
+ An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.
+
+ or or is null.
+
+
+
+ Merges an observable sequence and an enumerable sequence into one observable sequence by using the selector function.
+
+ The type of the elements in the first observable source sequence.
+ The type of the elements in the second enumerable source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second enumerable source.
+ Function to invoke for each consecutive pair of elements from the first and second source.
+ An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.
+
+ or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Fifteenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or or or or is null.
+
+
+
+ Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the sixteenth source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable source.
+ Second observable source.
+ Third observable source.
+ Fourth observable source.
+ Fifth observable source.
+ Sixth observable source.
+ Seventh observable source.
+ Eighth observable source.
+ Ninth observable source.
+ Tenth observable source.
+ Eleventh observable source.
+ Twelfth observable source.
+ Thirteenth observable source.
+ Fourteenth observable source.
+ Fifteenth observable source.
+ Sixteenth observable source.
+ Function to invoke for each series of elements at corresponding indexes in the sources.
+ An observable sequence containing the result of combining elements of the sources using the specified result selector function.
+
+ or or or or or or or or or or or or or or or or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ The type of the fifteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ The type of the fifteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ The type of the fifteenth argument passed to the action.
+ The type of the sixteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Asynchronous action.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the action.
+ The type of the second argument passed to the action.
+ The type of the third argument passed to the action.
+ The type of the fourth argument passed to the action.
+ The type of the fifth argument passed to the action.
+ The type of the sixth argument passed to the action.
+ The type of the seventh argument passed to the action.
+ The type of the eighth argument passed to the action.
+ The type of the ninth argument passed to the action.
+ The type of the tenth argument passed to the action.
+ The type of the eleventh argument passed to the action.
+ The type of the twelfth argument passed to the action.
+ The type of the thirteenth argument passed to the action.
+ The type of the fourteenth argument passed to the action.
+ The type of the fifteenth argument passed to the action.
+ The type of the sixteenth argument passed to the action.
+ Action to convert to an asynchronous action.
+ Scheduler to invoke the original action on.
+ Asynchronous action.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the fifteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the fifteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the fifteenth argument passed to the function.
+ The type of the sixteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Asynchronous function.
+
+ is null.
+
+
+
+ Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the function.
+ The type of the second argument passed to the function.
+ The type of the third argument passed to the function.
+ The type of the fourth argument passed to the function.
+ The type of the fifth argument passed to the function.
+ The type of the sixth argument passed to the function.
+ The type of the seventh argument passed to the function.
+ The type of the eighth argument passed to the function.
+ The type of the ninth argument passed to the function.
+ The type of the tenth argument passed to the function.
+ The type of the eleventh argument passed to the function.
+ The type of the twelfth argument passed to the function.
+ The type of the thirteenth argument passed to the function.
+ The type of the fourteenth argument passed to the function.
+ The type of the fifteenth argument passed to the function.
+ The type of the sixteenth argument passed to the function.
+ The type of the result returned by the function.
+ Function to convert to an asynchronous function.
+ Scheduler to invoke the original function on.
+ Asynchronous function.
+
+ or is null.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the thirteenth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the thirteenth argument passed to the begin delegate.
+ The type of the fourteenth argument passed to the begin delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the thirteenth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Converts a Begin/End invoke function pair into an asynchronous function.
+
+ Query provider used to construct the data source.
+ The type of the first argument passed to the begin delegate.
+ The type of the second argument passed to the begin delegate.
+ The type of the third argument passed to the begin delegate.
+ The type of the fourth argument passed to the begin delegate.
+ The type of the fifth argument passed to the begin delegate.
+ The type of the sixth argument passed to the begin delegate.
+ The type of the seventh argument passed to the begin delegate.
+ The type of the eighth argument passed to the begin delegate.
+ The type of the ninth argument passed to the begin delegate.
+ The type of the tenth argument passed to the begin delegate.
+ The type of the eleventh argument passed to the begin delegate.
+ The type of the twelfth argument passed to the begin delegate.
+ The type of the thirteenth argument passed to the begin delegate.
+ The type of the fourteenth argument passed to the begin delegate.
+ The type of the result returned by the end delegate.
+ The delegate that begins the asynchronous operation.
+ The delegate that ends the asynchronous operation.
+ Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence.
+
+ or is null.
+ Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result.
+
+
+
+ Creates a pattern that matches when both observable sequences have an available element.
+
+ The type of the elements in the left sequence.
+ The type of the elements in the right sequence.
+ Observable sequence to match with the right sequence.
+ Observable sequence to match with the left sequence.
+ Pattern object that matches when both observable sequences have an available element.
+ or is null.
+
+
+
+ Matches when the observable sequence has an available element and projects the element by invoking the selector function.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ Observable sequence to apply the selector on.
+ Selector that will be invoked for elements in the source sequence.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ or is null.
+
+
+
+ Joins together the results from several patterns.
+
+ The type of the elements in the result sequence, obtained from the specified patterns.
+ Query provider used to construct the data source.
+ A series of plans created by use of the Then operator on patterns.
+ An observable sequence with the results from matching several patterns.
+ or is null.
+
+
+
+ Joins together the results from several patterns.
+
+ The type of the elements in the result sequence, obtained from the specified patterns.
+ Query provider used to construct the data source.
+ A series of plans created by use of the Then operator on patterns.
+ An observable sequence with the results form matching several patterns.
+ or is null.
+
+
+
+ Provides a set of static methods for writing in-memory queries over observable sequences.
+
+
+
+
+ Subscribes to each observable sequence returned by the iteratorMethod in sequence and returns the observable sequence of values sent to the observer given to the iteratorMethod.
+
+ The type of the elements in the produced sequence.
+ Iterator method that produces elements in the resulting sequence by calling the given observer.
+ An observable sequence obtained by running the iterator and returning the elements that were sent to the observer.
+ is null.
+
+
+
+ Subscribes to each observable sequence returned by the iteratorMethod in sequence and produces a Unit value on the resulting sequence for each step of the iteration.
+
+ Iterator method that drives the resulting observable sequence.
+ An observable sequence obtained by running the iterator and returning Unit values for each iteration step.
+ is null.
+
+
+
+ Expands an observable sequence by recursively invoking selector, using the specified scheduler to enumerate the queue of obtained sequences.
+
+ The type of the elements in the source sequence and each of the recursively expanded sources obtained by running the selector function.
+ Source sequence with the initial elements.
+ Selector function to invoke for each produced element, resulting in another sequence to which the selector will be invoked recursively again.
+ Scheduler on which to perform the expansion by enumerating the internal queue of obtained sequences.
+ An observable sequence containing all the elements produced by the recursive expansion.
+ or or is null.
+
+
+
+ Expands an observable sequence by recursively invoking selector.
+
+ The type of the elements in the source sequence and each of the recursively expanded sources obtained by running the selector function.
+ Source sequence with the initial elements.
+ Selector function to invoke for each produced element, resulting in another sequence to which the selector will be invoked recursively again.
+ An observable sequence containing all the elements produced by the recursive expansion.
+ or is null.
+
+
+
+ Runs two observable sequences in parallel and combines their last elements.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable sequence.
+ Second observable sequence.
+ Result selector function to invoke with the last elements of both sequences.
+ An observable sequence with the result of calling the selector function with the last elements of both input sequences.
+ or or is null.
+
+
+
+ Runs all specified observable sequences in parallel and collects their last elements.
+
+ The type of the elements in the source sequences.
+ Observable sequence to collect the last elements for.
+ An observable sequence with an array collecting the last elements of all the input sequences.
+ is null.
+
+
+
+ Runs all observable sequences in the enumerable sources sequence in parallel and collect their last elements.
+
+ The type of the elements in the source sequences.
+ Observable sequence to collect the last elements for.
+ An observable sequence with an array collecting the last elements of all the input sequences.
+ is null.
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on the source sequence, without sharing subscriptions.
+ This operator allows for a fluent style of writing queries that use the same sequence multiple times.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence that will be shared in the selector function.
+ Selector function which can use the source sequence as many times as needed, without sharing subscriptions to the source sequence.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+ or is null.
+
+
+
+ Comonadic bind operator.
+
+
+
+
+ Comonadic bind operator.
+
+
+
+
+ Immediately subscribes to source and retains the elements in the observable sequence.
+
+ The type of the elements in the source sequence.
+ Source sequence.
+ Object that's both an observable sequence and a list which can be used to access the source sequence's elements.
+ is null.
+
+
+
+ Try winning the race for the right of emission.
+
+ If true, the contender is the left source.
+ True if the contender has won the race.
+
+
+
+ If true, this observer won the race and now can emit
+ on a fast path.
+
+
+
+
+ Automatically connect the upstream IConnectableObservable once the
+ specified number of IObservers have subscribed to this IObservable.
+
+ The upstream value type.
+
+
+
+ The only instance for a TResult type: this source
+ is completely stateless and has a constant behavior.
+
+
+
+
+ No need for instantiating this more than once per TResult.
+
+
+
+
+ Contains the current active connection's state or null
+ if no connection is active at the moment.
+ Should be manipulated while holding the lock.
+
+
+
+
+ Contains the connection reference the downstream observer
+ has subscribed to. Its purpose is to
+ avoid subscribing, connecting and disconnecting
+ while holding a lock.
+
+
+
+
+ Holds an individual connection state: the observer count and
+ the connection's IDisposable.
+
+
+
+
+ Relays items to the downstream until the predicate returns true
.
+
+ The element type of the sequence
+
+
+
+ Provides a set of static methods for writing queries over observable sequences, allowing translation to a target query language.
+
+
+
+
+ Subscribes to each observable sequence returned by the iteratorMethod in sequence and produces a Unit value on the resulting sequence for each step of the iteration.
+
+ Query provider used to construct the data source.
+ Iterator method that drives the resulting observable sequence.
+ An observable sequence obtained by running the iterator and returning Unit values for each iteration step.
+
+ is null.
+
+
+
+ Subscribes to each observable sequence returned by the iteratorMethod in sequence and returns the observable sequence of values sent to the observer given to the iteratorMethod.
+
+ Query provider used to construct the data source.
+ The type of the elements in the produced sequence.
+ Iterator method that produces elements in the resulting sequence by calling the given observer.
+ An observable sequence obtained by running the iterator and returning the elements that were sent to the observer.
+
+ is null.
+
+
+
+ Expands an observable sequence by recursively invoking selector.
+
+ The type of the elements in the source sequence and each of the recursively expanded sources obtained by running the selector function.
+ Source sequence with the initial elements.
+ Selector function to invoke for each produced element, resulting in another sequence to which the selector will be invoked recursively again.
+ An observable sequence containing all the elements produced by the recursive expansion.
+
+ or is null.
+
+
+
+ Expands an observable sequence by recursively invoking selector, using the specified scheduler to enumerate the queue of obtained sequences.
+
+ The type of the elements in the source sequence and each of the recursively expanded sources obtained by running the selector function.
+ Source sequence with the initial elements.
+ Selector function to invoke for each produced element, resulting in another sequence to which the selector will be invoked recursively again.
+ Scheduler on which to perform the expansion by enumerating the internal queue of obtained sequences.
+ An observable sequence containing all the elements produced by the recursive expansion.
+
+ or or is null.
+
+
+
+ Runs all specified observable sequences in parallel and collects their last elements.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sequence to collect the last elements for.
+ An observable sequence with an array collecting the last elements of all the input sequences.
+
+ is null.
+
+
+
+ Runs all observable sequences in the enumerable sources sequence in parallel and collect their last elements.
+
+ Query provider used to construct the data source.
+ The type of the elements in the source sequences.
+ Observable sequence to collect the last elements for.
+ An observable sequence with an array collecting the last elements of all the input sequences.
+
+ is null.
+
+
+
+ Runs two observable sequences in parallel and combines their last elements.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the result sequence, returned by the selector function.
+ First observable sequence.
+ Second observable sequence.
+ Result selector function to invoke with the last elements of both sequences.
+ An observable sequence with the result of calling the selector function with the last elements of both input sequences.
+
+ or or is null.
+
+
+
+ Returns an observable sequence that is the result of invoking the selector on the source sequence, without sharing subscriptions.
+ This operator allows for a fluent style of writing queries that use the same sequence multiple times.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the result sequence.
+ Source sequence that will be shared in the selector function.
+ Selector function which can use the source sequence as many times as needed, without sharing subscriptions to the source sequence.
+ An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
+
+ or is null.
+
+
+
+ Comonadic bind operator.
+
+
+
+
+ Comonadic bind operator.
+
+
+
+
+ (Infrastructure) Implement query debugger services.
+
+
+
+
+ The System.Reactive.Linq namespace contains interfaces and classes that support expressing queries over observable sequences, using Language Integrated Query (LINQ).
+ Query operators are made available as extension methods for and defined on the Observable and Qbservable classes, respectively.
+
+
+
+
+ An ObserveOn operator implementation that uses lock-free
+ techniques to signal events to the downstream.
+
+ The element type of the sequence.
+
+
+
+ The current task representing a running drain operation.
+
+
+
+
+ Indicates the work-in-progress state of this operator,
+ zero means no work is currently being done.
+
+
+
+
+ If true, the upstream has issued OnCompleted.
+
+
+
+
+ If is true and this is non-null, the upstream
+ failed with an OnError.
+
+
+
+
+ Indicates a dispose has been requested.
+
+
+
+
+ Remove remaining elements from the queue upon
+ cancellation or failure.
+
+ The queue to use. The argument ensures that the
+ _queue field is not re-read from memory unnecessarily
+ due to the memory barriers inside TryDequeue mandating it
+ despite the field is read-only.
+
+
+
+ Submit the drain task via the appropriate scheduler if
+ there is no drain currently running (wip > 0).
+
+
+
+
+ The static action to be scheduled on a simple scheduler.
+ Avoids creating a delegate that captures this
+ whenever the signals have to be drained.
+
+
+
+
+ Emits at most one signal per run on a scheduler that doesn't like
+ long running tasks.
+
+ The scheduler to use for scheduling the next signal emission if necessary.
+ The IDisposable of the recursively scheduled task or an empty disposable.
+
+
+
+ Executes a drain step by checking the disposed state,
+ checking for the terminated state and for an
+ empty queue, issuing the appropriate signals to the
+ given downstream.
+
+ The queue to use. The argument ensures that the
+ _queue field is not re-read from memory due to the memory barriers
+ inside TryDequeue mandating it despite the field is read-only.
+ In addition, the DrainStep is invoked from the DrainLongRunning's loop
+ so reading _queue inside this method would still incur the same barrier
+ overhead otherwise.
+
+
+
+ Signals events on a ISchedulerLongRunning by blocking the emission thread while waiting
+ for them from the upstream.
+
+ The element type of the sequence.
+
+
+
+ This will run a suspending drain task, hogging the backing thread
+ until the sequence terminates or gets disposed.
+
+
+
+
+ The queue for holding the OnNext items, terminal signals have their own fields.
+
+
+
+
+ Protects the suspension and resumption of the long running drain task.
+
+
+
+
+ The work-in-progress counter. If it jumps from 0 to 1, the drain task is resumed,
+ if it reaches 0 again, the drain task is suspended.
+
+
+
+
+ Set to true if the upstream terminated.
+
+
+
+
+ Set to a non-null Exception if the upstream terminated with OnError.
+
+
+
+
+ Indicates the sequence has been disposed and the drain task should quit.
+
+
+
+
+ Makes sure the drain task is scheduled only once, when the first signal
+ from upstream arrives.
+
+
+
+
+ The disposable tracking the drain task.
+
+
+
+
+ Static reference to the Drain method, saves allocation.
+
+
+
+
+ Override this method to dispose additional resources.
+ The method is guaranteed to be called at most once.
+
+ If true, the method was called from .
+
+
+
+ Base class for implementation of query operators, providing a lightweight sink that can be disposed to mute the outgoing observer.
+
+ Type of the resulting sequence's elements.
+
+ Implementations of sinks are responsible to enforce the message grammar on the associated observer. Upon sending a terminal message, a pairing Dispose call should be made to trigger cancellation of related resources and to mute the outgoing observer.
+
+
+
+ Holds onto a singleton IDisposable indicating a ready state.
+
+
+
+
+ This indicates the operation has been prepared and ready for
+ the next step.
+
+
+
+
+ Provides a mechanism for receiving push-based notifications and returning a response.
+
+
+ The type of the elements received by the observer.
+ This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+ The type of the result returned from the observer's notification handlers.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+
+
+ Notifies the observer of a new element in the sequence.
+
+ The new element in the sequence.
+ Result returned upon observation of a new element.
+
+
+
+ Notifies the observer that an exception has occurred.
+
+ The exception that occurred.
+ Result returned upon observation of an error.
+
+
+
+ Notifies the observer of the end of the sequence.
+
+ Result returned upon observation of the sequence completion.
+
+
+
+ Abstract base class for join patterns.
+
+
+
+
+ Represents a join pattern over one observable sequence.
+
+ The type of the elements in the first source sequence.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over two observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+
+
+
+ Creates a pattern that matches when all three observable sequences have an available element.
+
+ The type of the elements in the third observable sequence.
+ Observable sequence to match with the two previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over three observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+
+
+
+ Creates a pattern that matches when all four observable sequences have an available element.
+
+ The type of the elements in the fourth observable sequence.
+ Observable sequence to match with the three previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over four observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+
+
+
+ Creates a pattern that matches when all five observable sequences have an available element.
+
+ The type of the elements in the fifth observable sequence.
+ Observable sequence to match with the four previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over five observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+
+
+
+ Creates a pattern that matches when all six observable sequences have an available element.
+
+ The type of the elements in the sixth observable sequence.
+ Observable sequence to match with the five previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over six observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+
+
+
+ Creates a pattern that matches when all seven observable sequences have an available element.
+
+ The type of the elements in the seventh observable sequence.
+ Observable sequence to match with the six previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over seven observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+
+
+
+ Creates a pattern that matches when all eight observable sequences have an available element.
+
+ The type of the elements in the eighth observable sequence.
+ Observable sequence to match with the seven previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over eight observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+
+
+
+ Creates a pattern that matches when all nine observable sequences have an available element.
+
+ The type of the elements in the ninth observable sequence.
+ Observable sequence to match with the eight previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over nine observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+
+
+
+ Creates a pattern that matches when all ten observable sequences have an available element.
+
+ The type of the elements in the tenth observable sequence.
+ Observable sequence to match with the nine previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over ten observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+
+
+
+ Creates a pattern that matches when all eleven observable sequences have an available element.
+
+ The type of the elements in the eleventh observable sequence.
+ Observable sequence to match with the ten previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over eleven observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+
+
+
+ Creates a pattern that matches when all twelve observable sequences have an available element.
+
+ The type of the elements in the twelfth observable sequence.
+ Observable sequence to match with the eleven previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over twelve observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+
+
+
+ Creates a pattern that matches when all thirteen observable sequences have an available element.
+
+ The type of the elements in the thirteenth observable sequence.
+ Observable sequence to match with the twelve previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over thirteen observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+
+
+
+ Creates a pattern that matches when all fourteen observable sequences have an available element.
+
+ The type of the elements in the fourteenth observable sequence.
+ Observable sequence to match with the thirteen previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over fourteen observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+
+
+
+ Creates a pattern that matches when all fifteen observable sequences have an available element.
+
+ The type of the elements in the fifteenth observable sequence.
+ Observable sequence to match with the fourteen previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over fifteen observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+
+
+
+ Creates a pattern that matches when all sixteen observable sequences have an available element.
+
+ The type of the elements in the sixteenth observable sequence.
+ Observable sequence to match with the fifteen previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over sixteen observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the sixteenth source sequence.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents an execution plan for join patterns.
+
+ The type of the results produced by the plan.
+
+
+
+ Abstract base class for join patterns represented by an expression tree.
+
+
+
+
+ Creates a new join pattern object using the specified expression tree representation.
+
+ Expression tree representing the join pattern.
+
+
+
+ Gets the expression tree representing the join pattern.
+
+
+
+
+ Represents a join pattern over two observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+
+
+
+ Creates a pattern that matches when all three observable sequences have an available element.
+
+ The type of the elements in the third observable sequence.
+ Observable sequence to match with the two previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over three observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+
+
+
+ Creates a pattern that matches when all four observable sequences have an available element.
+
+ The type of the elements in the fourth observable sequence.
+ Observable sequence to match with the three previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over four observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+
+
+
+ Creates a pattern that matches when all five observable sequences have an available element.
+
+ The type of the elements in the fifth observable sequence.
+ Observable sequence to match with the four previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over five observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+
+
+
+ Creates a pattern that matches when all six observable sequences have an available element.
+
+ The type of the elements in the sixth observable sequence.
+ Observable sequence to match with the five previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over six observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+
+
+
+ Creates a pattern that matches when all seven observable sequences have an available element.
+
+ The type of the elements in the seventh observable sequence.
+ Observable sequence to match with the six previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over seven observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+
+
+
+ Creates a pattern that matches when all eight observable sequences have an available element.
+
+ The type of the elements in the eighth observable sequence.
+ Observable sequence to match with the seven previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over eight observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+
+
+
+ Creates a pattern that matches when all nine observable sequences have an available element.
+
+ The type of the elements in the ninth observable sequence.
+ Observable sequence to match with the eight previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over nine observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+
+
+
+ Creates a pattern that matches when all ten observable sequences have an available element.
+
+ The type of the elements in the tenth observable sequence.
+ Observable sequence to match with the nine previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over ten observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+
+
+
+ Creates a pattern that matches when all eleven observable sequences have an available element.
+
+ The type of the elements in the eleventh observable sequence.
+ Observable sequence to match with the ten previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over eleven observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+
+
+
+ Creates a pattern that matches when all twelve observable sequences have an available element.
+
+ The type of the elements in the twelfth observable sequence.
+ Observable sequence to match with the eleven previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over twelve observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+
+
+
+ Creates a pattern that matches when all thirteen observable sequences have an available element.
+
+ The type of the elements in the thirteenth observable sequence.
+ Observable sequence to match with the twelve previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over thirteen observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+
+
+
+ Creates a pattern that matches when all fourteen observable sequences have an available element.
+
+ The type of the elements in the fourteenth observable sequence.
+ Observable sequence to match with the thirteen previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over fourteen observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+
+
+
+ Creates a pattern that matches when all fifteen observable sequences have an available element.
+
+ The type of the elements in the fifteenth observable sequence.
+ Observable sequence to match with the fourteen previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over fifteen observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+
+
+
+ Creates a pattern that matches when all sixteen observable sequences have an available element.
+
+ The type of the elements in the sixteenth observable sequence.
+ Observable sequence to match with the fifteen previous sequences.
+ Pattern object that matches when all observable sequences have an available element.
+ is null.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents a join pattern over sixteen observable sequences.
+
+ The type of the elements in the first source sequence.
+ The type of the elements in the second source sequence.
+ The type of the elements in the third source sequence.
+ The type of the elements in the fourth source sequence.
+ The type of the elements in the fifth source sequence.
+ The type of the elements in the sixth source sequence.
+ The type of the elements in the seventh source sequence.
+ The type of the elements in the eighth source sequence.
+ The type of the elements in the ninth source sequence.
+ The type of the elements in the tenth source sequence.
+ The type of the elements in the eleventh source sequence.
+ The type of the elements in the twelfth source sequence.
+ The type of the elements in the thirteenth source sequence.
+ The type of the elements in the fourteenth source sequence.
+ The type of the elements in the fifteenth source sequence.
+ The type of the elements in the sixteenth source sequence.
+
+
+
+ Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
+
+ The type of the elements in the result sequence, returned by the selector function.
+ Selector that will be invoked for elements in the source sequences.
+ Plan that produces the projected results, to be fed (with other plans) to the When operator.
+ is null.
+
+
+
+ Represents an execution plan for join patterns represented by an expression tree.
+
+ The type of the results produced by the plan.
+
+
+
+ Gets the expression tree representing the join pattern execution plan.
+
+
+
+
+ The System.Reactive.Joins namespace contains classes used to express join patterns over observable sequences using fluent method syntax.
+
+
+
+
+ Represents an object that retains the elements of the observable sequence and signals the end of the sequence.
+
+ The type of elements received from the source sequence.
+
+
+
+ Constructs an object that retains the values of source and signals the end of the sequence.
+
+ The observable sequence whose elements will be retained in the list.
+ is null.
+
+
+
+ Returns the last value of the observable sequence.
+
+
+
+
+ Determines the index of a specific item in the ListObservable.
+
+ The element to determine the index for.
+ The index of the specified item in the list; -1 if not found.
+
+
+
+ Inserts an item to the ListObservable at the specified index.
+
+ The index to insert the item at.
+ The item to insert in the list.
+
+
+
+ Removes the ListObservable item at the specified index.
+
+ The index of the item to remove.
+
+
+
+ Gets or sets the element at the specified index.
+
+ The index of the item to retrieve or set.
+
+
+
+ Adds an item to the ListObservable.
+
+ The item to add to the list.
+
+
+
+ Removes all items from the ListObservable.
+
+
+
+
+ Determines whether the ListObservable contains a specific value.
+
+ The item to search for in the list.
+ true if found; false otherwise.
+
+
+
+ Copies the elements of the ListObservable to an System.Array, starting at a particular System.Array index.
+
+ The array to copy elements to.
+ The start index in the array to start copying elements to.
+
+
+
+ Gets the number of elements contained in the ListObservable.
+
+
+
+
+ Gets a value that indicates whether the ListObservable is read-only.
+
+
+
+
+ Removes the first occurrence of a specific object from the ListObservable.
+
+ The item to remove from the list.
+ true if the item was found; false otherwise.
+
+
+
+ Returns an enumerator that iterates through the collection.
+
+ Enumerator over the list.
+
+
+
+ Subscribes an observer to the ListObservable which will be notified upon completion.
+
+ The observer to send completion or error messages to.
+ The disposable resource that can be used to unsubscribe.
+ is null.
+
+
+
+ The System.Reactive namespace contains interfaces and classes used throughout the Reactive Extensions library.
+
+
+
+
+ The System.Reactive.Subjects namespace contains interfaces and classes to represent subjects, which are objects implementing both and .
+ Subjects are often used as sources of events, allowing one party to raise events and allowing another party to write queries over the event stream. Because of their ability to
+ have multiple registered observers, subjects are also used as a facility to provide multicast behavior for event streams in queries.
+
+
+
+
+ Represents the result of an asynchronous operation.
+ The last value before the OnCompleted notification, or the error received through OnError, is sent to all subscribed observers.
+
+ The type of the elements processed by the subject.
+
+
+
+ A pre-allocated empty array indicating the AsyncSubject has terminated
+
+
+
+
+ A pre-allocated empty array indicating the AsyncSubject has terminated
+
+
+
+
+ Creates a subject that can only receive one value and that value is cached for all future observations.
+
+
+
+
+ Indicates whether the subject has observers subscribed to it.
+
+
+
+
+ Indicates whether the subject has been disposed.
+
+
+
+
+ Notifies all subscribed observers about the end of the sequence, also causing the last received value to be sent out (if any).
+
+
+
+
+ Notifies all subscribed observers about the exception.
+
+ The exception to send to all observers.
+ is null.
+
+
+
+ Sends a value to the subject. The last value received before successful termination will be sent to all subscribed and future observers.
+
+ The value to store in the subject.
+
+
+
+ Subscribes an observer to the subject.
+
+ Observer to subscribe to the subject.
+ Disposable object that can be used to unsubscribe the observer from the subject.
+ is null.
+
+
+
+ A disposable connecting the AsyncSubject and an IObserver.
+
+
+
+
+ Unsubscribe all observers and release resources.
+
+
+
+
+ Gets an awaitable object for the current AsyncSubject.
+
+ Object that can be awaited.
+
+
+
+ Specifies a callback action that will be invoked when the subject completes.
+
+ Callback action that will be invoked when the subject completes.
+ is null.
+
+
+
+ Gets whether the AsyncSubject has completed.
+
+
+
+
+ Gets the last element of the subject, potentially blocking until the subject completes successfully or exceptionally.
+
+ The last element of the subject. Throws an InvalidOperationException if no element was received.
+ The source sequence is empty.
+
+
+
+ Represents a value that changes over time.
+ Observers can subscribe to the subject to receive the last (or initial) value and all subsequent notifications.
+
+ The type of the elements processed by the subject.
+
+
+
+ Initializes a new instance of the class which creates a subject that caches its last value and starts with the specified value.
+
+ Initial value sent to observers when no other value has been received by the subject yet.
+
+
+
+ Indicates whether the subject has observers subscribed to it.
+
+
+
+
+ Indicates whether the subject has been disposed.
+
+
+
+
+ Gets the current value or throws an exception.
+
+ The initial value passed to the constructor until is called; after which, the last value passed to .
+
+ is frozen after is called.
+ After is called, always throws the specified exception.
+ An exception is always thrown after is called.
+
+ Reading is a thread-safe operation, though there's a potential race condition when or are being invoked concurrently.
+ In some cases, it may be necessary for a caller to use external synchronization to avoid race conditions.
+
+
+ Dispose was called.
+
+
+
+ Tries to get the current value or throws an exception.
+
+ The initial value passed to the constructor until is called; after which, the last value passed to .
+ true if a value is available; false if the subject was disposed.
+
+ The value returned from is frozen after is called.
+ After is called, always throws the specified exception.
+
+ Calling is a thread-safe operation, though there's a potential race condition when or are being invoked concurrently.
+ In some cases, it may be necessary for a caller to use external synchronization to avoid race conditions.
+
+
+
+
+
+ Notifies all subscribed observers about the end of the sequence.
+
+
+
+
+ Notifies all subscribed observers about the exception.
+
+ The exception to send to all observers.
+ is null.
+
+
+
+ Notifies all subscribed observers about the arrival of the specified element in the sequence.
+
+ The value to send to all observers.
+
+
+
+ Subscribes an observer to the subject.
+
+ Observer to subscribe to the subject.
+ Disposable object that can be used to unsubscribe the observer from the subject.
+ is null.
+
+
+
+ Unsubscribe all observers and release resources.
+
+
+
+
+ Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence.
+
+ The type of the elements in the source sequence.
+ The type of the elements in the resulting sequence, after transformation through the subject.
+
+
+
+ Creates an observable that can be connected and disconnected from its source.
+
+ Underlying observable source sequence that can be connected and disconnected from the wrapper.
+ Subject exposed by the connectable observable, receiving data from the underlying source sequence upon connection.
+
+
+
+ Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established.
+
+ Disposable object used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence.
+
+
+
+ Subscribes an observer to the observable sequence. No values from the underlying observable source will be received unless a connection was established through the Connect method.
+
+ Observer that will receive values from the underlying observable source when the current ConnectableObservable instance is connected through a call to Connect.
+ Disposable used to unsubscribe from the observable sequence.
+
+
+
+ Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence.
+
+
+ The type of the elements in the sequence.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+
+
+ Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established.
+
+ Disposable used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence.
+
+
+
+ Represents an object that is both an observable sequence as well as an observer.
+
+ The type of the elements processed by the subject.
+
+
+
+ Represents an object that is both an observable sequence as well as an observer.
+
+
+ The type of the elements received by the subject.
+ This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+ The type of the elements produced by the subject.
+ This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
+
+
+
+
+ Represents an object that is both an observable sequence as well as an observer.
+ Each notification is broadcasted to all subscribed and future observers, subject to buffer trimming policies.
+
+ The type of the elements processed by the subject.
+
+
+
+ Underlying optimized implementation of the replay subject.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified scheduler.
+
+ Scheduler the observers are invoked on.
+ is null.
+
+
+
+ Initializes a new instance of the class with the specified buffer size.
+
+ Maximum element count of the replay buffer.
+ is less than zero.
+
+
+
+ Initializes a new instance of the class with the specified buffer size and scheduler.
+
+ Maximum element count of the replay buffer.
+ Scheduler the observers are invoked on.
+ is null.
+ is less than zero.
+
+
+
+ Initializes a new instance of the class with the specified window.
+
+ Maximum time length of the replay buffer.
+ is less than .
+
+
+
+ Initializes a new instance of the class with the specified window and scheduler.
+
+ Maximum time length of the replay buffer.
+ Scheduler the observers are invoked on.
+ is null.
+ is less than .
+
+
+
+ Initializes a new instance of the class with the specified buffer size and window.
+
+ Maximum element count of the replay buffer.
+ Maximum time length of the replay buffer.
+ is less than zero. -or- is less than .
+
+
+
+ Initializes a new instance of the class with the specified buffer size, window and scheduler.
+
+ Maximum element count of the replay buffer.
+ Maximum time length of the replay buffer.
+ Scheduler the observers are invoked on.
+ is less than zero. -or- is less than .
+ is null.
+
+
+
+ Indicates whether the subject has observers subscribed to it.
+
+
+
+
+ Indicates whether the subject has been disposed.
+
+
+
+
+ Notifies all subscribed and future observers about the arrival of the specified element in the sequence.
+
+ The value to send to all observers.
+
+
+
+ Notifies all subscribed and future observers about the specified exception.
+
+ The exception to send to all observers.
+ is null.
+
+
+
+ Notifies all subscribed and future observers about the end of the sequence.
+
+
+
+
+ Subscribes an observer to the subject.
+
+ Observer to subscribe to the subject.
+ Disposable object that can be used to unsubscribe the observer from the subject.
+ is null.
+
+
+
+ Releases all resources used by the current instance of the class and unsubscribe all observers.
+
+
+
+
+ Original implementation of the ReplaySubject with time based operations (Scheduling, Stopwatch, buffer-by-time).
+
+
+
+
+ Specialized scheduled observer similar to a scheduled observer for the immediate scheduler.
+
+ Type of the elements processed by the observer.
+
+
+
+ Gate to control ownership transfer and protect data structures.
+
+
+
+
+ Observer to forward notifications to.
+
+
+
+
+ Queue to enqueue OnNext notifications into.
+
+
+
+
+ Standby queue to swap out for _queue when transferring ownership. This allows to reuse
+ queues in case of busy subjects where the initial replay doesn't suffice to catch up.
+
+
+
+
+ Exception passed to an OnError notification, if any.
+
+
+
+
+ Indicates whether an OnCompleted notification was received.
+
+
+
+
+ Indicates whether the observer is busy, i.e. some thread is actively draining the
+ notifications that were queued up.
+
+
+
+
+ Indicates whether a failure occurred when the owner was draining the queue. This will
+ prevent future work to be processed.
+
+
+
+
+ Creates a new scheduled observer that proxies to the specified observer.
+
+ Observer to forward notifications to.
+
+
+
+ Disposes the observer.
+
+
+
+
+ Notifies the observer of pending work. This will either cause the current owner to
+ process the newly enqueued notifications, or it will cause the calling thread to
+ become the owner and start processing the notification queue.
+
+
+
+
+ Notifies the observer of pending work. This will either cause the current owner to
+ process the newly enqueued notifications, or it will cause the calling thread to
+ become the owner and start processing the notification queue.
+
+ The number of enqueued notifications to process (ignored).
+
+
+
+ Enqueues an OnCompleted notification.
+
+
+
+
+ Enqueues an OnError notification.
+
+ Error of the notification.
+
+
+
+ Enqueues an OnNext notification.
+
+ Value of the notification.
+
+
+
+ Terminates the observer upon receiving terminal notifications, thus preventing
+ future notifications to go out.
+
+ Observer to send terminal notifications to.
+
+
+
+ Represents an object that is both an observable sequence as well as an observer.
+ Each notification is broadcasted to all subscribed observers.
+
+ The type of the elements processed by the subject.
+
+
+
+ Creates a subject.
+
+
+
+
+ Indicates whether the subject has observers subscribed to it.
+
+
+
+
+ Indicates whether the subject has been disposed.
+
+
+
+
+ Notifies all subscribed observers about the end of the sequence.
+
+
+
+
+ Notifies all subscribed observers about the specified exception.
+
+ The exception to send to all currently subscribed observers.
+ is null.
+
+
+
+ Notifies all subscribed observers about the arrival of the specified element in the sequence.
+
+ The value to send to all currently subscribed observers.
+
+
+
+ Subscribes an observer to the subject.
+
+ Observer to subscribe to the subject.
+ Disposable object that can be used to unsubscribe the observer from the subject.
+ is null.
+
+
+
+ Releases all resources used by the current instance of the class and unsubscribes all observers.
+
+
+
+
+ Provides a set of static methods for creating subjects.
+
+
+
+
+ Creates a subject from the specified observer and observable.
+
+ The type of the elements received by the observer.
+ The type of the elements produced by the observable sequence.
+ The observer used to send messages to the subject.
+ The observable used to subscribe to messages sent from the subject.
+ Subject implemented using the given observer and observable.
+ or is null.
+
+
+
+ Creates a subject from the specified observer and observable.
+
+ The type of the elements received by the observer and produced by the observable sequence.
+ The observer used to send messages to the subject.
+ The observable used to subscribe to messages sent from the subject.
+ Subject implemented using the given observer and observable.
+ or is null.
+
+
+
+ Synchronizes the messages sent to the subject.
+
+ The type of the elements received by the subject.
+ The type of the elements produced by the subject.
+ The subject to synchronize.
+ Subject whose messages are synchronized.
+ is null.
+
+
+
+ Synchronizes the messages sent to the subject.
+
+ The type of the elements received and produced by the subject.
+ The subject to synchronize.
+ Subject whose messages are synchronized.
+ is null.
+
+
+
+ Synchronizes the messages sent to the subject and notifies observers on the specified scheduler.
+
+ The type of the elements received by the subject.
+ The type of the elements produced by the subject.
+ The subject to synchronize.
+ Scheduler to notify observers on.
+ Subject whose messages are synchronized and whose observers are notified on the given scheduler.
+ or is null.
+
+
+
+ Synchronizes the messages sent to the subject and notifies observers on the specified scheduler.
+
+ The type of the elements received and produced by the subject.
+ The subject to synchronize.
+ Scheduler to notify observers on.
+ Subject whose messages are synchronized and whose observers are notified on the given scheduler.
+ or is null.
+
+
+
+ Base class for objects that are both an observable sequence as well as an observer.
+
+ The type of the elements processed by the subject.
+
+
+
+ Indicates whether the subject has observers subscribed to it.
+
+
+
+
+ Indicates whether the subject has been disposed.
+
+
+
+
+ Releases all resources used by the current instance of the subject and unsubscribes all observers.
+
+
+
+
+ Notifies all subscribed observers about the end of the sequence.
+
+
+
+
+ Notifies all subscribed observers about the specified exception.
+
+ The exception to send to all currently subscribed observers.
+ is null.
+
+
+
+ Notifies all subscribed observers about the arrival of the specified element in the sequence.
+
+ The value to send to all currently subscribed observers.
+
+
+
+ Subscribes an observer to the subject.
+
+ Observer to subscribe to the subject.
+ Disposable object that can be used to unsubscribe the observer from the subject.
+ is null.
+
+
+
+ Indicates the type of a notification.
+
+
+
+
+ Represents an OnNext notification.
+
+
+
+
+ Represents an OnError notification.
+
+
+
+
+ Represents an OnCompleted notification.
+
+
+
+
+ Represents a notification to an observer.
+
+ The type of the elements received by the observer.
+
+
+
+ Default constructor used by derived types.
+
+
+
+
+ Returns the value of an OnNext notification or throws an exception.
+
+
+
+
+ Returns a value that indicates whether the notification has a value.
+
+
+
+
+ Returns the exception of an OnError notification or returns null.
+
+
+
+
+ Gets the kind of notification that is represented.
+
+
+
+
+ Represents an OnNext notification to an observer.
+
+
+
+
+ Constructs a notification of a new value.
+
+
+
+
+ Returns the value of an OnNext notification.
+
+
+
+
+ Returns null.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns .
+
+
+
+
+ Returns the hash code for this instance.
+
+
+
+
+ Indicates whether this instance and a specified object are equal.
+
+
+
+
+ Returns a string representation of this instance.
+
+
+
+
+ Invokes the observer's method corresponding to the notification.
+
+ Observer to invoke the notification on.
+
+
+
+ Invokes the observer's method corresponding to the notification and returns the produced result.
+
+ Observer to invoke the notification on.
+ Result produced by the observation.
+
+
+
+ Invokes the delegate corresponding to the notification.
+
+ Delegate to invoke for an OnNext notification.
+ Delegate to invoke for an OnError notification.
+ Delegate to invoke for an OnCompleted notification.
+
+
+
+ Invokes the delegate corresponding to the notification and returns the produced result.
+
+ Delegate to invoke for an OnNext notification.
+ Delegate to invoke for an OnError notification.
+ Delegate to invoke for an OnCompleted notification.
+ Result produced by the observation.
+
+
+
+ Represents an OnError notification to an observer.
+
+
+
+
+ Constructs a notification of an exception.
+
+
+
+
+ Throws the exception.
+
+
+
+
+ Returns the exception.
+
+
+
+
+ Returns false.
+
+
+
+
+ Returns .
+
+
+
+
+ Returns the hash code for this instance.
+
+
+
+
+ Indicates whether this instance and other are equal.
+
+
+
+
+ Returns a string representation of this instance.
+
+
+
+
+ Invokes the observer's method corresponding to the notification.
+
+ Observer to invoke the notification on.
+
+
+
+ Invokes the observer's method corresponding to the notification and returns the produced result.
+
+ Observer to invoke the notification on.
+ Result produced by the observation.
+
+
+
+ Invokes the delegate corresponding to the notification.
+
+ Delegate to invoke for an OnNext notification.
+ Delegate to invoke for an OnError notification.
+ Delegate to invoke for an OnCompleted notification.
+
+
+
+ Invokes the delegate corresponding to the notification and returns the produced result.
+
+ Delegate to invoke for an OnNext notification.
+ Delegate to invoke for an OnError notification.
+ Delegate to invoke for an OnCompleted notification.
+ Result produced by the observation.
+
+
+
+ Represents an OnCompleted notification to an observer.
+
+
+
+
+ Complete notifications are stateless thus only one instance
+ can ever exist per type.
+
+
+
+
+ Constructs a notification of the end of a sequence.
+
+
+
+
+ Throws an .
+
+
+
+
+ Returns null.
+
+
+
+
+ Returns false.
+
+
+
+
+ Returns .
+
+
+
+
+ Returns the hash code for this instance.
+
+
+
+
+ Indicates whether this instance and other are equal.
+
+
+
+
+ Returns a string representation of this instance.
+
+
+
+
+ Invokes the observer's method corresponding to the notification.
+
+ Observer to invoke the notification on.
+
+
+
+ Invokes the observer's method corresponding to the notification and returns the produced result.
+
+ Observer to invoke the notification on.
+ Result produced by the observation.
+
+
+
+ Invokes the delegate corresponding to the notification.
+
+ Delegate to invoke for an OnNext notification.
+ Delegate to invoke for an OnError notification.
+ Delegate to invoke for an OnCompleted notification.
+
+
+
+ Invokes the delegate corresponding to the notification and returns the produced result.
+
+ Delegate to invoke for an OnNext notification.
+ Delegate to invoke for an OnError notification.
+ Delegate to invoke for an OnCompleted notification.
+ Result produced by the observation.
+
+
+
+ Determines whether the current object has the same observer message payload as a specified value.
+
+ An object to compare to the current object.
+ true if both objects have the same observer message payload; otherwise, false.
+
+ Equality of objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any).
+ This means two objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method.
+ In case one wants to determine whether two objects represent the same observer method call, use Object.ReferenceEquals identity equality instead.
+
+
+
+
+ Determines whether the two specified objects have the same observer message payload.
+
+ The first to compare, or null.
+ The second to compare, or null.
+ true if the first value has the same observer message payload as the second value; otherwise, false.
+
+ Equality of objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any).
+ This means two objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method.
+ In case one wants to determine whether two objects represent the same observer method call, use Object.ReferenceEquals identity equality instead.
+
+
+
+
+ Determines whether the two specified objects have a different observer message payload.
+
+ The first to compare, or null.
+ The second to compare, or null.
+ true if the first value has a different observer message payload as the second value; otherwise, false.
+
+ Equality of objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any).
+ This means two objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method.
+ In case one wants to determine whether two objects represent a different observer method call, use Object.ReferenceEquals identity equality instead.
+
+
+
+
+ Determines whether the specified System.Object is equal to the current .
+
+ The System.Object to compare with the current .
+ true if the specified System.Object is equal to the current ; otherwise, false.
+
+ Equality of objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any).
+ This means two objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method.
+ In case one wants to determine whether two objects represent the same observer method call, use Object.ReferenceEquals identity equality instead.
+
+
+
+
+ Invokes the observer's method corresponding to the notification.
+
+ Observer to invoke the notification on.
+
+
+
+ Invokes the observer's method corresponding to the notification and returns the produced result.
+
+ The type of the result returned from the observer's notification handlers.
+ Observer to invoke the notification on.
+ Result produced by the observation.
+
+
+
+ Invokes the delegate corresponding to the notification.
+
+ Delegate to invoke for an OnNext notification.
+ Delegate to invoke for an OnError notification.
+ Delegate to invoke for an OnCompleted notification.
+
+
+
+ Invokes the delegate corresponding to the notification and returns the produced result.
+
+ The type of the result returned from the notification handler delegates.
+ Delegate to invoke for an OnNext notification.
+ Delegate to invoke for an OnError notification.
+ Delegate to invoke for an OnCompleted notification.
+ Result produced by the observation.
+
+
+
+ Returns an observable sequence with a single notification, using the immediate scheduler.
+
+ The observable sequence that surfaces the behavior of the notification upon subscription.
+
+
+
+ Returns an observable sequence with a single notification.
+
+ Scheduler to send out the notification calls on.
+ The observable sequence that surfaces the behavior of the notification upon subscription.
+
+
+
+ Provides a set of static methods for constructing notifications.
+
+
+
+
+ Creates an object that represents an OnNext notification to an observer.
+
+ The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence.
+ The value contained in the notification.
+ The OnNext notification containing the value.
+
+
+
+ Creates an object that represents an OnError notification to an observer.
+
+ The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence.
+ The exception contained in the notification.
+ The OnError notification containing the exception.
+ is null.
+
+
+
+ Creates an object that represents an OnCompleted notification to an observer.
+
+ The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence.
+ The OnCompleted notification.
+
+
+
+ Abstract base class for implementations of the interface.
+
+
+ If you don't need a named type to create an observable sequence (i.e. you rather need
+ an instance rather than a reusable type), use the Observable.Create method to create
+ an observable sequence with specified subscription behavior.
+
+ The type of the elements in the sequence.
+
+
+
+ Subscribes the given observer to the observable sequence.
+
+ Observer that will receive notifications from the observable sequence.
+ Disposable object representing an observer's subscription to the observable sequence.
+ is null.
+
+
+
+ Implement this method with the core subscription logic for the observable sequence.
+
+ Observer to send notifications to.
+ Disposable object representing an observer's subscription to the observable sequence.
+
+
+
+ Provides a set of static methods for creating observers.
+
+
+
+
+ Creates an observer from a notification callback.
+
+ The type of the elements received by the observer.
+ Action that handles a notification.
+ The observer object that invokes the specified handler using a notification corresponding to each message it receives.
+ is null.
+
+
+
+ Creates a notification callback from an observer.
+
+ The type of the elements received by the observer.
+ Observer object.
+ The action that forwards its input notification to the underlying observer.
+ is null.
+
+
+
+ Creates an observer from the specified OnNext action.
+
+ The type of the elements received by the observer.
+ Observer's OnNext action implementation.
+ The observer object implemented using the given actions.
+ is null.
+
+
+
+ Creates an observer from the specified OnNext and OnError actions.
+
+ The type of the elements received by the observer.
+ Observer's OnNext action implementation.
+ Observer's OnError action implementation.
+ The observer object implemented using the given actions.
+ or is null.
+
+
+
+ Creates an observer from the specified OnNext and OnCompleted actions.
+
+ The type of the elements received by the observer.
+ Observer's OnNext action implementation.
+ Observer's OnCompleted action implementation.
+ The observer object implemented using the given actions.
+ or is null.
+
+
+
+ Creates an observer from the specified OnNext, OnError, and OnCompleted actions.
+
+ The type of the elements received by the observer.
+ Observer's OnNext action implementation.
+ Observer's OnError action implementation.
+ Observer's OnCompleted action implementation.
+ The observer object implemented using the given actions.
+ or or is null.
+
+
+
+ Hides the identity of an observer.
+
+ The type of the elements received by the source observer.
+ An observer whose identity to hide.
+ An observer that hides the identity of the specified observer.
+ is null.
+
+
+
+ Checks access to the observer for grammar violations. This includes checking for multiple OnError or OnCompleted calls, as well as reentrancy in any of the observer methods.
+ If a violation is detected, an InvalidOperationException is thrown from the offending observer method call.
+
+ The type of the elements received by the source observer.
+ The observer whose callback invocations should be checked for grammar violations.
+ An observer that checks callbacks invocations against the observer grammar and, if the checks pass, forwards those to the specified observer.
+ is null.
+
+
+
+ Synchronizes access to the observer such that its callback methods cannot be called concurrently from multiple threads. This overload is useful when coordinating access to an observer.
+ Notice reentrant observer callbacks on the same thread are still possible.
+
+ The type of the elements received by the source observer.
+ The observer whose callbacks should be synchronized.
+ An observer that delivers callbacks to the specified observer in a synchronized manner.
+ is null.
+
+ Because a Monitor is used to perform the synchronization, there's no protection against reentrancy from the same thread.
+ Hence, overlapped observer callbacks are still possible, which is invalid behavior according to the observer grammar. In order to protect against this behavior as
+ well, use the overload, passing true for the second parameter.
+
+
+
+
+ Synchronizes access to the observer such that its callback methods cannot be called concurrently. This overload is useful when coordinating access to an observer.
+ The parameter configures the type of lock used for synchronization.
+
+ The type of the elements received by the source observer.
+ The observer whose callbacks should be synchronized.
+ If set to true, reentrant observer callbacks will be queued up and get delivered to the observer in a sequential manner.
+ An observer that delivers callbacks to the specified observer in a synchronized manner.
+ is null.
+
+ When the parameter is set to false, behavior is identical to the overload which uses
+ a Monitor for synchronization. When the parameter is set to true, an
+ is used to queue up callbacks to the specified observer if a reentrant call is made.
+
+
+
+
+ Synchronizes access to the observer such that its callback methods cannot be called concurrently by multiple threads, using the specified gate object for use by a Monitor-based lock.
+ This overload is useful when coordinating multiple observers that access shared state by synchronizing on a common gate object.
+ Notice reentrant observer callbacks on the same thread are still possible.
+
+ The type of the elements received by the source observer.
+ The observer whose callbacks should be synchronized.
+ Gate object to synchronize each observer call on.
+ An observer that delivers callbacks to the specified observer in a synchronized manner.
+ or is null.
+
+ Because a Monitor is used to perform the synchronization, there's no protection against reentrancy from the same thread.
+ Hence, overlapped observer callbacks are still possible, which is invalid behavior according to the observer grammar. In order to protect against this behavior as
+ well, use the overload.
+
+
+
+
+ Synchronizes access to the observer such that its callback methods cannot be called concurrently, using the specified asynchronous lock to protect against concurrent and reentrant access.
+ This overload is useful when coordinating multiple observers that access shared state by synchronizing on a common asynchronous lock.
+
+ The type of the elements received by the source observer.
+ The observer whose callbacks should be synchronized.
+ Gate object to synchronize each observer call on.
+ An observer that delivers callbacks to the specified observer in a synchronized manner.
+ or is null.
+
+
+
+ Schedules the invocation of observer methods on the given scheduler.
+
+ The type of the elements received by the source observer.
+ The observer to schedule messages for.
+ Scheduler to schedule observer messages on.
+ Observer whose messages are scheduled on the given scheduler.
+ or is null.
+
+
+
+ Schedules the invocation of observer methods on the given synchronization context.
+
+ The type of the elements received by the source observer.
+ The observer to schedule messages for.
+ Synchronization context to schedule observer messages on.
+ Observer whose messages are scheduled on the given synchronization context.
+ or is null.
+
+
+
+ Converts an observer to a progress object.
+
+ The type of the progress objects received by the source observer.
+ The observer to convert.
+ Progress object whose Report messages correspond to the observer's OnNext messages.
+ is null.
+
+
+
+ Converts an observer to a progress object, using the specified scheduler to invoke the progress reporting method.
+
+ The type of the progress objects received by the source observer.
+ The observer to convert.
+ Scheduler to report progress on.
+ Progress object whose Report messages correspond to the observer's OnNext messages.
+ or is null.
+
+
+
+ Converts a progress object to an observer.
+
+ The type of the progress objects received by the progress reporter.
+ The progress object to convert.
+ Observer whose OnNext messages correspond to the progress object's Report messages.
+ is null.
+
+
+
+ Abstract base class for implementations of the interface.
+
+ This base class enforces the grammar of observers where and are terminal messages.
+ The type of the elements in the sequence.
+
+
+
+ Creates a new observer in a non-stopped state.
+
+
+
+
+ Notifies the observer of a new element in the sequence.
+
+ Next element in the sequence.
+
+
+
+ Implement this method to react to the receival of a new element in the sequence.
+
+ Next element in the sequence.
+ This method only gets called when the observer hasn't stopped yet.
+
+
+
+ Notifies the observer that an exception has occurred.
+
+ The error that has occurred.
+ is null.
+
+
+
+ Implement this method to react to the occurrence of an exception.
+
+ The error that has occurred.
+ This method only gets called when the observer hasn't stopped yet, and causes the observer to stop.
+
+
+
+ Notifies the observer of the end of the sequence.
+
+
+
+
+ Implement this method to react to the end of the sequence.
+
+ This method only gets called when the observer hasn't stopped yet, and causes the observer to stop.
+
+
+
+ Disposes the observer, causing it to transition to the stopped state.
+
+
+
+
+ Core implementation of .
+
+ true if the Dispose call was triggered by the method; false if it was triggered by the finalizer.
+
+
+
+ A strongly-typed resource class, for looking up localized strings, etc.
+
+
+
+
+ Returns the cached ResourceManager instance used by this class.
+
+
+
+
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+
+
+
+
+ Looks up a localized string similar to Using the Scheduler.{0} property is no longer supported due to refactoring of the API surface and elimination of platform-specific dependencies. Please include System.Reactive.PlatformServices for your target platform and use the {0}Scheduler type instead. If you're building a Windows Store app, notice some schedulers are no longer supported. Consider using Scheduler.Default instead..
+
+
+
+
+ Looks up a localized string similar to OnCompleted notification doesn't have a value..
+
+
+
+
+ Looks up a localized string similar to Disposable has already been assigned..
+
+
+
+
+ Looks up a localized string similar to Disposables collection can not contain null values..
+
+
+
+
+ Looks up a localized string similar to Failed to start monitoring system clock changes..
+
+
+
+
+ Looks up a localized string similar to Heap is empty..
+
+
+
+
+ Looks up a localized string similar to Observer has already terminated..
+
+
+
+
+ Looks up a localized string similar to Reentrancy has been detected..
+
+
+
+
+ Looks up a localized string similar to This scheduler operation has already been awaited..
+
+
+
+
+ A strongly-typed resource class, for looking up localized strings, etc.
+
+
+
+
+ Returns the cached ResourceManager instance used by this class.
+
+
+
+
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+
+
+
+
+ Looks up a localized string similar to {0} cannot be called when the scheduler is already running. Try using Sleep instead..
+
+
+
+
+ Looks up a localized string similar to Could not find event '{0}' on object of type '{1}'..
+
+
+
+
+ Looks up a localized string similar to Could not find event '{0}' on type '{1}'..
+
+
+
+
+ Looks up a localized string similar to Add method should take 1 parameter..
+
+
+
+
+ Looks up a localized string similar to The second parameter of the event delegate must be assignable to '{0}'..
+
+
+
+
+ Looks up a localized string similar to Event is missing the add method..
+
+
+
+
+ Looks up a localized string similar to Event is missing the remove method..
+
+
+
+
+ Looks up a localized string similar to The event delegate must have a void return type..
+
+
+
+
+ Looks up a localized string similar to The event delegate must have exactly two parameters..
+
+
+
+
+ Looks up a localized string similar to Remove method should take 1 parameter..
+
+
+
+
+ Looks up a localized string similar to The first parameter of the event delegate must be assignable to '{0}'..
+
+
+
+
+ Looks up a localized string similar to Remove method of a WinRT event should take an EventRegistrationToken..
+
+
+
+
+ Looks up a localized string similar to Sequence contains more than one element..
+
+
+
+
+ Looks up a localized string similar to Sequence contains more than one matching element..
+
+
+
+
+ Looks up a localized string similar to Sequence contains no elements..
+
+
+
+
+ Looks up a localized string similar to Sequence contains no matching element..
+
+
+
+
+ A strongly-typed resource class, for looking up localized strings, etc.
+
+
+
+
+ Returns the cached ResourceManager instance used by this class.
+
+
+
+
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+
+
+
+
+ Looks up a localized string similar to The WinRT thread pool doesn't support creating periodic timers with a period below 1 millisecond..
+
+
+
+
+ A strongly-typed resource class, for looking up localized strings, etc.
+
+
+
+
+ Returns the cached ResourceManager instance used by this class.
+
+
+
+
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+
+
+
+
+ Looks up a localized string similar to Expected Qbservable.ToQueryable..
+
+
+
+
+ Looks up a localized string similar to Invalid expression tree type..
+
+
+
+
+ Looks up a localized string similar to There is no method '{0}' on type '{1}' that matches the specified arguments..
+
+
+
+
+ Extension of the interface compatible with async method return types.
+
+
+ This class implements a "task-like" type that can be used as the return type of an asynchronous
+ method in C# 7.0 and beyond. For example:
+
+ async ITaskObservable<int> RxAsync()
+ {
+ var res = await Observable.Return(21).Delay(TimeSpan.FromSeconds(1));
+ return res * 2;
+ }
+
+
+ The type of the elements in the sequence.
+
+
+
+ Gets an awaiter that can be used to await the eventual completion of the observable sequence.
+
+ An awaiter that can be used to await the eventual completion of the observable sequence.
+
+
+
+ Interface representing an awaiter for an .
+
+ The type of the elements in the sequence.
+
+
+
+ Gets a Boolean indicating whether the observable sequence has completed.
+
+
+
+
+ Gets the result produced by the observable sequence.
+
+ The result produced by the observable sequence.
+
+
+
+ The System.Reactive.Threading.Tasks namespace contains helpers for the conversion between tasks and observable sequences.
+
+
+
+
+ Provides a set of static methods for converting tasks to observable sequences.
+
+
+
+
+ Returns an observable sequence that signals when the task completes.
+
+ Task to convert to an observable sequence.
+ An observable sequence that produces a unit value when the task completes, or propagates the exception produced by the task.
+ is null.
+ If the specified task object supports cancellation, consider using instead.
+
+
+
+ Returns an observable sequence that signals when the task completes.
+
+ Task to convert to an observable sequence.
+ Scheduler on which to notify observers about completion, cancellation or failure.
+ An observable sequence that produces a unit value when the task completes, or propagates the exception produced by the task.
+ is null or is null.
+ If the specified task object supports cancellation, consider using instead.
+
+
+
+ Returns an observable sequence that propagates the result of the task.
+
+ The type of the result produced by the task.
+ Task to convert to an observable sequence.
+ An observable sequence that produces the task's result, or propagates the exception produced by the task.
+ is null.
+ If the specified task object supports cancellation, consider using instead.
+
+
+
+ Returns an observable sequence that propagates the result of the task.
+
+ The type of the result produced by the task.
+ Task to convert to an observable sequence.
+ Scheduler on which to notify observers about completion, cancellation or failure.
+ An observable sequence that produces the task's result, or propagates the exception produced by the task.
+ is null or is null.
+ If the specified task object supports cancellation, consider using instead.
+
+
+
+ Returns a task that will receive the last value or the exception produced by the observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to convert to a task.
+ A task that will receive the last element or the exception produced by the observable sequence.
+ is null.
+
+
+
+ Returns a task that will receive the last value or the exception produced by the observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to convert to a task.
+ The scheduler used for overriding where the task completion signals will be issued.
+ A task that will receive the last element or the exception produced by the observable sequence.
+ or is null.
+
+
+
+ Returns a task that will receive the last value or the exception produced by the observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to convert to a task.
+ The state to use as the underlying task's AsyncState.
+ A task that will receive the last element or the exception produced by the observable sequence.
+ is null.
+
+
+
+ Returns a task that will receive the last value or the exception produced by the observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to convert to a task.
+ The state to use as the underlying task's AsyncState.
+ The scheduler used for overriding where the task completion signals will be issued.
+ A task that will receive the last element or the exception produced by the observable sequence.
+ or is null.
+
+
+
+ Returns a task that will receive the last value or the exception produced by the observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to convert to a task.
+ Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence.
+ A task that will receive the last element or the exception produced by the observable sequence.
+ is null.
+
+
+
+ Returns a task that will receive the last value or the exception produced by the observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to convert to a task.
+ Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence.
+ The scheduler used for overriding where the task completion signals will be issued.
+ A task that will receive the last element or the exception produced by the observable sequence.
+ or is null.
+
+
+
+ Returns a task that will receive the last value or the exception produced by the observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to convert to a task.
+ Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence.
+ The state to use as the underlying task's .
+ A task that will receive the last element or the exception produced by the observable sequence.
+ is null.
+
+
+
+ Returns a task that will receive the last value or the exception produced by the observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to convert to a task.
+ Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence.
+ The state to use as the underlying task's .
+ The scheduler used for overriding where the task completion signals will be issued.
+ A task that will receive the last element or the exception produced by the observable sequence.
+ or is null.
+
+
+
+ Represents a value associated with time interval information.
+ The time interval can represent the time it took to produce the value, the interval relative to a previous value, the value's delivery time relative to a base, etc.
+
+ The type of the value being annotated with time interval information.
+
+
+
+ Constructs a time interval value.
+
+ The value to be annotated with a time interval.
+ Time interval associated with the value.
+
+
+
+ Gets the value.
+
+
+
+
+ Gets the interval.
+
+
+
+
+ Determines whether the current value has the same and as a specified value.
+
+ An object to compare to the current value.
+ true if both values have the same and ; otherwise, false.
+
+
+
+ Determines whether the two specified values have the same and .
+
+ The first value to compare.
+ The second value to compare.
+ true if the first value has the same and as the second value; otherwise, false.
+
+
+
+ Determines whether the two specified values don't have the same and .
+
+ The first value to compare.
+ The second value to compare.
+ true if the first value has a different or as the second value; otherwise, false.
+
+
+
+ Determines whether the specified System.Object is equal to the current .
+
+ The System.Object to compare with the current .
+ true if the specified System.Object is equal to the current ; otherwise, false.
+
+
+
+ Returns the hash code for the current value.
+
+ A hash code for the current value.
+
+
+
+ Returns a string representation of the current value.
+
+ String representation of the current value.
+
+
+
+ Represents value with a timestamp on it.
+ The timestamp typically represents the time the value was received, using an IScheduler's clock to obtain the current time.
+
+ The type of the value being timestamped.
+
+
+
+ Constructs a timestamped value.
+
+ The value to be annotated with a timestamp.
+ Timestamp associated with the value.
+
+
+
+ Gets the value.
+
+
+
+
+ Gets the timestamp.
+
+
+
+
+ Determines whether the current value has the same and as a specified value.
+
+ An object to compare to the current value.
+ true if both values have the same and ; otherwise, false.
+
+
+
+ Determines whether the two specified values have the same and .
+
+ The first value to compare.
+ The second value to compare.
+ true if the first value has the same and as the second value; otherwise, false.
+
+
+
+ Determines whether the two specified values don't have the same and .
+
+ The first value to compare.
+ The second value to compare.
+ true if the first value has a different or as the second value; otherwise, false.
+
+
+
+ Determines whether the specified System.Object is equal to the current .
+
+ The System.Object to compare with the current .
+ true if the specified System.Object is equal to the current ; otherwise, false.
+
+
+
+ Returns the hash code for the current value.
+
+ A hash code for the current value.
+
+
+
+ Returns a string representation of the current value.
+
+ String representation of the current value.
+
+
+
+ A helper class with a factory method for creating instances.
+
+
+
+
+ Creates an instance of a . This is syntactic sugar that uses type inference
+ to avoid specifying a type in a constructor call, which is very useful when using anonymous types.
+
+ The value to be annotated with a timestamp.
+ Timestamp associated with the value.
+ Creates a new timestamped value.
+
+
+
+ Represents a type with a single value. This type is often used to denote the successful completion of a void-returning method (C#) or a Sub procedure (Visual Basic).
+
+
+
+
+ Determines whether the specified value is equal to the current . Because has a single value, this always returns true.
+
+ An object to compare to the current value.
+ Because has a single value, this always returns true.
+
+
+
+ Determines whether the specified System.Object is equal to the current .
+
+ The System.Object to compare with the current .
+ true if the specified System.Object is a value; otherwise, false.
+
+
+
+ Returns the hash code for the current value.
+
+ A hash code for the current value.
+
+
+
+ Returns a string representation of the current value.
+
+ String representation of the current value.
+
+
+
+ Determines whether the two specified values are equal. Because has a single value, this always returns true.
+
+ The first value to compare.
+ The second value to compare.
+ Because has a single value, this always returns true.
+
+
+
+ Determines whether the two specified values are not equal. Because has a single value, this always returns false.
+
+ The first value to compare.
+ The second value to compare.
+ Because has a single value, this always returns false.
+
+
+
+ Gets the single value.
+
+
+
+
+ Provides a set of static methods for subscribing delegates to observables.
+
+
+
+
+ Subscribes to the observable sequence without specifying any handlers.
+ This method can be used to evaluate the observable sequence for its side-effects only.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ object used to unsubscribe from the observable sequence.
+ is null.
+
+
+
+ Subscribes an element handler to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Action to invoke for each element in the observable sequence.
+ object used to unsubscribe from the observable sequence.
+ or is null.
+
+
+
+ Subscribes an element handler and an exception handler to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon exceptional termination of the observable sequence.
+ object used to unsubscribe from the observable sequence.
+ or or is null.
+
+
+
+ Subscribes an element handler and a completion handler to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon graceful termination of the observable sequence.
+ object used to unsubscribe from the observable sequence.
+ or or is null.
+
+
+
+ Subscribes an element handler, an exception handler, and a completion handler to an observable sequence.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon exceptional termination of the observable sequence.
+ Action to invoke upon graceful termination of the observable sequence.
+ object used to unsubscribe from the observable sequence.
+ or or or is null.
+
+
+
+ Subscribes an observer to an observable sequence, using a to support unsubscription.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Observer to subscribe to the sequence.
+ CancellationToken that can be signaled to unsubscribe from the source sequence.
+ or is null.
+
+
+
+ Subscribes to the observable sequence without specifying any handlers, using a to support unsubscription.
+ This method can be used to evaluate the observable sequence for its side-effects only.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ CancellationToken that can be signaled to unsubscribe from the source sequence.
+ is null.
+
+
+
+ Subscribes an element handler to an observable sequence, using a to support unsubscription.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Action to invoke for each element in the observable sequence.
+ CancellationToken that can be signaled to unsubscribe from the source sequence.
+ or is null.
+
+
+
+ Subscribes an element handler and an exception handler to an observable sequence, using a to support unsubscription.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon exceptional termination of the observable sequence.
+ CancellationToken that can be signaled to unsubscribe from the source sequence.
+ or or is null.
+
+
+
+ Subscribes an element handler and a completion handler to an observable sequence, using a to support unsubscription.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon graceful termination of the observable sequence.
+ CancellationToken that can be signaled to unsubscribe from the source sequence.
+ or or is null.
+
+
+
+ Subscribes an element handler, an exception handler, and a completion handler to an observable sequence, using a to support unsubscription.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Action to invoke for each element in the observable sequence.
+ Action to invoke upon exceptional termination of the observable sequence.
+ Action to invoke upon graceful termination of the observable sequence.
+ CancellationToken that can be signaled to unsubscribe from the source sequence.
+ or or or is null.
+
+
+
+ Subscribes to the specified source, re-routing synchronous exceptions during invocation of the method to the observer's channel.
+ This method is typically used when writing query operators.
+
+ The type of the elements in the source sequence.
+ Observable sequence to subscribe to.
+ Observer that will be passed to the observable sequence, and that will be used for exception propagation.
+ object used to unsubscribe from the observable sequence.
+ or is null.
+
+
+
+ Represents a builder for asynchronous methods that return a task-like .
+
+ The type of the elements in the sequence.
+
+
+
+ The compiler-generated asynchronous state machine representing the execution flow of the asynchronous
+ method whose return type is a task-like .
+
+
+
+
+ The underlying observable sequence representing the result produced by the asynchronous method.
+
+
+
+
+ Creates an instance of the struct.
+
+ A new instance of the struct.
+
+
+
+ Begins running the builder with the associated state machine.
+
+ The type of the state machine.
+ The state machine instance, passed by reference.
+ is null.
+
+
+
+ Associates the builder with the specified state machine.
+
+ The state machine instance to associate with the builder.
+ is null.
+ The state machine was previously set.
+
+
+
+ Marks the observable as successfully completed.
+
+ The result to use to complete the observable sequence.
+ The observable has already completed.
+
+
+
+ Marks the observable as failed and binds the specified exception to the observable sequence.
+
+ The exception to bind to the observable sequence.
+ is null.
+ The observable has already completed.
+
+
+
+ Gets the observable sequence for this builder.
+
+
+
+
+ Schedules the state machine to proceed to the next action when the specified awaiter completes.
+
+ The type of the awaiter.
+ The type of the state machine.
+ The awaiter.
+ The state machine.
+
+
+
+ Schedules the state machine to proceed to the next action when the specified awaiter completes.
+
+ The type of the awaiter.
+ The type of the state machine.
+ The awaiter.
+ The state machine.
+
+
+
+ Rethrows an exception that was thrown from an awaiter's OnCompleted methods.
+
+ The exception to rethrow.
+
+
+
+ Implementation of the IObservable<T> interface compatible with async method return types.
+
+
+ This class implements a "task-like" type that can be used as the return type of an asynchronous
+ method in C# 7.0 and beyond. For example:
+
+ async Observable<int> RxAsync()
+ {
+ var res = await Observable.Return(21).Delay(TimeSpan.FromSeconds(1));
+ return res * 2;
+ }
+
+
+
+
+
+ The underlying observable sequence to subscribe to in case the asynchronous method did not
+ finish synchronously.
+
+
+
+
+ The result returned by the asynchronous method in case the method finished synchronously.
+
+
+
+
+ The exception thrown by the asynchronous method in case the method finished synchronously.
+
+
+
+
+ Creates a new for an asynchronous method that has not finished yet.
+
+
+
+
+ Creates a new for an asynchronous method that synchronously returned
+ the specified value.
+
+ The result returned by the asynchronous method.
+
+
+
+ Creates a new for an asynchronous method that synchronously threw
+ the specified .
+
+ The exception thrown by the asynchronous method.
+
+
+
+ Marks the observable as successfully completed.
+
+ The result to use to complete the observable sequence.
+ The observable has already completed.
+
+
+
+ Marks the observable as failed and binds the specified exception to the observable sequence.
+
+ The exception to bind to the observable sequence.
+ is null.
+ The observable has already completed.
+
+
+
+ Subscribes the given observer to the observable sequence.
+
+ Observer that will receive notifications from the observable sequence.
+ Disposable object representing an observer's subscription to the observable sequence.
+ is null.
+
+
+
+ Gets an awaiter that can be used to await the eventual completion of the observable sequence.
+
+ An awaiter that can be used to await the eventual completion of the observable sequence.
+
+
+
+ Gets a Boolean indicating whether the observable sequence has completed.
+
+
+
+
+ Gets the result produced by the observable sequence.
+
+ The result produced by the observable sequence.
+
+
+
+ Attaches the specified to the observable sequence.
+
+ The continuation to attach.
+
+
+
diff --git a/bin/System.Runtime.CompilerServices.Unsafe.dll b/bin/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 000000000000..103462b3e96c
Binary files /dev/null and b/bin/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/bin/System.Security.AccessControl.dll b/bin/System.Security.AccessControl.dll
new file mode 100644
index 000000000000..7a8365546831
Binary files /dev/null and b/bin/System.Security.AccessControl.dll differ
diff --git a/bin/System.Security.Cryptography.ProtectedData.dll b/bin/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 000000000000..a60b95b78061
Binary files /dev/null and b/bin/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/bin/System.Security.Principal.Windows.dll b/bin/System.Security.Principal.Windows.dll
new file mode 100644
index 000000000000..0c7819bd81aa
Binary files /dev/null and b/bin/System.Security.Principal.Windows.dll differ
diff --git a/bin/System.Text.Encodings.Web.dll b/bin/System.Text.Encodings.Web.dll
new file mode 100644
index 000000000000..41e59b281f19
Binary files /dev/null and b/bin/System.Text.Encodings.Web.dll differ
diff --git a/bin/System.Text.Json.dll b/bin/System.Text.Json.dll
new file mode 100644
index 000000000000..799c1efb2b99
Binary files /dev/null and b/bin/System.Text.Json.dll differ
diff --git a/bin/extensions.deps.json b/bin/extensions.deps.json
new file mode 100644
index 000000000000..d732b6616fa3
--- /dev/null
+++ b/bin/extensions.deps.json
@@ -0,0 +1,3636 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "extensions/1.0.0": {
+ "dependencies": {
+ "Microsoft.Azure.DurableTask.AzureStorage": "2.0.0-rc",
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask": "3.0.0-rc.1",
+ "Microsoft.Azure.WebJobs.Extensions.Storage": "5.3.0",
+ "Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator": "1.1.3",
+ "System.Reactive.Reference": "4.4.0.0"
+ },
+ "runtime": {
+ "extensions.dll": {}
+ }
+ },
+ "Azure.Core/1.38.0": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "System.ClientModel": "1.0.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1",
+ "System.Memory.Data": "1.0.2",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.7.2",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Core.dll": {
+ "assemblyVersion": "1.38.0.0",
+ "fileVersion": "1.3800.24.12602"
+ }
+ }
+ },
+ "Azure.Data.Tables/12.8.1": {
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "System.Text.Json": "4.7.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Data.Tables.dll": {
+ "assemblyVersion": "12.8.1.0",
+ "fileVersion": "12.800.123.41503"
+ }
+ }
+ },
+ "Azure.Identity/1.11.0": {
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "Microsoft.Identity.Client": "4.60.1",
+ "Microsoft.Identity.Client.Extensions.Msal": "4.60.1",
+ "System.Memory": "4.5.4",
+ "System.Security.Cryptography.ProtectedData": "4.7.0",
+ "System.Text.Json": "4.7.2",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Identity.dll": {
+ "assemblyVersion": "1.11.0.0",
+ "fileVersion": "1.1100.24.20901"
+ }
+ }
+ },
+ "Azure.Storage.Blobs/12.18.0": {
+ "dependencies": {
+ "Azure.Storage.Common": "12.17.0",
+ "System.Text.Json": "4.7.2"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Azure.Storage.Blobs.dll": {
+ "assemblyVersion": "12.18.0.0",
+ "fileVersion": "12.1800.23.46203"
+ }
+ }
+ },
+ "Azure.Storage.Common/12.17.0": {
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "System.IO.Hashing": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Storage.Common.dll": {
+ "assemblyVersion": "12.17.0.0",
+ "fileVersion": "12.1700.23.46203"
+ }
+ }
+ },
+ "Azure.Storage.Queues/12.16.0": {
+ "dependencies": {
+ "Azure.Storage.Common": "12.17.0",
+ "System.Memory.Data": "1.0.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Azure.Storage.Queues.dll": {
+ "assemblyVersion": "12.16.0.0",
+ "fileVersion": "12.1600.23.46203"
+ }
+ }
+ },
+ "Castle.Core/5.0.0": {
+ "dependencies": {
+ "System.Diagnostics.EventLog": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Castle.Core.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Google.Protobuf/3.21.9": {
+ "dependencies": {
+ "System.Memory": "4.5.4",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Google.Protobuf.dll": {
+ "assemblyVersion": "3.21.9.0",
+ "fileVersion": "3.21.9.0"
+ }
+ }
+ },
+ "Grpc.Core/2.46.5": {
+ "dependencies": {
+ "Grpc.Core.Api": "2.46.5",
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Grpc.Core.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.46.5.0"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so": {
+ "rid": "linux-arm64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so": {
+ "rid": "linux-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib": {
+ "rid": "osx-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x64/native/grpc_csharp_ext.x64.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x86/native/grpc_csharp_ext.x86.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Grpc.Core.Api/2.46.5": {
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Grpc.Core.Api.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.46.5.0"
+ }
+ }
+ },
+ "Microsoft.ApplicationInsights/2.21.0": {
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "6.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
+ "assemblyVersion": "2.21.0.429",
+ "fileVersion": "2.21.0.429"
+ }
+ }
+ },
+ "Microsoft.AspNet.WebApi.Client/5.2.6": {
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.1",
+ "Newtonsoft.Json.Bson": "1.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
+ "assemblyVersion": "5.2.6.0",
+ "fileVersion": "5.2.60510.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http": "2.2.0",
+ "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Authorization": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": "2.2.0",
+ "System.IO.Pipelines": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Hosting/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http": "2.2.0",
+ "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
+ "Microsoft.Extensions.Configuration": "2.2.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1",
+ "System.Reflection.Metadata": "1.6.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": "2.2.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Http/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.WebUtilities": "2.2.0",
+ "Microsoft.Extensions.ObjectPool": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0",
+ "Microsoft.Net.Http.Headers": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": "2.2.0",
+ "System.Text.Encodings.Web": "4.7.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
+ "Microsoft.Net.Http.Headers": "2.2.0",
+ "System.Buffers": "4.5.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Http.Features/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.JsonPatch/2.2.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "Newtonsoft.Json": "13.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
+ "Microsoft.Net.Http.Headers": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
+ "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http": "2.2.0",
+ "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Routing": "2.2.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection": "2.2.0",
+ "Microsoft.Extensions.DependencyModel": "2.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.JsonPatch": "2.2.0",
+ "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.WebApiCompatShim/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNet.WebApi.Client": "5.2.6",
+ "Microsoft.AspNetCore.Mvc.Core": "2.2.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0",
+ "Microsoft.AspNetCore.WebUtilities": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Routing/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.ObjectPool": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.WebUtilities": "2.2.0",
+ "Microsoft.Extensions.Configuration.Binder": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0",
+ "Microsoft.Net.Http.Headers": "2.2.0",
+ "System.Memory": "4.5.4",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Security.Cryptography.Cng": "4.5.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.1": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
+ "assemblyVersion": "2.2.1.0",
+ "fileVersion": "2.2.1.18346"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.WebUtilities/2.2.0": {
+ "dependencies": {
+ "Microsoft.Net.Http.Headers": "2.2.0",
+ "System.Text.Encodings.Web": "4.7.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.Azure.DurableTask.ApplicationInsights/0.1.2": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.21.0",
+ "Microsoft.Azure.DurableTask.Core": "2.15.1",
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/DurableTask.ApplicationInsights.dll": {
+ "assemblyVersion": "0.1.0.0",
+ "fileVersion": "0.1.2.4564"
+ }
+ }
+ },
+ "Microsoft.Azure.DurableTask.AzureStorage/2.0.0-rc": {
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "Azure.Data.Tables": "12.8.1",
+ "Azure.Storage.Blobs": "12.18.0",
+ "Azure.Storage.Queues": "12.16.0",
+ "Microsoft.Azure.DurableTask.Core": "2.15.1",
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "System.Linq.Async": "6.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/DurableTask.AzureStorage.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.4696"
+ }
+ }
+ },
+ "Microsoft.Azure.DurableTask.Core/2.15.1": {
+ "dependencies": {
+ "Castle.Core": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Diagnostics.DiagnosticSource": "6.0.1",
+ "System.Reactive.Compatibility": "4.4.1",
+ "System.Reactive.Core": "4.4.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/DurableTask.Core.dll": {
+ "assemblyVersion": "2.15.0.0",
+ "fileVersion": "2.15.1.4564"
+ }
+ }
+ },
+ "Microsoft.Azure.WebJobs/3.0.37": {
+ "dependencies": {
+ "Microsoft.Azure.WebJobs.Core": "3.0.37",
+ "Microsoft.Extensions.Configuration": "2.2.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
+ "Microsoft.Extensions.Configuration.Json": "2.1.0",
+ "Microsoft.Extensions.Hosting": "2.1.0",
+ "Microsoft.Extensions.Logging": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Configuration": "2.1.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Memory.Data": "1.0.2",
+ "System.Threading.Tasks.Dataflow": "4.8.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Host.dll": {
+ "assemblyVersion": "3.0.37.0",
+ "fileVersion": "3.0.37.0"
+ }
+ }
+ },
+ "Microsoft.Azure.WebJobs.Core/3.0.37": {
+ "dependencies": {
+ "System.ComponentModel.Annotations": "4.5.0",
+ "System.Diagnostics.TraceSource": "4.3.0",
+ "System.Memory.Data": "1.0.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.dll": {
+ "assemblyVersion": "3.0.37.0",
+ "fileVersion": "3.0.37.0"
+ }
+ }
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask/3.0.0-rc.1": {
+ "dependencies": {
+ "Azure.Identity": "1.11.0",
+ "Microsoft.AspNetCore.Mvc.WebApiCompatShim": "2.2.0",
+ "Microsoft.AspNetCore.Routing": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.1",
+ "Microsoft.Azure.DurableTask.ApplicationInsights": "0.1.2",
+ "Microsoft.Azure.DurableTask.AzureStorage": "2.0.0-rc",
+ "Microsoft.Azure.DurableTask.Core": "2.15.1",
+ "Microsoft.Azure.WebJobs": "3.0.37",
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers": "0.5.0",
+ "Microsoft.DurableTask.Sidecar.Protobuf": "1.0.0",
+ "Microsoft.Extensions.Azure": "1.7.3",
+ "Microsoft.Extensions.Http": "2.2.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll": {
+ "assemblyVersion": "3.0.0.0",
+ "fileVersion": "3.0.0.0"
+ }
+ }
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers/0.5.0": {},
+ "Microsoft.Azure.WebJobs.Extensions.Storage/5.3.0": {
+ "dependencies": {
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs": "5.3.0",
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues": "5.1.3"
+ }
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/5.3.0": {
+ "dependencies": {
+ "Azure.Storage.Blobs": "12.18.0",
+ "Azure.Storage.Queues": "12.16.0",
+ "Microsoft.Azure.WebJobs": "3.0.37",
+ "Microsoft.Extensions.Azure": "1.7.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll": {
+ "assemblyVersion": "5.3.0.0",
+ "fileVersion": "5.300.24.21802"
+ }
+ }
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues/5.1.3": {
+ "dependencies": {
+ "Azure.Storage.Queues": "12.16.0",
+ "Microsoft.Azure.WebJobs": "3.0.37",
+ "Microsoft.Extensions.Azure": "1.7.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll": {
+ "assemblyVersion": "5.1.3.0",
+ "fileVersion": "5.100.323.32603"
+ }
+ }
+ },
+ "Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator/1.1.3": {
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.3.409",
+ "Microsoft.Build.Utilities.Core": "15.3.409",
+ "System.Runtime.Loader": "4.3.0"
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "Microsoft.Build.Framework/15.3.409": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Thread": "4.0.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.Build.Framework.dll": {
+ "assemblyVersion": "15.1.0.0",
+ "fileVersion": "15.3.409.57025"
+ }
+ }
+ },
+ "Microsoft.Build.Utilities.Core/15.3.409": {
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.3.409",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Collections.NonGeneric": "4.0.1",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Process": "4.1.0",
+ "System.Diagnostics.TraceSource": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.Reader": "4.0.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Runtime.Serialization.Xml": "4.1.1",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.CodePages": "4.0.1",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.0.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XmlDocument": "4.0.1"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.Build.Utilities.Core.dll": {
+ "assemblyVersion": "15.1.0.0",
+ "fileVersion": "15.3.409.57025"
+ }
+ }
+ },
+ "Microsoft.CSharp/4.5.0": {},
+ "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
+ "dependencies": {
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "2.1.0.0"
+ }
+ }
+ },
+ "Microsoft.DurableTask.Sidecar.Protobuf/1.0.0": {
+ "dependencies": {
+ "Google.Protobuf": "3.21.9",
+ "Grpc.Core": "2.46.5"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.DurableTask.Sidecar.Protobuf.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.3387"
+ }
+ }
+ },
+ "Microsoft.Extensions.Azure/1.7.3": {
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "Azure.Identity": "1.11.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Configuration.Binder": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Azure.dll": {
+ "assemblyVersion": "1.7.3.0",
+ "fileVersion": "1.700.324.21601"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Physical": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/2.1.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
+ "Newtonsoft.Json": "13.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "2.1.0.18136"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyModel/2.1.0": {
+ "dependencies": {
+ "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Linq": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "2.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting/2.1.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "2.1.0.18136"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.Extensions.Http/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Configuration/2.1.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "2.2.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "2.1.0.18136"
+ }
+ }
+ },
+ "Microsoft.Extensions.ObjectPool/2.2.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Primitives": "2.2.0",
+ "System.ComponentModel.Annotations": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Configuration.Binder": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "2.1.0.18136"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/2.2.0": {
+ "dependencies": {
+ "System.Memory": "4.5.4",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18315"
+ }
+ }
+ },
+ "Microsoft.Identity.Client/4.60.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.35.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "4.60.1.0",
+ "fileVersion": "4.60.1.0"
+ }
+ }
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.60.1": {
+ "dependencies": {
+ "Microsoft.Identity.Client": "4.60.1",
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Security.Cryptography.ProtectedData": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "assemblyVersion": "4.60.1.0",
+ "fileVersion": "4.60.1.0"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.Net.Http.Headers/2.2.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0",
+ "System.Buffers": "4.5.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.18316"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "NETStandard.Library/1.6.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.1.25517"
+ }
+ }
+ },
+ "Newtonsoft.Json.Bson/1.0.1": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "13.0.1"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.1.20722"
+ }
+ }
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "System.AppContext/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Buffers/4.5.1": {},
+ "System.ClientModel/1.0.0": {
+ "dependencies": {
+ "System.Memory.Data": "1.0.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ClientModel.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.24.5302"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Collections.NonGeneric/4.0.1": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.ComponentModel.Annotations/4.5.0": {},
+ "System.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/6.0.1": {
+ "dependencies": {
+ "System.Memory": "4.5.4",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.1523.11507"
+ }
+ }
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Diagnostics.Process/4.1.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.0.0",
+ "System.Threading.ThreadPool": "4.0.10",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.TraceSource/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Dynamic.Runtime/4.0.11": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Buffers": "4.5.1",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ }
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO.Hashing/6.0.0": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IO.Hashing.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.IO.Pipelines/4.5.2": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.IO.Pipelines.dll": {
+ "assemblyVersion": "4.0.0.1",
+ "fileVersion": "4.6.26919.2"
+ }
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Linq.Async/6.0.1": {
+ "runtime": {
+ "lib/netstandard2.1/System.Linq.Async.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.1.35981"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Memory/4.5.4": {},
+ "System.Memory.Data/1.0.2": {
+ "dependencies": {
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.Data.dll": {
+ "assemblyVersion": "1.0.2.0",
+ "fileVersion": "1.0.221.20802"
+ }
+ }
+ },
+ "System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Net.Sockets/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {},
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Private.DataContractSerialization/4.1.1": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XmlDocument": "4.0.1",
+ "System.Xml.XmlSerializer": "4.0.11"
+ }
+ },
+ "System.Reactive/4.4.1": {},
+ "System.Reactive.Compatibility/4.4.1": {
+ "dependencies": {
+ "System.Reactive.Core": "4.4.1",
+ "System.Reactive.Interfaces": "4.4.1",
+ "System.Reactive.Linq": "4.4.1",
+ "System.Reactive.PlatformServices": "4.4.1",
+ "System.Reactive.Providers": "4.4.1"
+ }
+ },
+ "System.Reactive.Core/4.4.1": {
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.Core.dll": {
+ "assemblyVersion": "3.0.6000.0",
+ "fileVersion": "3.0.6000.0"
+ }
+ }
+ },
+ "System.Reactive.Interfaces/4.4.1": {
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.Interfaces.dll": {
+ "assemblyVersion": "3.0.6000.0",
+ "fileVersion": "3.0.6000.0"
+ }
+ }
+ },
+ "System.Reactive.Linq/4.4.1": {
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.Linq.dll": {
+ "assemblyVersion": "3.0.6000.0",
+ "fileVersion": "3.0.6000.0"
+ }
+ }
+ },
+ "System.Reactive.PlatformServices/4.4.1": {
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.PlatformServices.dll": {
+ "assemblyVersion": "3.0.6000.0",
+ "fileVersion": "3.0.6000.0"
+ }
+ }
+ },
+ "System.Reactive.Providers/4.4.1": {
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.Providers.dll": {
+ "assemblyVersion": "3.0.6000.0",
+ "fileVersion": "3.0.6000.0"
+ }
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {},
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.Reader/4.0.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.1.1": {
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.1.1": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Private.DataContractSerialization": "4.1.1",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Text.Encoding": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Cng/4.5.0": {},
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "4.0.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.5.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encodings.Web/4.7.2": {
+ "runtime": {
+ "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "4.0.5.1",
+ "fileVersion": "4.700.21.11602"
+ }
+ }
+ },
+ "System.Text.Json/4.7.2": {
+ "runtime": {
+ "lib/netcoreapp3.0/System.Text.Json.dll": {
+ "assemblyVersion": "4.0.1.2",
+ "fileVersion": "4.700.20.21406"
+ }
+ }
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.8.0": {},
+ "System.Threading.Tasks.Extensions/4.5.4": {},
+ "System.Threading.Thread/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.ThreadPool/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlDocument/4.0.1": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.11": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XmlDocument": "4.0.1"
+ }
+ },
+ "System.Reactive.Reference/4.4.0.0": {
+ "runtime": {
+ "System.Reactive.dll": {
+ "assemblyVersion": "4.4.0.0",
+ "fileVersion": "4.4.1.57983"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "extensions/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Azure.Core/1.38.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==",
+ "path": "azure.core/1.38.0",
+ "hashPath": "azure.core.1.38.0.nupkg.sha512"
+ },
+ "Azure.Data.Tables/12.8.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UsJVAV2omsi6Ws5zqV2/TMP2GQjFlmjiFXnYKV5u5+9MQ588VDkvvlh4TGzLRAG2DxVx7rdgjtQ9baTlz/+log==",
+ "path": "azure.data.tables/12.8.1",
+ "hashPath": "azure.data.tables.12.8.1.nupkg.sha512"
+ },
+ "Azure.Identity/1.11.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JcpkMpW8Wx/XfQfMiSc9ecdIy0GhdpsMCT3Lh8EJZQ/NN6OxPeY7OAcfmucsvdfrldbFJd04m+Kfd+1QILBAgg==",
+ "path": "azure.identity/1.11.0",
+ "hashPath": "azure.identity.1.11.0.nupkg.sha512"
+ },
+ "Azure.Storage.Blobs/12.18.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IUqHRXnabXCzmmvkzqPK4FuGzLxmKSugDEt5Hm5B/JlJFR+aHDsPW4nCLbG0txThqBSKPqcBBU/oA6c5TaFJgA==",
+ "path": "azure.storage.blobs/12.18.0",
+ "hashPath": "azure.storage.blobs.12.18.0.nupkg.sha512"
+ },
+ "Azure.Storage.Common/12.17.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/h8SpUkxMuQy/MbNFeJQGmhYt3JnYfEiGeDojtNgLNzzhyDnRYgjF3ZKYgjORYQpn0Spr+4+v2MZy+0GNJBLrg==",
+ "path": "azure.storage.common/12.17.0",
+ "hashPath": "azure.storage.common.12.17.0.nupkg.sha512"
+ },
+ "Azure.Storage.Queues/12.16.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ociB+g4P8d4o6K6dsCxz4qVNyGzmTKC5t7wlDLAezbfAp4m41SAUvxcDU0N4Mqxf04GPQeyImSeMFQfDzZHEcQ==",
+ "path": "azure.storage.queues/12.16.0",
+ "hashPath": "azure.storage.queues.12.16.0.nupkg.sha512"
+ },
+ "Castle.Core/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-edc8jjyXqzzy8jFdhs36FZdwmlDDTgqPb2Zy1Q5F/f2uAc88bu/VS/0Tpvgupmpl9zJOvOo5ZizVANb0ltN1NQ==",
+ "path": "castle.core/5.0.0",
+ "hashPath": "castle.core.5.0.0.nupkg.sha512"
+ },
+ "Google.Protobuf/3.21.9": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==",
+ "path": "google.protobuf/3.21.9",
+ "hashPath": "google.protobuf.3.21.9.nupkg.sha512"
+ },
+ "Grpc.Core/2.46.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bD35LTppXYmRvymX6rV+mqc2wZcZf8o0fYkEJ414cul1RiGRWTeVWOtDC94CaTGG2Ie/XoLTd347bnBB5vHaGQ==",
+ "path": "grpc.core/2.46.5",
+ "hashPath": "grpc.core.2.46.5.nupkg.sha512"
+ },
+ "Grpc.Core.Api/2.46.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Y8ZWjt0axK3ApE3OrERivXiIg6aboIq7AXbWAmdZWtHXfj3PkZeihSOaHN+acGkRy5CeSMXgBCj/+kWjyPFiaw==",
+ "path": "grpc.core.api/2.46.5",
+ "hashPath": "grpc.core.api.2.46.5.nupkg.sha512"
+ },
+ "Microsoft.ApplicationInsights/2.21.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==",
+ "path": "microsoft.applicationinsights/2.21.0",
+ "hashPath": "microsoft.applicationinsights.2.21.0.nupkg.sha512"
+ },
+ "Microsoft.AspNet.WebApi.Client/5.2.6": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-owAlEIUZXWSnkK8Z1c+zR47A0X6ykF4XjbPok4lQKNuciUfHLGPd6QnI+rt/8KlQ17PmF+I4S3f+m+Qe4IvViw==",
+ "path": "microsoft.aspnet.webapi.client/5.2.6",
+ "hashPath": "microsoft.aspnet.webapi.client.5.2.6.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
+ "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==",
+ "path": "microsoft.aspnetcore.authentication.core/2.2.0",
+ "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authorization/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
+ "path": "microsoft.aspnetcore.authorization/2.2.0",
+ "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
+ "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
+ "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==",
+ "path": "microsoft.aspnetcore.connections.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Hosting/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==",
+ "path": "microsoft.aspnetcore.hosting/2.2.0",
+ "hashPath": "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
+ "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
+ "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Http/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
+ "path": "microsoft.aspnetcore.http/2.2.0",
+ "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
+ "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
+ "path": "microsoft.aspnetcore.http.extensions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Http.Features/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
+ "path": "microsoft.aspnetcore.http.features/2.2.0",
+ "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.JsonPatch/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-o9BB9hftnCsyJalz9IT0DUFxz8Xvgh3TOfGWolpuf19duxB4FySq7c25XDYBmBMS+sun5/PsEUAi58ra4iJAoA==",
+ "path": "microsoft.aspnetcore.jsonpatch/2.2.0",
+ "hashPath": "microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==",
+ "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==",
+ "path": "microsoft.aspnetcore.mvc.core/2.2.0",
+ "hashPath": "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==",
+ "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0",
+ "hashPath": "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Mvc.WebApiCompatShim/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YKovpp46Fgah0N8H4RGb+7x9vdjj50mS3NON910pYJFQmn20Cd1mYVkTunjy/DrZpvwmJ8o5Es0VnONSYVXEAQ==",
+ "path": "microsoft.aspnetcore.mvc.webapicompatshim/2.2.0",
+ "hashPath": "microsoft.aspnetcore.mvc.webapicompatshim.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==",
+ "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Routing/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
+ "path": "microsoft.aspnetcore.routing/2.2.0",
+ "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
+ "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==",
+ "path": "microsoft.aspnetcore.server.kestrel/2.2.0",
+ "hashPath": "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==",
+ "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0",
+ "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==",
+ "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0",
+ "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==",
+ "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0",
+ "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tzRdyQ0qrMJ5YS0qsXfmhVd/kr25IzLpayoIAvU1yi27wqsqxXVPADDEv0S9PaS7xn6bpMFit8kZw92IICDSWg==",
+ "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.1",
+ "hashPath": "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.1.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.WebUtilities/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
+ "path": "microsoft.aspnetcore.webutilities/2.2.0",
+ "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Azure.DurableTask.ApplicationInsights/0.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eiGf4O/L2Gv+j9uu5wK/7mx50oS6bEEO8grqrp8a323Soc4/dBzm7gYrXHaU2nmtFtTO2ZXTPXd9BbaLPd19IQ==",
+ "path": "microsoft.azure.durabletask.applicationinsights/0.1.2",
+ "hashPath": "microsoft.azure.durabletask.applicationinsights.0.1.2.nupkg.sha512"
+ },
+ "Microsoft.Azure.DurableTask.AzureStorage/2.0.0-rc": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jA/ccGOKUsMcNT7V8h7yGGpXc3gbgnQDUVrjw5LnUsxbIjEVxEDcJNd6d5x4VKWAUOeFRohC7SFFZow36bDIYw==",
+ "path": "microsoft.azure.durabletask.azurestorage/2.0.0-rc",
+ "hashPath": "microsoft.azure.durabletask.azurestorage.2.0.0-rc.nupkg.sha512"
+ },
+ "Microsoft.Azure.DurableTask.Core/2.15.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Dny0o4Thdx8efgF5qixcQ5/H8S+mPASLDuAzATsetnNQSX4VXSZ5shoTpKRA6qqm7ljgsxB3gyqJHOrCKp8mUQ==",
+ "path": "microsoft.azure.durabletask.core/2.15.1",
+ "hashPath": "microsoft.azure.durabletask.core.2.15.1.nupkg.sha512"
+ },
+ "Microsoft.Azure.WebJobs/3.0.37": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cB8ExO360UeFprY4GAuumLhg35krY56LriAAE8kNkckxFQlEIZwQ5lMsOFU0cRwUcvFajLMdALllKF2PgYJRkA==",
+ "path": "microsoft.azure.webjobs/3.0.37",
+ "hashPath": "microsoft.azure.webjobs.3.0.37.nupkg.sha512"
+ },
+ "Microsoft.Azure.WebJobs.Core/3.0.37": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nKlnoQyKmC5HsUIWLXu3a9VYhLKAAriZQ8v3PLldWKjV1vIQMiHKGK68FbLjRtvZsxCnIYS44gLlQjuOua//dg==",
+ "path": "microsoft.azure.webjobs.core/3.0.37",
+ "hashPath": "microsoft.azure.webjobs.core.3.0.37.nupkg.sha512"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask/3.0.0-rc.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZmBGgsRCj1+8c6i2sS7RIJp19I+qHSAmicF7jfjt6GVVbO/eo+4uP+A/kg1pq1iwhWvVItG7PEgbC2JJ49V/hw==",
+ "path": "microsoft.azure.webjobs.extensions.durabletask/3.0.0-rc.1",
+ "hashPath": "microsoft.azure.webjobs.extensions.durabletask.3.0.0-rc.1.nupkg.sha512"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers/0.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BEqCR7Mu3i7H95Bbu4pcHpaFfrHdPxgXgXxN0TbyzMDSVRnK7B4AHDtH+gjPmqKVB+y965XHw7zscKYg4s/xbw==",
+ "path": "microsoft.azure.webjobs.extensions.durabletask.analyzers/0.5.0",
+ "hashPath": "microsoft.azure.webjobs.extensions.durabletask.analyzers.0.5.0.nupkg.sha512"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage/5.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4Z7f31ajNV2ivS1cRHfSX30aieeYIS2h1JTNOMwt2BKcbxgzJXBEDDW0cTfim2ArKBf5YC+GC7+P7ND9wUUV7Q==",
+ "path": "microsoft.azure.webjobs.extensions.storage/5.3.0",
+ "hashPath": "microsoft.azure.webjobs.extensions.storage.5.3.0.nupkg.sha512"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/5.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kOKozwyS0gEm1Mfl72xiSmmOPcW01W/HgkA4Ujj6AgDzx149pTRrQ6SZt9Pey0OcXuyo6G4fjWz6q0Fm5ohs4g==",
+ "path": "microsoft.azure.webjobs.extensions.storage.blobs/5.3.0",
+ "hashPath": "microsoft.azure.webjobs.extensions.storage.blobs.5.3.0.nupkg.sha512"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues/5.1.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7mxdJ9Z0Hl1zNeIAmYXa1IJBatWg/iMr/Zg6skFSLp6nXj8R/Z8NWSloO2WQUAAlAP6qNidVR0mDTdIm9k+tjg==",
+ "path": "microsoft.azure.webjobs.extensions.storage.queues/5.1.3",
+ "hashPath": "microsoft.azure.webjobs.extensions.storage.queues.5.1.3.nupkg.sha512"
+ },
+ "Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator/1.1.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z0r0TDEOW+OoomDv9hkytgc03DCz7SMk7T+nKvoWz/PYZB+UbMuwSX5Jaf5w5NRs0+l7JObWpuWDFu0XhRUEsw==",
+ "path": "microsoft.azure.webjobs.script.extensionsmetadatagenerator/1.1.3",
+ "hashPath": "microsoft.azure.webjobs.script.extensionsmetadatagenerator.1.1.3.nupkg.sha512"
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
+ "path": "microsoft.bcl.asyncinterfaces/6.0.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Build.Framework/15.3.409": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+H11umzkkq46gMtgzmQ1JAVHEmZKmtMiPvi4YZiRPtmaGJC9xv8czMs8lHAL/W/wEnsv7SxD0UFNtNSdbpyvFA==",
+ "path": "microsoft.build.framework/15.3.409",
+ "hashPath": "microsoft.build.framework.15.3.409.nupkg.sha512"
+ },
+ "Microsoft.Build.Utilities.Core/15.3.409": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UVntU9ObJxbrPoycTTtt6cZHiSRTowXRMvjNLGzFECRU81p0NCEvguVt3A7tQEF2mOTvyUh/T21oaNhaWKtndQ==",
+ "path": "microsoft.build.utilities.core/15.3.409",
+ "hashPath": "microsoft.build.utilities.core.15.3.409.nupkg.sha512"
+ },
+ "Microsoft.CSharp/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
+ "path": "microsoft.csharp/4.5.0",
+ "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==",
+ "path": "microsoft.dotnet.platformabstractions/2.1.0",
+ "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512"
+ },
+ "Microsoft.DurableTask.Sidecar.Protobuf/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QbJ2G47IZgKHrCZv53kOPK+gUVoUvC3CGDYsMK6aRYeU0HF+JOwzlNLZk2mZHl6hQtjVNF0DdmcSkFu4EioMJQ==",
+ "path": "microsoft.durabletask.sidecar.protobuf/1.0.0",
+ "hashPath": "microsoft.durabletask.sidecar.protobuf.1.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Azure/1.7.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9UwW+nCw0wNYt6G+s6UGDkNmS/kVvZSnYoOF6rlmRN2fhnlt5WE3CS1EMq3H7UsOSSg+88sNC2wvTPqFr5dT/w==",
+ "path": "microsoft.extensions.azure/1.7.3",
+ "hashPath": "microsoft.extensions.azure.1.7.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
+ "path": "microsoft.extensions.configuration/2.2.0",
+ "hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==",
+ "path": "microsoft.extensions.configuration.abstractions/2.2.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
+ "path": "microsoft.extensions.configuration.binder/2.2.0",
+ "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/2.2.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==",
+ "path": "microsoft.extensions.configuration.fileextensions/2.2.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/2.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9OCdAv7qiRtRlXQnECxW9zINUK8bYPKbNp5x8FQaLZbm/flv7mPvo1muZ1nsKGMZF4uL4Bl6nHw2v1fi3MqQ1Q==",
+ "path": "microsoft.extensions.configuration.json/2.1.0",
+ "hashPath": "microsoft.extensions.configuration.json.2.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
+ "path": "microsoft.extensions.dependencyinjection/2.2.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyModel/2.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==",
+ "path": "microsoft.extensions.dependencymodel/2.1.0",
+ "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==",
+ "path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==",
+ "path": "microsoft.extensions.fileproviders.physical/2.2.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
+ "path": "microsoft.extensions.filesystemglobbing/2.2.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting/2.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
+ "path": "microsoft.extensions.hosting/2.1.0",
+ "hashPath": "microsoft.extensions.hosting.2.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
+ "path": "microsoft.extensions.hosting.abstractions/2.2.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Http/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hZ8mz6FgxSeFtkHzw+Ad0QOt2yjjpq4WaG9itnkyChtXYTrDlbkw3af2WJ9wdEAAyYqOlQaVDB6MJSEo8dd/vw==",
+ "path": "microsoft.extensions.http/2.2.0",
+ "hashPath": "microsoft.extensions.http.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==",
+ "path": "microsoft.extensions.logging/2.2.0",
+ "hashPath": "microsoft.extensions.logging.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==",
+ "path": "microsoft.extensions.logging.abstractions/2.2.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Configuration/2.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nMAcTACzW37zc3f7n5fIYsRDXtjjQA2U/kiE4xmuSLn7coCIeDfFTpUhJ+wG/3vwb5f1lFWNpyXGyQdlUCIXUw==",
+ "path": "microsoft.extensions.logging.configuration/2.1.0",
+ "hashPath": "microsoft.extensions.logging.configuration.2.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.ObjectPool/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
+ "path": "microsoft.extensions.objectpool/2.2.0",
+ "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
+ "path": "microsoft.extensions.options/2.2.0",
+ "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-w/MP147fSqlIcCymaNpLbjdJsFVkSJM9Sz+jbWMr1gKMDVxoOS8AuFjJkVyKU/eydYxHIR/K1Hn3wisJBW5gSg==",
+ "path": "microsoft.extensions.options.configurationextensions/2.1.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.2.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==",
+ "path": "microsoft.extensions.primitives/2.2.0",
+ "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client/4.60.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rC+qiskr8RKq2a43hH55vuDRz4Wto+bxwxMrKzCIOann1NL0OFFTjEk4ZVnTTBdijVWC6mhOaSmdV1H6J6bXmA==",
+ "path": "microsoft.identity.client/4.60.1",
+ "hashPath": "microsoft.identity.client.4.60.1.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.60.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EdPcGqvruFzNBcW+/3DSP4vNmLNYXSSnngj+QecAxmy6VRnvA7kt5KE2bU8qQmt4KkOitNHBVYVwze2XkqOLxw==",
+ "path": "microsoft.identity.client.extensions.msal/4.60.1",
+ "hashPath": "microsoft.identity.client.extensions.msal.4.60.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
+ "path": "microsoft.identitymodel.abstractions/6.35.0",
+ "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.Net.Http.Headers/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
+ "path": "microsoft.net.http.headers/2.2.0",
+ "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
+ "path": "microsoft.win32.primitives/4.3.0",
+ "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "path": "microsoft.win32.registry/4.7.0",
+ "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
+ },
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
+ "path": "netstandard.library/1.6.1",
+ "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
+ "path": "newtonsoft.json/13.0.1",
+ "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json.Bson/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
+ "path": "newtonsoft.json.bson/1.0.1",
+ "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "path": "runtime.native.system.io.compression/4.3.0",
+ "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "path": "runtime.native.system.net.http/4.3.0",
+ "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "path": "runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "path": "system.appcontext/4.3.0",
+ "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "path": "system.buffers/4.5.1",
+ "hashPath": "system.buffers.4.5.1.nupkg.sha512"
+ },
+ "System.ClientModel/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==",
+ "path": "system.clientmodel/1.0.0",
+ "hashPath": "system.clientmodel.1.0.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "path": "system.collections.concurrent/4.3.0",
+ "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.NonGeneric/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "path": "system.collections.nongeneric/4.0.1",
+ "hashPath": "system.collections.nongeneric.4.0.1.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
+ "path": "system.componentmodel.annotations/4.5.0",
+ "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
+ "path": "system.diagnostics.diagnosticsource/6.0.1",
+ "hashPath": "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512"
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
+ "path": "system.diagnostics.eventlog/4.7.0",
+ "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Process/4.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
+ "path": "system.diagnostics.process/4.1.0",
+ "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "path": "system.diagnostics.tools/4.3.0",
+ "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.TraceSource/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
+ "path": "system.diagnostics.tracesource/4.3.0",
+ "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
+ },
+ "System.Dynamic.Runtime/4.0.11": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "path": "system.dynamic.runtime/4.0.11",
+ "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "path": "system.globalization.calendars/4.3.0",
+ "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "path": "system.globalization.extensions/4.3.0",
+ "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "path": "system.io.compression/4.3.0",
+ "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
+ "path": "system.io.compression.zipfile/4.3.0",
+ "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "path": "system.io.filesystem/4.3.0",
+ "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
+ "path": "system.io.filesystem.accesscontrol/5.0.0",
+ "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Hashing/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rfm2jYCaUeGysFEZjDe7j1R4x6Z6BzumS/vUT5a1AA/AWJuGX71PoGB0RmpyX3VmrGqVnAwtfMn39OHR8Y/5+g==",
+ "path": "system.io.hashing/6.0.0",
+ "hashPath": "system.io.hashing.6.0.0.nupkg.sha512"
+ },
+ "System.IO.Pipelines/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==",
+ "path": "system.io.pipelines/4.5.2",
+ "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Async/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==",
+ "path": "system.linq.async/6.0.1",
+ "hashPath": "system.linq.async.6.0.1.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "path": "system.memory/4.5.4",
+ "hashPath": "system.memory.4.5.4.nupkg.sha512"
+ },
+ "System.Memory.Data/1.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
+ "path": "system.memory.data/1.0.2",
+ "hashPath": "system.memory.data.1.0.2.nupkg.sha512"
+ },
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
+ "path": "system.net.http/4.3.0",
+ "hashPath": "system.net.http.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "path": "system.net.primitives/4.3.0",
+ "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Sockets/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
+ "path": "system.net.sockets/4.3.0",
+ "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "path": "system.numerics.vectors/4.5.0",
+ "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Private.DataContractSerialization/4.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
+ "path": "system.private.datacontractserialization/4.1.1",
+ "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512"
+ },
+ "System.Reactive/4.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
+ "path": "system.reactive/4.4.1",
+ "hashPath": "system.reactive.4.4.1.nupkg.sha512"
+ },
+ "System.Reactive.Compatibility/4.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ad2/TBOBV0/45pzccpbQj2vo3S85uipF/PfqkbQUnH0vOtBqrXd1eqWtky5YTXq/WIRU1HF62HFSOdXiNC+E4A==",
+ "path": "system.reactive.compatibility/4.4.1",
+ "hashPath": "system.reactive.compatibility.4.4.1.nupkg.sha512"
+ },
+ "System.Reactive.Core/4.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YQHJOt8hZvwFelIIfs19t8Jhz5P6NS1ZZccbVUuE1LFyoFZjaUecdYIYykgXzpyj5Rl40XC3xkyuuhHRaAln2w==",
+ "path": "system.reactive.core/4.4.1",
+ "hashPath": "system.reactive.core.4.4.1.nupkg.sha512"
+ },
+ "System.Reactive.Interfaces/4.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pk++rL2lxe6yhBEzgc9eJWR57YxYxtAmcz9U0JdKyHEzTLqba3B7MhhYrpN2ToTPVRyJJzxMdPdLieIJvlsACg==",
+ "path": "system.reactive.interfaces/4.4.1",
+ "hashPath": "system.reactive.interfaces.4.4.1.nupkg.sha512"
+ },
+ "System.Reactive.Linq/4.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wyOVuUyHmPV667REPwcZjFjOlRLX6qSGVcXMye0qUqBAWFB3bu1RO1XLGWZTnf0d67DQHV69kw7tAtTh+4EYyQ==",
+ "path": "system.reactive.linq/4.4.1",
+ "hashPath": "system.reactive.linq.4.4.1.nupkg.sha512"
+ },
+ "System.Reactive.PlatformServices/4.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jVF40bEwEES1DpDxI8pRcVEkH/TztFCOSToMYIK6TNE5QojsQljfvZd6jaDG4jRZ9hkoMYyUbkeSDYG/1ldPDg==",
+ "path": "system.reactive.platformservices/4.4.1",
+ "hashPath": "system.reactive.platformservices.4.4.1.nupkg.sha512"
+ },
+ "System.Reactive.Providers/4.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-K9RDgMHsuceX8QTk5ALCgYpexA9qcMsIi4K97Eigqcz9hD6fa4Smrjy8F/m6YdVJZFsBGaZ3uwj+d0loAdMfbA==",
+ "path": "system.reactive.providers/4.4.1",
+ "hashPath": "system.reactive.providers.4.4.1.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "path": "system.reflection.metadata/1.6.0",
+ "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.Reader/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "path": "system.resources.reader/4.0.0",
+ "hashPath": "system.resources.reader.4.0.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "path": "system.runtime.loader/4.3.0",
+ "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "path": "system.runtime.numerics/4.3.0",
+ "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Primitives/4.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "path": "system.runtime.serialization.primitives/4.1.1",
+ "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Xml/4.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yqfKHkWUAdI0hdDIdD9KDzluKtZ8IIqLF3O7xIZlt6UTs1bOvFRpCvRTvGQva3Ak/ZM9/nq9IHBJ1tC4Ybcrjg==",
+ "path": "system.runtime.serialization.xml/4.1.1",
+ "hashPath": "system.runtime.serialization.xml.4.1.1.nupkg.sha512"
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "path": "system.security.accesscontrol/5.0.0",
+ "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "path": "system.security.cryptography.algorithms/4.3.0",
+ "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
+ "path": "system.security.cryptography.cng/4.5.0",
+ "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "path": "system.security.cryptography.csp/4.3.0",
+ "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "path": "system.security.cryptography.encoding/4.3.0",
+ "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "path": "system.security.cryptography.openssl/4.3.0",
+ "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
+ "path": "system.security.cryptography.protecteddata/4.7.0",
+ "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "path": "system.security.cryptography.x509certificates/4.3.0",
+ "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
+ "path": "system.security.principal.windows/5.0.0",
+ "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "path": "system.text.encoding.codepages/4.0.1",
+ "hashPath": "system.text.encoding.codepages.4.0.1.nupkg.sha512"
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "path": "system.text.encoding.extensions/4.3.0",
+ "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/4.7.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==",
+ "path": "system.text.encodings.web/4.7.2",
+ "hashPath": "system.text.encodings.web.4.7.2.nupkg.sha512"
+ },
+ "System.Text.Json/4.7.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
+ "path": "system.text.json/4.7.2",
+ "hashPath": "system.text.json.4.7.2.nupkg.sha512"
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "path": "system.text.regularexpressions/4.3.0",
+ "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Dataflow/4.8.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PSIdcgbyNv7FZvZ1I9Mqy6XZOwstYYMdZiXuHvIyc0gDyPjEhrrP9OvTGDHp+LAHp1RNSLjPYssyqox9+Kt9Ug==",
+ "path": "system.threading.tasks.dataflow/4.8.0",
+ "hashPath": "system.threading.tasks.dataflow.4.8.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
+ "path": "system.threading.tasks.extensions/4.5.4",
+ "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
+ },
+ "System.Threading.Thread/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "path": "system.threading.thread/4.0.0",
+ "hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
+ },
+ "System.Threading.ThreadPool/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
+ "path": "system.threading.threadpool/4.0.10",
+ "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512"
+ },
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
+ "path": "system.threading.timer/4.3.0",
+ "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "path": "system.xml.readerwriter/4.3.0",
+ "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "path": "system.xml.xdocument/4.3.0",
+ "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XmlDocument/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "path": "system.xml.xmldocument/4.0.1",
+ "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512"
+ },
+ "System.Xml.XmlSerializer/4.0.11": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
+ "path": "system.xml.xmlserializer/4.0.11",
+ "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512"
+ },
+ "System.Reactive.Reference/4.4.0.0": {
+ "type": "reference",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/extensions.dll b/bin/extensions.dll
new file mode 100644
index 000000000000..20523c697aaa
Binary files /dev/null and b/bin/extensions.dll differ
diff --git a/bin/extensions.json b/bin/extensions.json
new file mode 100644
index 000000000000..84ea4af20398
--- /dev/null
+++ b/bin/extensions.json
@@ -0,0 +1,7 @@
+{
+ "extensions":[
+ { "name": "DurableTask", "typeName":"Microsoft.Azure.WebJobs.Extensions.DurableTask.DurableTaskWebJobsStartup, Microsoft.Azure.WebJobs.Extensions.DurableTask, Version=3.0.0.0, Culture=neutral, PublicKeyToken=014045d636e89289"},
+ { "name": "AzureStorageBlobs", "typeName":"Microsoft.Azure.WebJobs.Extensions.Storage.AzureStorageBlobsWebJobsStartup, Microsoft.Azure.WebJobs.Extensions.Storage.Blobs, Version=5.3.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8"},
+ { "name": "AzureStorageQueues", "typeName":"Microsoft.Azure.WebJobs.Extensions.Storage.AzureStorageQueuesWebJobsStartup, Microsoft.Azure.WebJobs.Extensions.Storage.Queues, Version=5.1.3.0, Culture=neutral, PublicKeyToken=92742159e12e44c8"}
+ ]
+}
\ No newline at end of file
diff --git a/bin/extensions.pdb b/bin/extensions.pdb
new file mode 100644
index 000000000000..209259d6227f
Binary files /dev/null and b/bin/extensions.pdb differ
diff --git a/bin/runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so b/bin/runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so
new file mode 100644
index 000000000000..7d53002d6c91
Binary files /dev/null and b/bin/runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so differ
diff --git a/bin/runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so b/bin/runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so
new file mode 100644
index 000000000000..e3b68513579e
Binary files /dev/null and b/bin/runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so differ
diff --git a/bin/runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib b/bin/runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib
new file mode 100644
index 000000000000..edb7445cac3f
Binary files /dev/null and b/bin/runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib differ
diff --git a/bin/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll b/bin/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll
new file mode 100644
index 000000000000..59bf0e341a2e
Binary files /dev/null and b/bin/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll differ
diff --git a/bin/runtimes/win-x64/native/grpc_csharp_ext.x64.dll b/bin/runtimes/win-x64/native/grpc_csharp_ext.x64.dll
new file mode 100644
index 000000000000..fb64b8a2ecd2
Binary files /dev/null and b/bin/runtimes/win-x64/native/grpc_csharp_ext.x64.dll differ
diff --git a/bin/runtimes/win-x86/native/grpc_csharp_ext.x86.dll b/bin/runtimes/win-x86/native/grpc_csharp_ext.x86.dll
new file mode 100644
index 000000000000..fdaf9df12284
Binary files /dev/null and b/bin/runtimes/win-x86/native/grpc_csharp_ext.x86.dll differ
diff --git a/bin/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll b/bin/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll
new file mode 100644
index 000000000000..536bdd484c4e
Binary files /dev/null and b/bin/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll differ
diff --git a/bin/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll b/bin/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll
new file mode 100644
index 000000000000..72fd7e7e3771
Binary files /dev/null and b/bin/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll differ
diff --git a/bin/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll b/bin/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll
new file mode 100644
index 000000000000..0f6dabca4f81
Binary files /dev/null and b/bin/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll differ
diff --git a/bin/runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll b/bin/runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll
new file mode 100644
index 000000000000..471ce5c2928f
Binary files /dev/null and b/bin/runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll differ
diff --git a/bin/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/bin/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 000000000000..d8f2f458960a
Binary files /dev/null and b/bin/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/extensions.csproj b/extensions.csproj
new file mode 100644
index 000000000000..6d08e6095748
--- /dev/null
+++ b/extensions.csproj
@@ -0,0 +1,13 @@
+
+
+ netcoreapp3.1
+
+ **
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/host.json b/host.json
index b1667f1e9bbb..57517e598bcf 100644
--- a/host.json
+++ b/host.json
@@ -4,13 +4,13 @@
"enabled": false
},
"functionTimeout": "00:10:00",
- "extensionBundle": {
- "id": "Microsoft.Azure.Functions.ExtensionBundle",
- "version": "[4.*, 5.0.0)"
- },
"extensions": {
"queues": {
"maxDequeueCount": 1
+ },
+ "durableTask": {
+ "maxConcurrentActivityFunctions": 1,
+ "maxConcurrentOrchestratorFunctions": 1
}
}
}
diff --git a/obj/Debug/netcoreapp3.1/extensions.AssemblyInfo.cs b/obj/Debug/netcoreapp3.1/extensions.AssemblyInfo.cs
new file mode 100644
index 000000000000..e480719c75bf
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/extensions.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("extensions")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("extensions")]
+[assembly: System.Reflection.AssemblyTitleAttribute("extensions")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Debug/netcoreapp3.1/extensions.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp3.1/extensions.AssemblyInfoInputs.cache
new file mode 100644
index 000000000000..cb0720f115be
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/extensions.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+1f97fd2ada00dffd0798c9141ab6336f7095293b
diff --git a/obj/Debug/netcoreapp3.1/extensions.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netcoreapp3.1/extensions.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 000000000000..1dd5da003177
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/extensions.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,3 @@
+is_global = true
+build_property.RootNamespace = extensions
+build_property.ProjectDir = C:\GitHub\CIPP Workspace\CIPP-API\
diff --git a/obj/Debug/netcoreapp3.1/extensions.assets.cache b/obj/Debug/netcoreapp3.1/extensions.assets.cache
new file mode 100644
index 000000000000..fbf77775e8fe
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/extensions.assets.cache differ
diff --git a/obj/Debug/netcoreapp3.1/extensions.csproj.AssemblyReference.cache b/obj/Debug/netcoreapp3.1/extensions.csproj.AssemblyReference.cache
new file mode 100644
index 000000000000..f6a66d6ea63c
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/extensions.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/netcoreapp3.1/extensions.csproj.CopyComplete b/obj/Debug/netcoreapp3.1/extensions.csproj.CopyComplete
new file mode 100644
index 000000000000..e69de29bb2d1
diff --git a/obj/Debug/netcoreapp3.1/extensions.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp3.1/extensions.csproj.CoreCompileInputs.cache
new file mode 100644
index 000000000000..f54ea146a69f
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/extensions.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+07d88c3d1c60313037d034577314633e201095fd
diff --git a/obj/Debug/netcoreapp3.1/extensions.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp3.1/extensions.csproj.FileListAbsolute.txt
new file mode 100644
index 000000000000..e5f80ed3e65c
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/extensions.csproj.FileListAbsolute.txt
@@ -0,0 +1,123 @@
+C:\GitHub\CIPP Workspace\CIPP-API\bin\extensions.deps.json
+C:\GitHub\CIPP Workspace\CIPP-API\bin\extensions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\extensions.pdb
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Azure.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Azure.Data.Tables.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Azure.Identity.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Azure.Storage.Blobs.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Azure.Storage.Common.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Azure.Storage.Queues.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Castle.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Google.Protobuf.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Grpc.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Grpc.Core.Api.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.ApplicationInsights.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Net.Http.Formatting.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Authentication.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Authentication.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Authorization.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Authorization.Policy.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Connections.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Hosting.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Hosting.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Http.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Http.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Http.Extensions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Http.Features.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.JsonPatch.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Mvc.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Mvc.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Mvc.Formatters.Json.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Routing.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Routing.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Server.Kestrel.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Server.Kestrel.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Server.Kestrel.Https.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.AspNetCore.WebUtilities.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\DurableTask.ApplicationInsights.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\DurableTask.AzureStorage.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\DurableTask.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Azure.WebJobs.Host.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Azure.WebJobs.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Azure.WebJobs.Extensions.DurableTask.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Bcl.AsyncInterfaces.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Build.Framework.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Build.Utilities.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.DotNet.PlatformAbstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.DurableTask.Sidecar.Protobuf.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Azure.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Configuration.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Configuration.Binder.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Configuration.FileExtensions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Configuration.Json.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.DependencyInjection.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.DependencyModel.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.FileProviders.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.FileProviders.Physical.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.FileSystemGlobbing.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Hosting.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Hosting.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Http.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Logging.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Logging.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Logging.Configuration.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.ObjectPool.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Options.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Options.ConfigurationExtensions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Extensions.Primitives.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Identity.Client.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Identity.Client.Extensions.Msal.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.IdentityModel.Abstractions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Microsoft.Net.Http.Headers.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Newtonsoft.Json.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\Newtonsoft.Json.Bson.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.ClientModel.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Diagnostics.DiagnosticSource.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Diagnostics.EventLog.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.IO.FileSystem.AccessControl.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.IO.Hashing.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.IO.Pipelines.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Linq.Async.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Memory.Data.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Reactive.Core.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Reactive.Interfaces.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Reactive.Linq.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Reactive.PlatformServices.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Reactive.Providers.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Runtime.CompilerServices.Unsafe.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Security.AccessControl.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Security.Cryptography.ProtectedData.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Security.Principal.Windows.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Text.Encodings.Web.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Text.Json.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\linux-arm64\native\libgrpc_csharp_ext.arm64.so
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\linux-x64\native\libgrpc_csharp_ext.x64.so
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\osx-x64\native\libgrpc_csharp_ext.x64.dylib
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\win-x64\native\grpc_csharp_ext.x64.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\win-x86\native\grpc_csharp_ext.x86.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\win\lib\netstandard2.0\System.IO.FileSystem.AccessControl.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\unix\lib\netcoreapp2.1\System.Security.Principal.Windows.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Reactive.dll
+C:\GitHub\CIPP Workspace\CIPP-API\bin\System.Reactive.xml
+C:\GitHub\CIPP Workspace\CIPP-API\obj\Debug\netcoreapp3.1\extensions.csproj.AssemblyReference.cache
+C:\GitHub\CIPP Workspace\CIPP-API\obj\Debug\netcoreapp3.1\extensions.GeneratedMSBuildEditorConfig.editorconfig
+C:\GitHub\CIPP Workspace\CIPP-API\obj\Debug\netcoreapp3.1\extensions.AssemblyInfoInputs.cache
+C:\GitHub\CIPP Workspace\CIPP-API\obj\Debug\netcoreapp3.1\extensions.AssemblyInfo.cs
+C:\GitHub\CIPP Workspace\CIPP-API\obj\Debug\netcoreapp3.1\extensions.csproj.CoreCompileInputs.cache
+C:\GitHub\CIPP Workspace\CIPP-API\obj\Debug\netcoreapp3.1\extensions.csproj.CopyComplete
+C:\GitHub\CIPP Workspace\CIPP-API\obj\Debug\netcoreapp3.1\extensions.dll
+C:\GitHub\CIPP Workspace\CIPP-API\obj\Debug\netcoreapp3.1\extensions.pdb
diff --git a/obj/Debug/netcoreapp3.1/extensions.dll b/obj/Debug/netcoreapp3.1/extensions.dll
new file mode 100644
index 000000000000..20523c697aaa
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/extensions.dll differ
diff --git a/obj/Debug/netcoreapp3.1/extensions.pdb b/obj/Debug/netcoreapp3.1/extensions.pdb
new file mode 100644
index 000000000000..209259d6227f
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/extensions.pdb differ
diff --git a/obj/extensions.csproj.nuget.dgspec.json b/obj/extensions.csproj.nuget.dgspec.json
new file mode 100644
index 000000000000..1cac37ee323e
--- /dev/null
+++ b/obj/extensions.csproj.nuget.dgspec.json
@@ -0,0 +1,73 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\GitHub\\CIPP Workspace\\CIPP-API\\extensions.csproj": {}
+ },
+ "projects": {
+ "C:\\GitHub\\CIPP Workspace\\CIPP-API\\extensions.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\GitHub\\CIPP Workspace\\CIPP-API\\extensions.csproj",
+ "projectName": "extensions",
+ "projectPath": "C:\\GitHub\\CIPP Workspace\\CIPP-API\\extensions.csproj",
+ "packagesPath": "C:\\Users\\JohnDuprey\\.nuget\\packages\\",
+ "outputPath": "C:\\GitHub\\CIPP Workspace\\CIPP-API\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\JohnDuprey\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.1"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "projectReferences": {}
+ }
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "dependencies": {
+ "Microsoft.Azure.DurableTask.AzureStorage": {
+ "target": "Package",
+ "version": "[2.0.0-rc, )"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask": {
+ "target": "Package",
+ "version": "[3.0.0-rc.1, )"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage": {
+ "target": "Package",
+ "version": "[5.3.0, )"
+ },
+ "Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator": {
+ "target": "Package",
+ "version": "[1.1.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.321\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/extensions.csproj.nuget.g.props b/obj/extensions.csproj.nuget.g.props
new file mode 100644
index 000000000000..5d77bcecbe5f
--- /dev/null
+++ b/obj/extensions.csproj.nuget.g.props
@@ -0,0 +1,22 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\JohnDuprey\.nuget\packages\
+ PackageReference
+ 6.2.4
+
+
+
+
+
+
+
+
+ C:\Users\JohnDuprey\.nuget\packages\microsoft.azure.webjobs.script.extensionsmetadatagenerator\1.1.3
+ C:\Users\JohnDuprey\.nuget\packages\microsoft.azure.webjobs.extensions.durabletask.analyzers\0.5.0
+
+
\ No newline at end of file
diff --git a/obj/extensions.csproj.nuget.g.targets b/obj/extensions.csproj.nuget.g.targets
new file mode 100644
index 000000000000..a8388dffb1cb
--- /dev/null
+++ b/obj/extensions.csproj.nuget.g.targets
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100644
index 000000000000..bbe04914c722
--- /dev/null
+++ b/obj/project.assets.json
@@ -0,0 +1,9270 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "Azure.Core/1.38.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
+ "System.ClientModel": "1.0.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1",
+ "System.Memory.Data": "1.0.2",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.7.2",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/Azure.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Core.dll": {}
+ }
+ },
+ "Azure.Data.Tables/12.8.1": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.34.0",
+ "System.Text.Json": "4.7.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Azure.Data.Tables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Data.Tables.dll": {}
+ }
+ },
+ "Azure.Identity/1.11.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "Microsoft.Identity.Client": "4.60.1",
+ "Microsoft.Identity.Client.Extensions.Msal": "4.60.1",
+ "System.Memory": "4.5.4",
+ "System.Security.Cryptography.ProtectedData": "4.7.0",
+ "System.Text.Json": "4.7.2",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/Azure.Identity.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Identity.dll": {}
+ }
+ },
+ "Azure.Storage.Blobs/12.18.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Storage.Common": "12.17.0",
+ "System.Text.Json": "4.7.2"
+ },
+ "compile": {
+ "lib/netstandard2.1/Azure.Storage.Blobs.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Azure.Storage.Blobs.dll": {}
+ }
+ },
+ "Azure.Storage.Common/12.17.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.35.0",
+ "System.IO.Hashing": "6.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Azure.Storage.Common.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Storage.Common.dll": {}
+ }
+ },
+ "Azure.Storage.Queues/12.16.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Storage.Common": "12.17.0",
+ "System.Memory.Data": "1.0.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "compile": {
+ "lib/netstandard2.1/Azure.Storage.Queues.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Azure.Storage.Queues.dll": {}
+ }
+ },
+ "Castle.Core/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Castle.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Castle.Core.dll": {}
+ }
+ },
+ "Google.Protobuf/3.21.9": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Google.Protobuf.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Google.Protobuf.dll": {}
+ }
+ },
+ "Grpc.Core/2.46.5": {
+ "type": "package",
+ "dependencies": {
+ "Grpc.Core.Api": "2.46.5",
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/Grpc.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Grpc.Core.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so": {
+ "assetType": "native",
+ "rid": "linux-arm64"
+ },
+ "runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so": {
+ "assetType": "native",
+ "rid": "linux-x64"
+ },
+ "runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib": {
+ "assetType": "native",
+ "rid": "osx-x64"
+ },
+ "runtimes/win-x64/native/grpc_csharp_ext.x64.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x86/native/grpc_csharp_ext.x86.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ }
+ }
+ },
+ "Grpc.Core.Api/2.46.5": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.1/Grpc.Core.Api.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Grpc.Core.Api.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights/2.21.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.AspNet.WebApi.Client/5.2.6": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "10.0.1",
+ "Newtonsoft.Json.Bson": "1.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Net.Http.Formatting.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Net.Http.Formatting.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http": "2.2.0",
+ "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Authorization": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": "2.2.0",
+ "System.IO.Pipelines": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Hosting/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http": "2.2.0",
+ "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
+ "Microsoft.Extensions.Configuration": "2.2.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0",
+ "System.Diagnostics.DiagnosticSource": "4.5.0",
+ "System.Reflection.Metadata": "1.6.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": "2.2.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Http/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.WebUtilities": "2.2.0",
+ "Microsoft.Extensions.ObjectPool": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0",
+ "Microsoft.Net.Http.Headers": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": "2.2.0",
+ "System.Text.Encodings.Web": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
+ "Microsoft.Net.Http.Headers": "2.2.0",
+ "System.Buffers": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Http.Features/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.JsonPatch/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "Newtonsoft.Json": "11.0.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
+ "Microsoft.Net.Http.Headers": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
+ "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http": "2.2.0",
+ "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Routing": "2.2.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection": "2.2.0",
+ "Microsoft.Extensions.DependencyModel": "2.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "System.Diagnostics.DiagnosticSource": "4.5.0",
+ "System.Threading.Tasks.Extensions": "4.5.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.JsonPatch": "2.2.0",
+ "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.WebApiCompatShim/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNet.WebApi.Client": "5.2.6",
+ "Microsoft.AspNetCore.Mvc.Core": "2.2.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0",
+ "Microsoft.AspNetCore.WebUtilities": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.ObjectPool": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "compile": {
+ "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Http": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.WebUtilities": "2.2.0",
+ "Microsoft.Extensions.Configuration.Binder": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0",
+ "Microsoft.Net.Http.Headers": "2.2.0",
+ "System.Memory": "4.5.1",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.1",
+ "System.Security.Cryptography.Cng": "4.5.0",
+ "System.Threading.Tasks.Extensions": "4.5.1"
+ },
+ "compile": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0"
+ },
+ "compile": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "compile": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.WebUtilities/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Net.Http.Headers": "2.2.0",
+ "System.Text.Encodings.Web": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
+ }
+ },
+ "Microsoft.Azure.DurableTask.ApplicationInsights/0.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.21.0",
+ "Microsoft.Azure.DurableTask.Core": "2.15.1",
+ "Microsoft.Bcl.AsyncInterfaces": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/DurableTask.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/DurableTask.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.Azure.DurableTask.AzureStorage/2.0.0-rc": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.35.0",
+ "Azure.Data.Tables": "12.8.1",
+ "Azure.Storage.Blobs": "12.18.0",
+ "Azure.Storage.Queues": "12.16.0",
+ "Microsoft.Azure.DurableTask.Core": "2.15.1",
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "System.Linq.Async": "6.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/DurableTask.AzureStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/DurableTask.AzureStorage.dll": {}
+ }
+ },
+ "Microsoft.Azure.DurableTask.Core/2.15.1": {
+ "type": "package",
+ "dependencies": {
+ "Castle.Core": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Diagnostics.DiagnosticSource": "5.0.1",
+ "System.Reactive.Compatibility": "4.4.1",
+ "System.Reactive.Core": "4.4.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/DurableTask.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/DurableTask.Core.dll": {}
+ }
+ },
+ "Microsoft.Azure.WebJobs/3.0.37": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Azure.WebJobs.Core": "3.0.37",
+ "Microsoft.Extensions.Configuration": "2.1.1",
+ "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.0",
+ "Microsoft.Extensions.Configuration.Json": "2.1.0",
+ "Microsoft.Extensions.Hosting": "2.1.0",
+ "Microsoft.Extensions.Logging": "2.1.1",
+ "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
+ "Microsoft.Extensions.Logging.Configuration": "2.1.0",
+ "Newtonsoft.Json": "13.0.1",
+ "System.Memory.Data": "1.0.2",
+ "System.Threading.Tasks.Dataflow": "4.8.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Host.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Host.dll": {}
+ }
+ },
+ "Microsoft.Azure.WebJobs.Core/3.0.37": {
+ "type": "package",
+ "dependencies": {
+ "System.ComponentModel.Annotations": "4.4.0",
+ "System.Diagnostics.TraceSource": "4.3.0",
+ "System.Memory.Data": "1.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.dll": {}
+ }
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask/3.0.0-rc.1": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Identity": "1.10.0",
+ "Microsoft.AspNetCore.Mvc.WebApiCompatShim": "2.2.0",
+ "Microsoft.AspNetCore.Routing": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "2.2.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.1",
+ "Microsoft.Azure.DurableTask.ApplicationInsights": "0.1.2",
+ "Microsoft.Azure.DurableTask.AzureStorage": "2.0.0-rc",
+ "Microsoft.Azure.DurableTask.Core": "2.15.1",
+ "Microsoft.Azure.WebJobs": "3.0.37",
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers": "0.5.0",
+ "Microsoft.DurableTask.Sidecar.Protobuf": "1.0.0",
+ "Microsoft.Extensions.Azure": "1.7.0",
+ "Microsoft.Extensions.Http": "2.2.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll": {}
+ }
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers/0.5.0": {
+ "type": "package"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage/5.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs": "5.3.0",
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues": "5.1.3"
+ }
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/5.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Storage.Blobs": "12.16.0",
+ "Azure.Storage.Queues": "12.14.0",
+ "Microsoft.Azure.WebJobs": "3.0.37",
+ "Microsoft.Extensions.Azure": "1.7.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll": {}
+ }
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues/5.1.3": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Storage.Queues": "12.14.0",
+ "Microsoft.Azure.WebJobs": "3.0.37",
+ "Microsoft.Extensions.Azure": "1.6.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll": {}
+ }
+ },
+ "Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator/1.1.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Build.Framework": "15.3.409",
+ "Microsoft.Build.Utilities.Core": "15.3.409",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "build": {
+ "build/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.props": {},
+ "build/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.targets": {}
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ }
+ },
+ "Microsoft.Build.Framework/15.3.409": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Thread": "4.0.0"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.Build.Framework.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.Build.Framework.dll": {}
+ }
+ },
+ "Microsoft.Build.Utilities.Core/15.3.409": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Build.Framework": "[15.3.409]",
+ "Microsoft.Win32.Primitives": "4.0.1",
+ "System.AppContext": "4.1.0",
+ "System.Collections": "4.0.11",
+ "System.Collections.Concurrent": "4.0.12",
+ "System.Collections.NonGeneric": "4.0.1",
+ "System.Console": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Diagnostics.Process": "4.1.0",
+ "System.Diagnostics.TraceSource": "4.0.0",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Linq": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.Reader": "4.0.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.Handles": "4.0.1",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Runtime.Serialization.Xml": "4.1.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.CodePages": "4.0.1",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Threading.Thread": "4.0.0",
+ "System.Threading.Timer": "4.0.1",
+ "System.Xml.ReaderWriter": "4.0.11",
+ "System.Xml.XmlDocument": "4.0.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.Build.Utilities.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.Build.Utilities.Core.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.AppContext": "4.1.0",
+ "System.Collections": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ }
+ },
+ "Microsoft.DurableTask.Sidecar.Protobuf/1.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Google.Protobuf": "3.21.9",
+ "Grpc.Core": "2.46.5"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.DurableTask.Sidecar.Protobuf.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.DurableTask.Sidecar.Protobuf.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Azure/1.7.3": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "Azure.Identity": "1.11.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "2.1.0",
+ "Microsoft.Extensions.Configuration.Binder": "2.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.1.0",
+ "Microsoft.Extensions.Options": "2.1.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Azure.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Azure.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Physical": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "2.1.0",
+ "Newtonsoft.Json": "11.0.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
+ },
+ "compile": {
+ "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyModel/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
+ "Newtonsoft.Json": "9.0.1",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Dynamic.Runtime": "4.0.11",
+ "System.Linq": "4.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "2.1.0",
+ "Microsoft.Extensions.DependencyInjection": "2.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
+ "Microsoft.Extensions.Logging": "2.1.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Http/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "2.2.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Options": "2.2.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Configuration/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "2.1.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.ObjectPool/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
+ "Microsoft.Extensions.Primitives": "2.2.0",
+ "System.ComponentModel.Annotations": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "2.1.0",
+ "Microsoft.Extensions.Configuration.Binder": "2.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
+ "Microsoft.Extensions.Options": "2.1.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.Identity.Client/4.60.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.35.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll": {}
+ }
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.60.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Identity.Client": "4.60.1",
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Security.Cryptography.ProtectedData": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {}
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Net.Http.Headers/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "2.2.0",
+ "System.Buffers": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "Newtonsoft.Json.Bson/1.0.1": {
+ "type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "10.0.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {}
+ }
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.AppContext.dll": {}
+ }
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.ClientModel/1.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory.Data": "1.0.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.ClientModel.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ClientModel.dll": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/6.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.4",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Diagnostics.Process/4.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.Win32.Primitives": "4.0.1",
+ "Microsoft.Win32.Registry": "4.0.0",
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.Handles": "4.0.1",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Threading.Thread": "4.0.0",
+ "System.Threading.ThreadPool": "4.0.10",
+ "runtime.native.System": "4.0.0"
+ },
+ "compile": {
+ "ref/netstandard1.4/System.Diagnostics.Process.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {
+ "assetType": "runtime",
+ "rid": "linux"
+ },
+ "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
+ "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.TraceSource/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.11": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.Linq": "4.1.0",
+ "System.Linq.Expressions": "4.1.0",
+ "System.ObjectModel": "4.0.12",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Threading": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.Compression.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.Hashing/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.IO.Hashing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IO.Hashing.dll": {}
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.IO.Pipelines/4.5.2": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard1.3/System.IO.Pipelines.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.IO.Pipelines.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Async/6.0.1": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.Linq.Async.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/System.Linq.Async.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Memory/4.5.4": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Memory.Data/1.0.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Text.Encodings.Web": "4.7.2",
+ "System.Text.Json": "4.6.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Memory.Data.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.Data.dll": {}
+ }
+ },
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Net.Http.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.1.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Collections.Concurrent": "4.0.12",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Emit.Lightweight": "4.0.1",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Threading.Tasks": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11",
+ "System.Xml.XmlDocument": "4.0.1",
+ "System.Xml.XmlSerializer": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Reactive/4.4.1": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/_._": {}
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
+ }
+ },
+ "System.Reactive.Compatibility/4.4.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Reactive.Core": "4.4.1",
+ "System.Reactive.Interfaces": "4.4.1",
+ "System.Reactive.Linq": "4.4.1",
+ "System.Reactive.PlatformServices": "4.4.1",
+ "System.Reactive.Providers": "4.4.1"
+ }
+ },
+ "System.Reactive.Core/4.4.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Reactive.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.Core.dll": {}
+ }
+ },
+ "System.Reactive.Interfaces/4.4.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Reactive.Interfaces.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.Interfaces.dll": {}
+ }
+ },
+ "System.Reactive.Linq/4.4.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Reactive.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.Linq.dll": {}
+ }
+ },
+ "System.Reactive.PlatformServices/4.4.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Reactive.PlatformServices.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.PlatformServices.dll": {}
+ }
+ },
+ "System.Reactive.Providers/4.4.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Reactive": "4.4.1",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Reactive.Providers.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reactive.Providers.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.Reader/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11"
+ },
+ "compile": {
+ "lib/netstandard1.0/System.Resources.Reader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Resources.Reader.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.1.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.1.1": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.1.0",
+ "System.Private.DataContractSerialization": "4.1.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/System.Security.AccessControl.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ }
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "System.Collections": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.Handles": "4.0.1",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.Encodings.Web/4.7.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.1/System.Text.Encodings.Web.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/System.Text.Encodings.Web.dll": {}
+ }
+ },
+ "System.Text.Json/4.7.2": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.0/System.Text.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/System.Text.Json.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.8.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Threading.Thread/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Thread.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.Thread.dll": {}
+ }
+ },
+ "System.Threading.ThreadPool/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.2/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Diagnostics.Debug": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.11": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11",
+ "System.Globalization": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.Linq": "4.1.0",
+ "System.Reflection": "4.1.0",
+ "System.Reflection.Emit": "4.0.1",
+ "System.Reflection.Emit.ILGeneration": "4.0.1",
+ "System.Reflection.Extensions": "4.0.1",
+ "System.Reflection.Primitives": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Resources.ResourceManager": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Text.RegularExpressions": "4.1.0",
+ "System.Threading": "4.0.11",
+ "System.Xml.ReaderWriter": "4.0.11",
+ "System.Xml.XmlDocument": "4.0.1"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Azure.Core/1.38.0": {
+ "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==",
+ "type": "package",
+ "path": "azure.core/1.38.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.core.1.38.0.nupkg.sha512",
+ "azure.core.nuspec",
+ "azureicon.png",
+ "lib/net461/Azure.Core.dll",
+ "lib/net461/Azure.Core.xml",
+ "lib/net472/Azure.Core.dll",
+ "lib/net472/Azure.Core.xml",
+ "lib/net6.0/Azure.Core.dll",
+ "lib/net6.0/Azure.Core.xml",
+ "lib/netstandard2.0/Azure.Core.dll",
+ "lib/netstandard2.0/Azure.Core.xml"
+ ]
+ },
+ "Azure.Data.Tables/12.8.1": {
+ "sha512": "UsJVAV2omsi6Ws5zqV2/TMP2GQjFlmjiFXnYKV5u5+9MQ588VDkvvlh4TGzLRAG2DxVx7rdgjtQ9baTlz/+log==",
+ "type": "package",
+ "path": "azure.data.tables/12.8.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.data.tables.12.8.1.nupkg.sha512",
+ "azure.data.tables.nuspec",
+ "azureicon.png",
+ "lib/netstandard2.0/Azure.Data.Tables.dll",
+ "lib/netstandard2.0/Azure.Data.Tables.xml"
+ ]
+ },
+ "Azure.Identity/1.11.0": {
+ "sha512": "JcpkMpW8Wx/XfQfMiSc9ecdIy0GhdpsMCT3Lh8EJZQ/NN6OxPeY7OAcfmucsvdfrldbFJd04m+Kfd+1QILBAgg==",
+ "type": "package",
+ "path": "azure.identity/1.11.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.identity.1.11.0.nupkg.sha512",
+ "azure.identity.nuspec",
+ "azureicon.png",
+ "lib/netstandard2.0/Azure.Identity.dll",
+ "lib/netstandard2.0/Azure.Identity.xml"
+ ]
+ },
+ "Azure.Storage.Blobs/12.18.0": {
+ "sha512": "IUqHRXnabXCzmmvkzqPK4FuGzLxmKSugDEt5Hm5B/JlJFR+aHDsPW4nCLbG0txThqBSKPqcBBU/oA6c5TaFJgA==",
+ "type": "package",
+ "path": "azure.storage.blobs/12.18.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.storage.blobs.12.18.0.nupkg.sha512",
+ "azure.storage.blobs.nuspec",
+ "azureicon.png",
+ "lib/net6.0/Azure.Storage.Blobs.dll",
+ "lib/net6.0/Azure.Storage.Blobs.xml",
+ "lib/netstandard2.0/Azure.Storage.Blobs.dll",
+ "lib/netstandard2.0/Azure.Storage.Blobs.xml",
+ "lib/netstandard2.1/Azure.Storage.Blobs.dll",
+ "lib/netstandard2.1/Azure.Storage.Blobs.xml"
+ ]
+ },
+ "Azure.Storage.Common/12.17.0": {
+ "sha512": "/h8SpUkxMuQy/MbNFeJQGmhYt3JnYfEiGeDojtNgLNzzhyDnRYgjF3ZKYgjORYQpn0Spr+4+v2MZy+0GNJBLrg==",
+ "type": "package",
+ "path": "azure.storage.common/12.17.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.storage.common.12.17.0.nupkg.sha512",
+ "azure.storage.common.nuspec",
+ "azureicon.png",
+ "lib/net6.0/Azure.Storage.Common.dll",
+ "lib/net6.0/Azure.Storage.Common.xml",
+ "lib/netstandard2.0/Azure.Storage.Common.dll",
+ "lib/netstandard2.0/Azure.Storage.Common.xml"
+ ]
+ },
+ "Azure.Storage.Queues/12.16.0": {
+ "sha512": "ociB+g4P8d4o6K6dsCxz4qVNyGzmTKC5t7wlDLAezbfAp4m41SAUvxcDU0N4Mqxf04GPQeyImSeMFQfDzZHEcQ==",
+ "type": "package",
+ "path": "azure.storage.queues/12.16.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.storage.queues.12.16.0.nupkg.sha512",
+ "azure.storage.queues.nuspec",
+ "azureicon.png",
+ "lib/net6.0/Azure.Storage.Queues.dll",
+ "lib/net6.0/Azure.Storage.Queues.xml",
+ "lib/netstandard2.0/Azure.Storage.Queues.dll",
+ "lib/netstandard2.0/Azure.Storage.Queues.xml",
+ "lib/netstandard2.1/Azure.Storage.Queues.dll",
+ "lib/netstandard2.1/Azure.Storage.Queues.xml"
+ ]
+ },
+ "Castle.Core/5.0.0": {
+ "sha512": "edc8jjyXqzzy8jFdhs36FZdwmlDDTgqPb2Zy1Q5F/f2uAc88bu/VS/0Tpvgupmpl9zJOvOo5ZizVANb0ltN1NQ==",
+ "type": "package",
+ "path": "castle.core/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ASL - Apache Software Foundation License.txt",
+ "CHANGELOG.md",
+ "LICENSE",
+ "castle-logo.png",
+ "castle.core.5.0.0.nupkg.sha512",
+ "castle.core.nuspec",
+ "lib/net462/Castle.Core.dll",
+ "lib/net462/Castle.Core.xml",
+ "lib/net6.0/Castle.Core.dll",
+ "lib/net6.0/Castle.Core.xml",
+ "lib/netstandard2.0/Castle.Core.dll",
+ "lib/netstandard2.0/Castle.Core.xml",
+ "lib/netstandard2.1/Castle.Core.dll",
+ "lib/netstandard2.1/Castle.Core.xml",
+ "readme.txt"
+ ]
+ },
+ "Google.Protobuf/3.21.9": {
+ "sha512": "OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==",
+ "type": "package",
+ "path": "google.protobuf/3.21.9",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "google.protobuf.3.21.9.nupkg.sha512",
+ "google.protobuf.nuspec",
+ "lib/net45/Google.Protobuf.dll",
+ "lib/net45/Google.Protobuf.pdb",
+ "lib/net45/Google.Protobuf.xml",
+ "lib/net5.0/Google.Protobuf.dll",
+ "lib/net5.0/Google.Protobuf.pdb",
+ "lib/net5.0/Google.Protobuf.xml",
+ "lib/netstandard1.1/Google.Protobuf.dll",
+ "lib/netstandard1.1/Google.Protobuf.pdb",
+ "lib/netstandard1.1/Google.Protobuf.xml",
+ "lib/netstandard2.0/Google.Protobuf.dll",
+ "lib/netstandard2.0/Google.Protobuf.pdb",
+ "lib/netstandard2.0/Google.Protobuf.xml"
+ ]
+ },
+ "Grpc.Core/2.46.5": {
+ "sha512": "bD35LTppXYmRvymX6rV+mqc2wZcZf8o0fYkEJ414cul1RiGRWTeVWOtDC94CaTGG2Ie/XoLTd347bnBB5vHaGQ==",
+ "type": "package",
+ "path": "grpc.core/2.46.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/net45/Grpc.Core.targets",
+ "buildTransitive/net45/Grpc.Core.targets",
+ "grpc.core.2.46.5.nupkg.sha512",
+ "grpc.core.nuspec",
+ "lib/net45/Grpc.Core.dll",
+ "lib/net45/Grpc.Core.pdb",
+ "lib/net45/Grpc.Core.xml",
+ "lib/netstandard1.5/Grpc.Core.dll",
+ "lib/netstandard1.5/Grpc.Core.pdb",
+ "lib/netstandard1.5/Grpc.Core.xml",
+ "lib/netstandard2.0/Grpc.Core.dll",
+ "lib/netstandard2.0/Grpc.Core.pdb",
+ "lib/netstandard2.0/Grpc.Core.xml",
+ "packageIcon.png",
+ "runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so",
+ "runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so",
+ "runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib",
+ "runtimes/win-x64/native/grpc_csharp_ext.x64.dll",
+ "runtimes/win-x86/native/grpc_csharp_ext.x86.dll"
+ ]
+ },
+ "Grpc.Core.Api/2.46.5": {
+ "sha512": "Y8ZWjt0axK3ApE3OrERivXiIg6aboIq7AXbWAmdZWtHXfj3PkZeihSOaHN+acGkRy5CeSMXgBCj/+kWjyPFiaw==",
+ "type": "package",
+ "path": "grpc.core.api/2.46.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "grpc.core.api.2.46.5.nupkg.sha512",
+ "grpc.core.api.nuspec",
+ "lib/net45/Grpc.Core.Api.dll",
+ "lib/net45/Grpc.Core.Api.pdb",
+ "lib/net45/Grpc.Core.Api.xml",
+ "lib/netstandard1.5/Grpc.Core.Api.dll",
+ "lib/netstandard1.5/Grpc.Core.Api.pdb",
+ "lib/netstandard1.5/Grpc.Core.Api.xml",
+ "lib/netstandard2.0/Grpc.Core.Api.dll",
+ "lib/netstandard2.0/Grpc.Core.Api.pdb",
+ "lib/netstandard2.0/Grpc.Core.Api.xml",
+ "lib/netstandard2.1/Grpc.Core.Api.dll",
+ "lib/netstandard2.1/Grpc.Core.Api.pdb",
+ "lib/netstandard2.1/Grpc.Core.Api.xml",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.ApplicationInsights/2.21.0": {
+ "sha512": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==",
+ "type": "package",
+ "path": "microsoft.applicationinsights/2.21.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "lib/net452/Microsoft.ApplicationInsights.dll",
+ "lib/net452/Microsoft.ApplicationInsights.pdb",
+ "lib/net452/Microsoft.ApplicationInsights.xml",
+ "lib/net46/Microsoft.ApplicationInsights.dll",
+ "lib/net46/Microsoft.ApplicationInsights.pdb",
+ "lib/net46/Microsoft.ApplicationInsights.xml",
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll",
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb",
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.xml",
+ "microsoft.applicationinsights.2.21.0.nupkg.sha512",
+ "microsoft.applicationinsights.nuspec"
+ ]
+ },
+ "Microsoft.AspNet.WebApi.Client/5.2.6": {
+ "sha512": "owAlEIUZXWSnkK8Z1c+zR47A0X6ykF4XjbPok4lQKNuciUfHLGPd6QnI+rt/8KlQ17PmF+I4S3f+m+Qe4IvViw==",
+ "type": "package",
+ "path": "microsoft.aspnet.webapi.client/5.2.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/System.Net.Http.Formatting.dll",
+ "lib/net45/System.Net.Http.Formatting.xml",
+ "lib/netstandard2.0/System.Net.Http.Formatting.dll",
+ "lib/netstandard2.0/System.Net.Http.Formatting.xml",
+ "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll",
+ "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml",
+ "microsoft.aspnet.webapi.client.5.2.6.nupkg.sha512",
+ "microsoft.aspnet.webapi.client.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
+ "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
+ "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.authentication.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
+ "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.authentication.core/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml",
+ "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.authentication.core.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Authorization/2.2.0": {
+ "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.authorization/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
+ "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.authorization.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
+ "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
+ "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.authorization.policy.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
+ "sha512": "Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.connections.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
+ "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.connections.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Hosting/2.2.0": {
+ "sha512": "7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.hosting/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml",
+ "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.hosting.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
+ "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
+ "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.hosting.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
+ "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
+ "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Http/2.2.0": {
+ "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.http/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
+ "microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.http.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
+ "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
+ "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.http.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
+ "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.http.extensions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
+ "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.http.extensions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Http.Features/2.2.0": {
+ "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.http.features/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
+ "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.http.features.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.JsonPatch/2.2.0": {
+ "sha512": "o9BB9hftnCsyJalz9IT0DUFxz8Xvgh3TOfGWolpuf19duxB4FySq7c25XDYBmBMS+sun5/PsEUAi58ra4iJAoA==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.jsonpatch/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
+ "microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.jsonpatch.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
+ "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml",
+ "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.mvc.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
+ "sha512": "ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.mvc.core/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml",
+ "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.mvc.core.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": {
+ "sha512": "ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
+ "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.mvc.formatters.json.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Mvc.WebApiCompatShim/2.2.0": {
+ "sha512": "YKovpp46Fgah0N8H4RGb+7x9vdjj50mS3NON910pYJFQmn20Cd1mYVkTunjy/DrZpvwmJ8o5Es0VnONSYVXEAQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.mvc.webapicompatshim/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.WebApiCompatShim.xml",
+ "microsoft.aspnetcore.mvc.webapicompatshim.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.mvc.webapicompatshim.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
+ "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
+ "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.responsecaching.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Routing/2.2.0": {
+ "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.routing/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll",
+ "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
+ "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.routing.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
+ "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
+ "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.routing.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
+ "sha512": "D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.server.kestrel/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.xml",
+ "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.server.kestrel.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
+ "sha512": "F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
+ "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.server.kestrel.core.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
+ "sha512": "nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
+ "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.server.kestrel.https.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
+ "sha512": "j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.xml",
+ "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.1": {
+ "sha512": "tzRdyQ0qrMJ5YS0qsXfmhVd/kr25IzLpayoIAvU1yi27wqsqxXVPADDEv0S9PaS7xn6bpMFit8kZw92IICDSWg==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
+ "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
+ "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.1.nupkg.sha512",
+ "microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.WebUtilities/2.2.0": {
+ "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.webutilities/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
+ "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
+ "microsoft.aspnetcore.webutilities.nuspec"
+ ]
+ },
+ "Microsoft.Azure.DurableTask.ApplicationInsights/0.1.2": {
+ "sha512": "eiGf4O/L2Gv+j9uu5wK/7mx50oS6bEEO8grqrp8a323Soc4/dBzm7gYrXHaU2nmtFtTO2ZXTPXd9BbaLPd19IQ==",
+ "type": "package",
+ "path": "microsoft.azure.durabletask.applicationinsights/0.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/DurableTask.ApplicationInsights.dll",
+ "lib/netstandard2.0/DurableTask.ApplicationInsights.xml",
+ "microsoft.azure.durabletask.applicationinsights.0.1.2.nupkg.sha512",
+ "microsoft.azure.durabletask.applicationinsights.nuspec"
+ ]
+ },
+ "Microsoft.Azure.DurableTask.AzureStorage/2.0.0-rc": {
+ "sha512": "jA/ccGOKUsMcNT7V8h7yGGpXc3gbgnQDUVrjw5LnUsxbIjEVxEDcJNd6d5x4VKWAUOeFRohC7SFFZow36bDIYw==",
+ "type": "package",
+ "path": "microsoft.azure.durabletask.azurestorage/2.0.0-rc",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "content/SBOM/spdx_2.2/bsi.json",
+ "content/SBOM/spdx_2.2/manifest.cat",
+ "content/SBOM/spdx_2.2/manifest.spdx.json",
+ "content/SBOM/spdx_2.2/manifest.spdx.json.sha256",
+ "lib/net462/DurableTask.AzureStorage.dll",
+ "lib/net462/DurableTask.AzureStorage.xml",
+ "lib/netstandard2.0/DurableTask.AzureStorage.dll",
+ "lib/netstandard2.0/DurableTask.AzureStorage.xml",
+ "microsoft.azure.durabletask.azurestorage.2.0.0-rc.nupkg.sha512",
+ "microsoft.azure.durabletask.azurestorage.nuspec"
+ ]
+ },
+ "Microsoft.Azure.DurableTask.Core/2.15.1": {
+ "sha512": "Dny0o4Thdx8efgF5qixcQ5/H8S+mPASLDuAzATsetnNQSX4VXSZ5shoTpKRA6qqm7ljgsxB3gyqJHOrCKp8mUQ==",
+ "type": "package",
+ "path": "microsoft.azure.durabletask.core/2.15.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "content/SBOM/spdx_2.2/bsi.json",
+ "content/SBOM/spdx_2.2/manifest.cat",
+ "content/SBOM/spdx_2.2/manifest.spdx.json",
+ "content/SBOM/spdx_2.2/manifest.spdx.json.sha256",
+ "lib/net462/DurableTask.Core.dll",
+ "lib/net462/DurableTask.Core.xml",
+ "lib/netstandard2.0/DurableTask.Core.dll",
+ "lib/netstandard2.0/DurableTask.Core.xml",
+ "microsoft.azure.durabletask.core.2.15.1.nupkg.sha512",
+ "microsoft.azure.durabletask.core.nuspec"
+ ]
+ },
+ "Microsoft.Azure.WebJobs/3.0.37": {
+ "sha512": "cB8ExO360UeFprY4GAuumLhg35krY56LriAAE8kNkckxFQlEIZwQ5lMsOFU0cRwUcvFajLMdALllKF2PgYJRkA==",
+ "type": "package",
+ "path": "microsoft.azure.webjobs/3.0.37",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Host.dll",
+ "microsoft.azure.webjobs.3.0.37.nupkg.sha512",
+ "microsoft.azure.webjobs.nuspec",
+ "webjobs.png"
+ ]
+ },
+ "Microsoft.Azure.WebJobs.Core/3.0.37": {
+ "sha512": "nKlnoQyKmC5HsUIWLXu3a9VYhLKAAriZQ8v3PLldWKjV1vIQMiHKGK68FbLjRtvZsxCnIYS44gLlQjuOua//dg==",
+ "type": "package",
+ "path": "microsoft.azure.webjobs.core/3.0.37",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.dll",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.xml",
+ "microsoft.azure.webjobs.core.3.0.37.nupkg.sha512",
+ "microsoft.azure.webjobs.core.nuspec",
+ "webjobs.png"
+ ]
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask/3.0.0-rc.1": {
+ "sha512": "ZmBGgsRCj1+8c6i2sS7RIJp19I+qHSAmicF7jfjt6GVVbO/eo+4uP+A/kg1pq1iwhWvVItG7PEgbC2JJ49V/hw==",
+ "type": "package",
+ "path": "microsoft.azure.webjobs.extensions.durabletask/3.0.0-rc.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "content/SBOM/spdx_2.2/bsi.json",
+ "content/SBOM/spdx_2.2/manifest.cat",
+ "content/SBOM/spdx_2.2/manifest.spdx.json",
+ "content/SBOM/spdx_2.2/manifest.spdx.json.sha256",
+ "lib/net462/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll",
+ "lib/netcoreapp3.1/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.DurableTask.xml",
+ "microsoft.azure.webjobs.extensions.durabletask.3.0.0-rc.1.nupkg.sha512",
+ "microsoft.azure.webjobs.extensions.durabletask.nuspec"
+ ]
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers/0.5.0": {
+ "sha512": "BEqCR7Mu3i7H95Bbu4pcHpaFfrHdPxgXgXxN0TbyzMDSVRnK7B4AHDtH+gjPmqKVB+y965XHw7zscKYg4s/xbw==",
+ "type": "package",
+ "path": "microsoft.azure.webjobs.extensions.durabletask.analyzers/0.5.0",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Tools/install.ps1",
+ "Tools/uninstall.ps1",
+ "analyzers/dotnet/cs/Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers.dll",
+ "content/SBOM/manifest.json",
+ "content/SBOM/manifest.json.sha256",
+ "content/SBOM/spdx_2.2/manifest.spdx.json",
+ "content/SBOM/spdx_2.2/manifest.spdx.json.sha256",
+ "microsoft.azure.webjobs.extensions.durabletask.analyzers.0.5.0.nupkg.sha512",
+ "microsoft.azure.webjobs.extensions.durabletask.analyzers.nuspec"
+ ]
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage/5.3.0": {
+ "sha512": "4Z7f31ajNV2ivS1cRHfSX30aieeYIS2h1JTNOMwt2BKcbxgzJXBEDDW0cTfim2ArKBf5YC+GC7+P7ND9wUUV7Q==",
+ "type": "package",
+ "path": "microsoft.azure.webjobs.extensions.storage/5.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azureicon.png",
+ "microsoft.azure.webjobs.extensions.storage.5.3.0.nupkg.sha512",
+ "microsoft.azure.webjobs.extensions.storage.nuspec"
+ ]
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/5.3.0": {
+ "sha512": "kOKozwyS0gEm1Mfl72xiSmmOPcW01W/HgkA4Ujj6AgDzx149pTRrQ6SZt9Pey0OcXuyo6G4fjWz6q0Fm5ohs4g==",
+ "type": "package",
+ "path": "microsoft.azure.webjobs.extensions.storage.blobs/5.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azureicon.png",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.xml",
+ "microsoft.azure.webjobs.extensions.storage.blobs.5.3.0.nupkg.sha512",
+ "microsoft.azure.webjobs.extensions.storage.blobs.nuspec"
+ ]
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage.Queues/5.1.3": {
+ "sha512": "7mxdJ9Z0Hl1zNeIAmYXa1IJBatWg/iMr/Zg6skFSLp6nXj8R/Z8NWSloO2WQUAAlAP6qNidVR0mDTdIm9k+tjg==",
+ "type": "package",
+ "path": "microsoft.azure.webjobs.extensions.storage.queues/5.1.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azureicon.png",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll",
+ "lib/netstandard2.0/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.xml",
+ "microsoft.azure.webjobs.extensions.storage.queues.5.1.3.nupkg.sha512",
+ "microsoft.azure.webjobs.extensions.storage.queues.nuspec"
+ ]
+ },
+ "Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator/1.1.3": {
+ "sha512": "z0r0TDEOW+OoomDv9hkytgc03DCz7SMk7T+nKvoWz/PYZB+UbMuwSX5Jaf5w5NRs0+l7JObWpuWDFu0XhRUEsw==",
+ "type": "package",
+ "path": "microsoft.azure.webjobs.script.extensionsmetadatagenerator/1.1.3",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.props",
+ "build/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.targets",
+ "microsoft.azure.webjobs.script.extensionsmetadatagenerator.1.1.3.nupkg.sha512",
+ "microsoft.azure.webjobs.script.extensionsmetadatagenerator.nuspec",
+ "tools/net46/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.dll",
+ "tools/netstandard2.0/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.dll",
+ "tools/netstandard2.0/Microsoft.Build.Framework.dll",
+ "tools/netstandard2.0/Microsoft.Build.Utilities.Core.dll",
+ "tools/netstandard2.0/System.AppContext.dll",
+ "tools/netstandard2.0/System.Collections.Concurrent.dll",
+ "tools/netstandard2.0/System.Collections.NonGeneric.dll",
+ "tools/netstandard2.0/System.IO.FileSystem.Primitives.dll",
+ "tools/netstandard2.0/System.Linq.dll",
+ "tools/netstandard2.0/System.ObjectModel.dll",
+ "tools/netstandard2.0/System.Private.DataContractSerialization.dll",
+ "tools/netstandard2.0/System.Reflection.Emit.ILGeneration.dll",
+ "tools/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
+ "tools/netstandard2.0/System.Reflection.Emit.dll",
+ "tools/netstandard2.0/System.Reflection.TypeExtensions.dll",
+ "tools/netstandard2.0/System.Resources.Reader.dll",
+ "tools/netstandard2.0/System.Runtime.Loader.dll",
+ "tools/netstandard2.0/System.Runtime.Serialization.Primitives.dll",
+ "tools/netstandard2.0/System.Runtime.Serialization.Xml.dll",
+ "tools/netstandard2.0/System.Text.RegularExpressions.dll",
+ "tools/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "tools/netstandard2.0/System.Threading.Thread.dll",
+ "tools/netstandard2.0/System.Threading.ThreadPool.dll",
+ "tools/netstandard2.0/System.Threading.dll",
+ "tools/netstandard2.0/System.Xml.ReaderWriter.dll",
+ "tools/netstandard2.0/System.Xml.XmlDocument.dll",
+ "tools/netstandard2.0/System.Xml.XmlSerializer.dll",
+ "tools/netstandard2.0/generator/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.Console.deps.json",
+ "tools/netstandard2.0/generator/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.Console.dll",
+ "tools/netstandard2.0/generator/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.Console.dll.config",
+ "tools/netstandard2.0/generator/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.Console.pdb",
+ "tools/netstandard2.0/generator/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.Console.runtimeconfig.dev.json",
+ "tools/netstandard2.0/generator/Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.Console.runtimeconfig.json"
+ ]
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
+ "type": "package",
+ "path": "microsoft.bcl.asyncinterfaces/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
+ "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Build.Framework/15.3.409": {
+ "sha512": "+H11umzkkq46gMtgzmQ1JAVHEmZKmtMiPvi4YZiRPtmaGJC9xv8czMs8lHAL/W/wEnsv7SxD0UFNtNSdbpyvFA==",
+ "type": "package",
+ "path": "microsoft.build.framework/15.3.409",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/Microsoft.Build.Framework.dll",
+ "lib/net46/Microsoft.Build.Framework.xml",
+ "lib/netstandard1.3/Microsoft.Build.Framework.dll",
+ "lib/netstandard1.3/Microsoft.Build.Framework.xml",
+ "microsoft.build.framework.15.3.409.nupkg.sha512",
+ "microsoft.build.framework.nuspec"
+ ]
+ },
+ "Microsoft.Build.Utilities.Core/15.3.409": {
+ "sha512": "UVntU9ObJxbrPoycTTtt6cZHiSRTowXRMvjNLGzFECRU81p0NCEvguVt3A7tQEF2mOTvyUh/T21oaNhaWKtndQ==",
+ "type": "package",
+ "path": "microsoft.build.utilities.core/15.3.409",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/Microsoft.Build.Utilities.Core.dll",
+ "lib/net46/Microsoft.Build.Utilities.Core.xml",
+ "lib/netstandard1.3/Microsoft.Build.Utilities.Core.dll",
+ "lib/netstandard1.3/Microsoft.Build.Utilities.Core.xml",
+ "microsoft.build.utilities.core.15.3.409.nupkg.sha512",
+ "microsoft.build.utilities.core.nuspec"
+ ]
+ },
+ "Microsoft.CSharp/4.5.0": {
+ "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
+ "type": "package",
+ "path": "microsoft.csharp/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.3/Microsoft.CSharp.dll",
+ "lib/netstandard2.0/Microsoft.CSharp.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/uap10.0.16299/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "microsoft.csharp.4.5.0.nupkg.sha512",
+ "microsoft.csharp.nuspec",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/netcore50/de/Microsoft.CSharp.xml",
+ "ref/netcore50/es/Microsoft.CSharp.xml",
+ "ref/netcore50/fr/Microsoft.CSharp.xml",
+ "ref/netcore50/it/Microsoft.CSharp.xml",
+ "ref/netcore50/ja/Microsoft.CSharp.xml",
+ "ref/netcore50/ko/Microsoft.CSharp.xml",
+ "ref/netcore50/ru/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/Microsoft.CSharp.dll",
+ "ref/netstandard1.0/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/de/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/es/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/it/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
+ "ref/netstandard2.0/Microsoft.CSharp.dll",
+ "ref/netstandard2.0/Microsoft.CSharp.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/uap10.0.16299/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
+ "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==",
+ "type": "package",
+ "path": "microsoft.dotnet.platformabstractions/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
+ "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512",
+ "microsoft.dotnet.platformabstractions.nuspec"
+ ]
+ },
+ "Microsoft.DurableTask.Sidecar.Protobuf/1.0.0": {
+ "sha512": "QbJ2G47IZgKHrCZv53kOPK+gUVoUvC3CGDYsMK6aRYeU0HF+JOwzlNLZk2mZHl6hQtjVNF0DdmcSkFu4EioMJQ==",
+ "type": "package",
+ "path": "microsoft.durabletask.sidecar.protobuf/1.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "content/SBOM/manifest.json",
+ "content/SBOM/manifest.json.sha256",
+ "content/SBOM/spdx_2.2/manifest.spdx.json",
+ "content/SBOM/spdx_2.2/manifest.spdx.json.sha256",
+ "lib/netstandard2.0/Microsoft.DurableTask.Sidecar.Protobuf.dll",
+ "microsoft.durabletask.sidecar.protobuf.1.0.0.nupkg.sha512",
+ "microsoft.durabletask.sidecar.protobuf.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Azure/1.7.3": {
+ "sha512": "9UwW+nCw0wNYt6G+s6UGDkNmS/kVvZSnYoOF6rlmRN2fhnlt5WE3CS1EMq3H7UsOSSg+88sNC2wvTPqFr5dT/w==",
+ "type": "package",
+ "path": "microsoft.extensions.azure/1.7.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azureicon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.Azure.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Azure.xml",
+ "microsoft.extensions.azure.1.7.3.nupkg.sha512",
+ "microsoft.extensions.azure.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/2.2.0": {
+ "sha512": "nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.2.2.0.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
+ "sha512": "65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/2.2.0": {
+ "sha512": "vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
+ "sha512": "gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
+ "sha512": "H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/2.1.0": {
+ "sha512": "9OCdAv7qiRtRlXQnECxW9zINUK8bYPKbNp5x8FQaLZbm/flv7mPvo1muZ1nsKGMZF4uL4Bl6nHw2v1fi3MqQ1Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.2.1.0.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/2.2.0": {
+ "sha512": "MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
+ "sha512": "f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyModel/2.1.0": {
+ "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencymodel/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net451/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
+ "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512",
+ "microsoft.extensions.dependencymodel.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
+ "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
+ "sha512": "tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
+ "sha512": "ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Hosting/2.1.0": {
+ "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
+ "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
+ "microsoft.extensions.hosting.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
+ "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Http/2.2.0": {
+ "sha512": "hZ8mz6FgxSeFtkHzw+Ad0QOt2yjjpq4WaG9itnkyChtXYTrDlbkw3af2WJ9wdEAAyYqOlQaVDB6MJSEo8dd/vw==",
+ "type": "package",
+ "path": "microsoft.extensions.http/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
+ "microsoft.extensions.http.2.2.0.nupkg.sha512",
+ "microsoft.extensions.http.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/2.2.0": {
+ "sha512": "Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.2.2.0.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
+ "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Configuration/2.1.0": {
+ "sha512": "nMAcTACzW37zc3f7n5fIYsRDXtjjQA2U/kiE4xmuSLn7coCIeDfFTpUhJ+wG/3vwb5f1lFWNpyXGyQdlUCIXUw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.configuration/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
+ "microsoft.extensions.logging.configuration.2.1.0.nupkg.sha512",
+ "microsoft.extensions.logging.configuration.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.ObjectPool/2.2.0": {
+ "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
+ "type": "package",
+ "path": "microsoft.extensions.objectpool/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
+ "microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
+ "microsoft.extensions.objectpool.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options/2.2.0": {
+ "sha512": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
+ "type": "package",
+ "path": "microsoft.extensions.options/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.2.2.0.nupkg.sha512",
+ "microsoft.extensions.options.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.0": {
+ "sha512": "w/MP147fSqlIcCymaNpLbjdJsFVkSJM9Sz+jbWMr1gKMDVxoOS8AuFjJkVyKU/eydYxHIR/K1Hn3wisJBW5gSg==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.2.1.0.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/2.2.0": {
+ "sha512": "azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.2.2.0.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec"
+ ]
+ },
+ "Microsoft.Identity.Client/4.60.1": {
+ "sha512": "rC+qiskr8RKq2a43hH55vuDRz4Wto+bxwxMrKzCIOann1NL0OFFTjEk4ZVnTTBdijVWC6mhOaSmdV1H6J6bXmA==",
+ "type": "package",
+ "path": "microsoft.identity.client/4.60.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/monoandroid12.0/Microsoft.Identity.Client.dll",
+ "lib/monoandroid12.0/Microsoft.Identity.Client.xml",
+ "lib/net462/Microsoft.Identity.Client.dll",
+ "lib/net462/Microsoft.Identity.Client.xml",
+ "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
+ "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
+ "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
+ "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
+ "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll",
+ "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml",
+ "lib/net6.0/Microsoft.Identity.Client.dll",
+ "lib/net6.0/Microsoft.Identity.Client.xml",
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll",
+ "lib/netstandard2.0/Microsoft.Identity.Client.xml",
+ "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
+ "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
+ "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
+ "lib/xamarinios10/Microsoft.Identity.Client.dll",
+ "lib/xamarinios10/Microsoft.Identity.Client.xml",
+ "microsoft.identity.client.4.60.1.nupkg.sha512",
+ "microsoft.identity.client.nuspec"
+ ]
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.60.1": {
+ "sha512": "EdPcGqvruFzNBcW+/3DSP4vNmLNYXSSnngj+QecAxmy6VRnvA7kt5KE2bU8qQmt4KkOitNHBVYVwze2XkqOLxw==",
+ "type": "package",
+ "path": "microsoft.identity.client.extensions.msal/4.60.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll",
+ "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml",
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
+ "microsoft.identity.client.extensions.msal.4.60.1.nupkg.sha512",
+ "microsoft.identity.client.extensions.msal.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
+ "type": "package",
+ "path": "microsoft.identitymodel.abstractions/6.35.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
+ "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
+ "microsoft.identitymodel.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Net.Http.Headers/2.2.0": {
+ "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
+ "type": "package",
+ "path": "microsoft.net.http.headers/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
+ "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
+ "microsoft.net.http.headers.2.2.0.nupkg.sha512",
+ "microsoft.net.http.headers.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
+ "type": "package",
+ "path": "microsoft.win32.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/Microsoft.Win32.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "microsoft.win32.primitives.4.3.0.nupkg.sha512",
+ "microsoft.win32.primitives.nuspec",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/Microsoft.Win32.Primitives.dll",
+ "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
+ "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._"
+ ]
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "type": "package",
+ "path": "microsoft.win32.registry/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.xml",
+ "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "microsoft.win32.registry.4.7.0.nupkg.sha512",
+ "microsoft.win32.registry.nuspec",
+ "ref/net46/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.xml",
+ "ref/net472/Microsoft.Win32.Registry.dll",
+ "ref/net472/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
+ "type": "package",
+ "path": "netstandard.library/1.6.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "netstandard.library.1.6.1.nupkg.sha512",
+ "netstandard.library.nuspec"
+ ]
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
+ "type": "package",
+ "path": "newtonsoft.json/13.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "newtonsoft.json.13.0.1.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Newtonsoft.Json.Bson/1.0.1": {
+ "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
+ "type": "package",
+ "path": "newtonsoft.json.bson/1.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Newtonsoft.Json.Bson.dll",
+ "lib/net45/Newtonsoft.Json.Bson.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
+ "newtonsoft.json.bson.1.0.1.nupkg.sha512",
+ "newtonsoft.json.bson.nuspec"
+ ]
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "type": "package",
+ "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.system/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.4.3.0.nupkg.sha512",
+ "runtime.native.system.nuspec"
+ ]
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "type": "package",
+ "path": "runtime.native.system.io.compression/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
+ "runtime.native.system.io.compression.nuspec"
+ ]
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "type": "package",
+ "path": "runtime.native.system.net.http/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.net.http.4.3.0.nupkg.sha512",
+ "runtime.native.system.net.http.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "type": "package",
+ "path": "runtime.native.system.security.cryptography.apple/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "runtime.native.system.security.cryptography.apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "type": "package",
+ "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.native.system.security.cryptography.openssl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "type": "package",
+ "path": "system.appcontext/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.AppContext.dll",
+ "lib/net463/System.AppContext.dll",
+ "lib/netcore50/System.AppContext.dll",
+ "lib/netstandard1.6/System.AppContext.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.AppContext.dll",
+ "ref/net463/System.AppContext.dll",
+ "ref/netstandard/_._",
+ "ref/netstandard1.3/System.AppContext.dll",
+ "ref/netstandard1.3/System.AppContext.xml",
+ "ref/netstandard1.3/de/System.AppContext.xml",
+ "ref/netstandard1.3/es/System.AppContext.xml",
+ "ref/netstandard1.3/fr/System.AppContext.xml",
+ "ref/netstandard1.3/it/System.AppContext.xml",
+ "ref/netstandard1.3/ja/System.AppContext.xml",
+ "ref/netstandard1.3/ko/System.AppContext.xml",
+ "ref/netstandard1.3/ru/System.AppContext.xml",
+ "ref/netstandard1.3/zh-hans/System.AppContext.xml",
+ "ref/netstandard1.3/zh-hant/System.AppContext.xml",
+ "ref/netstandard1.6/System.AppContext.dll",
+ "ref/netstandard1.6/System.AppContext.xml",
+ "ref/netstandard1.6/de/System.AppContext.xml",
+ "ref/netstandard1.6/es/System.AppContext.xml",
+ "ref/netstandard1.6/fr/System.AppContext.xml",
+ "ref/netstandard1.6/it/System.AppContext.xml",
+ "ref/netstandard1.6/ja/System.AppContext.xml",
+ "ref/netstandard1.6/ko/System.AppContext.xml",
+ "ref/netstandard1.6/ru/System.AppContext.xml",
+ "ref/netstandard1.6/zh-hans/System.AppContext.xml",
+ "ref/netstandard1.6/zh-hant/System.AppContext.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.AppContext.dll",
+ "system.appcontext.4.3.0.nupkg.sha512",
+ "system.appcontext.nuspec"
+ ]
+ },
+ "System.Buffers/4.5.1": {
+ "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "type": "package",
+ "path": "system.buffers/4.5.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Buffers.dll",
+ "lib/net461/System.Buffers.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Buffers.dll",
+ "lib/netstandard1.1/System.Buffers.xml",
+ "lib/netstandard2.0/System.Buffers.dll",
+ "lib/netstandard2.0/System.Buffers.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net45/System.Buffers.dll",
+ "ref/net45/System.Buffers.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.Buffers.dll",
+ "ref/netstandard1.1/System.Buffers.xml",
+ "ref/netstandard2.0/System.Buffers.dll",
+ "ref/netstandard2.0/System.Buffers.xml",
+ "ref/uap10.0.16299/_._",
+ "system.buffers.4.5.1.nupkg.sha512",
+ "system.buffers.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ClientModel/1.0.0": {
+ "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==",
+ "type": "package",
+ "path": "system.clientmodel/1.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "DotNetPackageIcon.png",
+ "README.md",
+ "lib/net6.0/System.ClientModel.dll",
+ "lib/net6.0/System.ClientModel.xml",
+ "lib/netstandard2.0/System.ClientModel.dll",
+ "lib/netstandard2.0/System.ClientModel.xml",
+ "system.clientmodel.1.0.0.nupkg.sha512",
+ "system.clientmodel.nuspec"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "type": "package",
+ "path": "system.collections.concurrent/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Collections.Concurrent.dll",
+ "lib/netstandard1.3/System.Collections.Concurrent.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.Concurrent.dll",
+ "ref/netcore50/System.Collections.Concurrent.xml",
+ "ref/netcore50/de/System.Collections.Concurrent.xml",
+ "ref/netcore50/es/System.Collections.Concurrent.xml",
+ "ref/netcore50/fr/System.Collections.Concurrent.xml",
+ "ref/netcore50/it/System.Collections.Concurrent.xml",
+ "ref/netcore50/ja/System.Collections.Concurrent.xml",
+ "ref/netcore50/ko/System.Collections.Concurrent.xml",
+ "ref/netcore50/ru/System.Collections.Concurrent.xml",
+ "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/System.Collections.Concurrent.dll",
+ "ref/netstandard1.1/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/System.Collections.Concurrent.dll",
+ "ref/netstandard1.3/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.concurrent.4.3.0.nupkg.sha512",
+ "system.collections.concurrent.nuspec"
+ ]
+ },
+ "System.Collections.NonGeneric/4.0.1": {
+ "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "type": "package",
+ "path": "system.collections.nongeneric/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.nongeneric.4.0.1.nupkg.sha512",
+ "system.collections.nongeneric.nuspec"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.5.0": {
+ "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/portable-net45+win8/_._",
+ "lib/uap10.0.16299/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/uap10.0.16299/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.4.5.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "type": "package",
+ "path": "system.console/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Console.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Console.dll",
+ "ref/netstandard1.3/System.Console.dll",
+ "ref/netstandard1.3/System.Console.xml",
+ "ref/netstandard1.3/de/System.Console.xml",
+ "ref/netstandard1.3/es/System.Console.xml",
+ "ref/netstandard1.3/fr/System.Console.xml",
+ "ref/netstandard1.3/it/System.Console.xml",
+ "ref/netstandard1.3/ja/System.Console.xml",
+ "ref/netstandard1.3/ko/System.Console.xml",
+ "ref/netstandard1.3/ru/System.Console.xml",
+ "ref/netstandard1.3/zh-hans/System.Console.xml",
+ "ref/netstandard1.3/zh-hant/System.Console.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.console.4.3.0.nupkg.sha512",
+ "system.console.nuspec"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.DiagnosticSource/6.0.1": {
+ "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
+ "type": "package",
+ "path": "system.diagnostics.diagnosticsource/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net461/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
+ "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
+ "system.diagnostics.diagnosticsource.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "sha512": "iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
+ "type": "package",
+ "path": "system.diagnostics.eventlog/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Diagnostics.EventLog.dll",
+ "lib/net461/System.Diagnostics.EventLog.xml",
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
+ "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
+ "ref/net461/System.Diagnostics.EventLog.dll",
+ "ref/net461/System.Diagnostics.EventLog.xml",
+ "ref/net472/System.Diagnostics.EventLog.dll",
+ "ref/net472/System.Diagnostics.EventLog.xml",
+ "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
+ "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
+ "system.diagnostics.eventlog.4.7.0.nupkg.sha512",
+ "system.diagnostics.eventlog.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.Process/4.1.0": {
+ "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
+ "type": "package",
+ "path": "system.diagnostics.process/4.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Diagnostics.Process.dll",
+ "lib/net461/System.Diagnostics.Process.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Diagnostics.Process.dll",
+ "ref/net461/System.Diagnostics.Process.dll",
+ "ref/netstandard1.3/System.Diagnostics.Process.dll",
+ "ref/netstandard1.3/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/System.Diagnostics.Process.dll",
+ "ref/netstandard1.4/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/de/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/es/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/fr/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/it/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/ja/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/ko/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/ru/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml",
+ "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll",
+ "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll",
+ "runtimes/win/lib/net46/System.Diagnostics.Process.dll",
+ "runtimes/win/lib/net461/System.Diagnostics.Process.dll",
+ "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll",
+ "runtimes/win7/lib/netcore50/_._",
+ "system.diagnostics.process.4.1.0.nupkg.sha512",
+ "system.diagnostics.process.nuspec"
+ ]
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "type": "package",
+ "path": "system.diagnostics.tools/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Tools.dll",
+ "ref/netcore50/System.Diagnostics.Tools.xml",
+ "ref/netcore50/de/System.Diagnostics.Tools.xml",
+ "ref/netcore50/es/System.Diagnostics.Tools.xml",
+ "ref/netcore50/fr/System.Diagnostics.Tools.xml",
+ "ref/netcore50/it/System.Diagnostics.Tools.xml",
+ "ref/netcore50/ja/System.Diagnostics.Tools.xml",
+ "ref/netcore50/ko/System.Diagnostics.Tools.xml",
+ "ref/netcore50/ru/System.Diagnostics.Tools.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/System.Diagnostics.Tools.dll",
+ "ref/netstandard1.0/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.tools.4.3.0.nupkg.sha512",
+ "system.diagnostics.tools.nuspec"
+ ]
+ },
+ "System.Diagnostics.TraceSource/4.3.0": {
+ "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
+ "type": "package",
+ "path": "system.diagnostics.tracesource/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Diagnostics.TraceSource.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Diagnostics.TraceSource.dll",
+ "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
+ "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
+ "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
+ "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
+ "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
+ "system.diagnostics.tracesource.nuspec"
+ ]
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "type": "package",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Diagnostics.Tracing.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Diagnostics.Tracing.dll",
+ "ref/netcore50/System.Diagnostics.Tracing.dll",
+ "ref/netcore50/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/de/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/es/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/it/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.tracing.4.3.0.nupkg.sha512",
+ "system.diagnostics.tracing.nuspec"
+ ]
+ },
+ "System.Dynamic.Runtime/4.0.11": {
+ "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "type": "package",
+ "path": "system.dynamic.runtime/4.0.11",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Dynamic.Runtime.dll",
+ "lib/netstandard1.3/System.Dynamic.Runtime.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Dynamic.Runtime.dll",
+ "ref/netcore50/System.Dynamic.Runtime.xml",
+ "ref/netcore50/de/System.Dynamic.Runtime.xml",
+ "ref/netcore50/es/System.Dynamic.Runtime.xml",
+ "ref/netcore50/fr/System.Dynamic.Runtime.xml",
+ "ref/netcore50/it/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ja/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ko/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ru/System.Dynamic.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/System.Dynamic.Runtime.dll",
+ "ref/netstandard1.0/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/System.Dynamic.Runtime.dll",
+ "ref/netstandard1.3/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
+ "system.dynamic.runtime.4.0.11.nupkg.sha512",
+ "system.dynamic.runtime.nuspec"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "type": "package",
+ "path": "system.globalization.calendars/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Globalization.Calendars.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Globalization.Calendars.dll",
+ "ref/netstandard1.3/System.Globalization.Calendars.dll",
+ "ref/netstandard1.3/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.calendars.4.3.0.nupkg.sha512",
+ "system.globalization.calendars.nuspec"
+ ]
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "type": "package",
+ "path": "system.globalization.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Globalization.Extensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Globalization.Extensions.dll",
+ "ref/netstandard1.3/System.Globalization.Extensions.dll",
+ "ref/netstandard1.3/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
+ "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
+ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
+ "system.globalization.extensions.4.3.0.nupkg.sha512",
+ "system.globalization.extensions.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "type": "package",
+ "path": "system.io.compression/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.IO.Compression.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.IO.Compression.dll",
+ "ref/netcore50/System.IO.Compression.dll",
+ "ref/netcore50/System.IO.Compression.xml",
+ "ref/netcore50/de/System.IO.Compression.xml",
+ "ref/netcore50/es/System.IO.Compression.xml",
+ "ref/netcore50/fr/System.IO.Compression.xml",
+ "ref/netcore50/it/System.IO.Compression.xml",
+ "ref/netcore50/ja/System.IO.Compression.xml",
+ "ref/netcore50/ko/System.IO.Compression.xml",
+ "ref/netcore50/ru/System.IO.Compression.xml",
+ "ref/netcore50/zh-hans/System.IO.Compression.xml",
+ "ref/netcore50/zh-hant/System.IO.Compression.xml",
+ "ref/netstandard1.1/System.IO.Compression.dll",
+ "ref/netstandard1.1/System.IO.Compression.xml",
+ "ref/netstandard1.1/de/System.IO.Compression.xml",
+ "ref/netstandard1.1/es/System.IO.Compression.xml",
+ "ref/netstandard1.1/fr/System.IO.Compression.xml",
+ "ref/netstandard1.1/it/System.IO.Compression.xml",
+ "ref/netstandard1.1/ja/System.IO.Compression.xml",
+ "ref/netstandard1.1/ko/System.IO.Compression.xml",
+ "ref/netstandard1.1/ru/System.IO.Compression.xml",
+ "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
+ "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
+ "ref/netstandard1.3/System.IO.Compression.dll",
+ "ref/netstandard1.3/System.IO.Compression.xml",
+ "ref/netstandard1.3/de/System.IO.Compression.xml",
+ "ref/netstandard1.3/es/System.IO.Compression.xml",
+ "ref/netstandard1.3/fr/System.IO.Compression.xml",
+ "ref/netstandard1.3/it/System.IO.Compression.xml",
+ "ref/netstandard1.3/ja/System.IO.Compression.xml",
+ "ref/netstandard1.3/ko/System.IO.Compression.xml",
+ "ref/netstandard1.3/ru/System.IO.Compression.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
+ "runtimes/win/lib/net46/System.IO.Compression.dll",
+ "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
+ "system.io.compression.4.3.0.nupkg.sha512",
+ "system.io.compression.nuspec"
+ ]
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
+ "type": "package",
+ "path": "system.io.compression.zipfile/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.Compression.ZipFile.dll",
+ "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.Compression.ZipFile.dll",
+ "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
+ "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.compression.zipfile.4.3.0.nupkg.sha512",
+ "system.io.compression.zipfile.nuspec"
+ ]
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "type": "package",
+ "path": "system.io.filesystem/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.4.3.0.nupkg.sha512",
+ "system.io.filesystem.nuspec"
+ ]
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
+ "type": "package",
+ "path": "system.io.filesystem.accesscontrol/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.IO.FileSystem.AccessControl.dll",
+ "lib/net461/System.IO.FileSystem.AccessControl.dll",
+ "lib/net461/System.IO.FileSystem.AccessControl.xml",
+ "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
+ "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
+ "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
+ "ref/net46/System.IO.FileSystem.AccessControl.dll",
+ "ref/net461/System.IO.FileSystem.AccessControl.dll",
+ "ref/net461/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
+ "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
+ "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
+ "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
+ "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
+ "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
+ "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
+ "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512",
+ "system.io.filesystem.accesscontrol.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "type": "package",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
+ "system.io.filesystem.primitives.nuspec"
+ ]
+ },
+ "System.IO.Hashing/6.0.0": {
+ "sha512": "Rfm2jYCaUeGysFEZjDe7j1R4x6Z6BzumS/vUT5a1AA/AWJuGX71PoGB0RmpyX3VmrGqVnAwtfMn39OHR8Y/5+g==",
+ "type": "package",
+ "path": "system.io.hashing/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.IO.Hashing.dll",
+ "lib/net461/System.IO.Hashing.xml",
+ "lib/net6.0/System.IO.Hashing.dll",
+ "lib/net6.0/System.IO.Hashing.xml",
+ "lib/netstandard2.0/System.IO.Hashing.dll",
+ "lib/netstandard2.0/System.IO.Hashing.xml",
+ "system.io.hashing.6.0.0.nupkg.sha512",
+ "system.io.hashing.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.IO.Pipelines/4.5.2": {
+ "sha512": "NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==",
+ "type": "package",
+ "path": "system.io.pipelines/4.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.1/System.IO.Pipelines.dll",
+ "lib/netcoreapp2.1/System.IO.Pipelines.xml",
+ "lib/netstandard1.3/System.IO.Pipelines.dll",
+ "lib/netstandard1.3/System.IO.Pipelines.xml",
+ "lib/netstandard2.0/System.IO.Pipelines.dll",
+ "lib/netstandard2.0/System.IO.Pipelines.xml",
+ "ref/netstandard1.3/System.IO.Pipelines.dll",
+ "system.io.pipelines.4.5.2.nupkg.sha512",
+ "system.io.pipelines.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Async/6.0.1": {
+ "sha512": "0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==",
+ "type": "package",
+ "path": "system.linq.async/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Logo.png",
+ "lib/net48/System.Linq.Async.dll",
+ "lib/net48/System.Linq.Async.xml",
+ "lib/net6.0/System.Linq.Async.dll",
+ "lib/net6.0/System.Linq.Async.xml",
+ "lib/netstandard2.0/System.Linq.Async.dll",
+ "lib/netstandard2.0/System.Linq.Async.xml",
+ "lib/netstandard2.1/System.Linq.Async.dll",
+ "lib/netstandard2.1/System.Linq.Async.xml",
+ "ref/net48/System.Linq.Async.dll",
+ "ref/net48/System.Linq.Async.xml",
+ "ref/net6.0/System.Linq.Async.dll",
+ "ref/net6.0/System.Linq.Async.xml",
+ "ref/netstandard2.0/System.Linq.Async.dll",
+ "ref/netstandard2.0/System.Linq.Async.xml",
+ "ref/netstandard2.1/System.Linq.Async.dll",
+ "ref/netstandard2.1/System.Linq.Async.xml",
+ "system.linq.async.6.0.1.nupkg.sha512",
+ "system.linq.async.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Memory/4.5.4": {
+ "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "type": "package",
+ "path": "system.memory/4.5.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Memory.dll",
+ "lib/net461/System.Memory.xml",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.1/System.Memory.dll",
+ "lib/netstandard1.1/System.Memory.xml",
+ "lib/netstandard2.0/System.Memory.dll",
+ "lib/netstandard2.0/System.Memory.xml",
+ "ref/netcoreapp2.1/_._",
+ "system.memory.4.5.4.nupkg.sha512",
+ "system.memory.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Memory.Data/1.0.2": {
+ "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
+ "type": "package",
+ "path": "system.memory.data/1.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "DotNetPackageIcon.png",
+ "README.md",
+ "lib/net461/System.Memory.Data.dll",
+ "lib/net461/System.Memory.Data.xml",
+ "lib/netstandard2.0/System.Memory.Data.dll",
+ "lib/netstandard2.0/System.Memory.Data.xml",
+ "system.memory.data.1.0.2.nupkg.sha512",
+ "system.memory.data.nuspec"
+ ]
+ },
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
+ "type": "package",
+ "path": "system.net.http/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/Xamarinmac20/_._",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.Net.Http.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/Xamarinmac20/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.Net.Http.dll",
+ "ref/net46/System.Net.Http.xml",
+ "ref/net46/de/System.Net.Http.xml",
+ "ref/net46/es/System.Net.Http.xml",
+ "ref/net46/fr/System.Net.Http.xml",
+ "ref/net46/it/System.Net.Http.xml",
+ "ref/net46/ja/System.Net.Http.xml",
+ "ref/net46/ko/System.Net.Http.xml",
+ "ref/net46/ru/System.Net.Http.xml",
+ "ref/net46/zh-hans/System.Net.Http.xml",
+ "ref/net46/zh-hant/System.Net.Http.xml",
+ "ref/netcore50/System.Net.Http.dll",
+ "ref/netcore50/System.Net.Http.xml",
+ "ref/netcore50/de/System.Net.Http.xml",
+ "ref/netcore50/es/System.Net.Http.xml",
+ "ref/netcore50/fr/System.Net.Http.xml",
+ "ref/netcore50/it/System.Net.Http.xml",
+ "ref/netcore50/ja/System.Net.Http.xml",
+ "ref/netcore50/ko/System.Net.Http.xml",
+ "ref/netcore50/ru/System.Net.Http.xml",
+ "ref/netcore50/zh-hans/System.Net.Http.xml",
+ "ref/netcore50/zh-hant/System.Net.Http.xml",
+ "ref/netstandard1.1/System.Net.Http.dll",
+ "ref/netstandard1.1/System.Net.Http.xml",
+ "ref/netstandard1.1/de/System.Net.Http.xml",
+ "ref/netstandard1.1/es/System.Net.Http.xml",
+ "ref/netstandard1.1/fr/System.Net.Http.xml",
+ "ref/netstandard1.1/it/System.Net.Http.xml",
+ "ref/netstandard1.1/ja/System.Net.Http.xml",
+ "ref/netstandard1.1/ko/System.Net.Http.xml",
+ "ref/netstandard1.1/ru/System.Net.Http.xml",
+ "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
+ "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
+ "ref/netstandard1.3/System.Net.Http.dll",
+ "ref/netstandard1.3/System.Net.Http.xml",
+ "ref/netstandard1.3/de/System.Net.Http.xml",
+ "ref/netstandard1.3/es/System.Net.Http.xml",
+ "ref/netstandard1.3/fr/System.Net.Http.xml",
+ "ref/netstandard1.3/it/System.Net.Http.xml",
+ "ref/netstandard1.3/ja/System.Net.Http.xml",
+ "ref/netstandard1.3/ko/System.Net.Http.xml",
+ "ref/netstandard1.3/ru/System.Net.Http.xml",
+ "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
+ "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
+ "runtimes/win/lib/net46/System.Net.Http.dll",
+ "runtimes/win/lib/netcore50/System.Net.Http.dll",
+ "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
+ "system.net.http.4.3.0.nupkg.sha512",
+ "system.net.http.nuspec"
+ ]
+ },
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "type": "package",
+ "path": "system.net.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Net.Primitives.dll",
+ "ref/netcore50/System.Net.Primitives.xml",
+ "ref/netcore50/de/System.Net.Primitives.xml",
+ "ref/netcore50/es/System.Net.Primitives.xml",
+ "ref/netcore50/fr/System.Net.Primitives.xml",
+ "ref/netcore50/it/System.Net.Primitives.xml",
+ "ref/netcore50/ja/System.Net.Primitives.xml",
+ "ref/netcore50/ko/System.Net.Primitives.xml",
+ "ref/netcore50/ru/System.Net.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Net.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.0/System.Net.Primitives.dll",
+ "ref/netstandard1.0/System.Net.Primitives.xml",
+ "ref/netstandard1.0/de/System.Net.Primitives.xml",
+ "ref/netstandard1.0/es/System.Net.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.0/it/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.1/System.Net.Primitives.dll",
+ "ref/netstandard1.1/System.Net.Primitives.xml",
+ "ref/netstandard1.1/de/System.Net.Primitives.xml",
+ "ref/netstandard1.1/es/System.Net.Primitives.xml",
+ "ref/netstandard1.1/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.1/it/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.3/System.Net.Primitives.dll",
+ "ref/netstandard1.3/System.Net.Primitives.xml",
+ "ref/netstandard1.3/de/System.Net.Primitives.xml",
+ "ref/netstandard1.3/es/System.Net.Primitives.xml",
+ "ref/netstandard1.3/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.3/it/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.net.primitives.4.3.0.nupkg.sha512",
+ "system.net.primitives.nuspec"
+ ]
+ },
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
+ "type": "package",
+ "path": "system.net.sockets/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Net.Sockets.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Net.Sockets.dll",
+ "ref/netstandard1.3/System.Net.Sockets.dll",
+ "ref/netstandard1.3/System.Net.Sockets.xml",
+ "ref/netstandard1.3/de/System.Net.Sockets.xml",
+ "ref/netstandard1.3/es/System.Net.Sockets.xml",
+ "ref/netstandard1.3/fr/System.Net.Sockets.xml",
+ "ref/netstandard1.3/it/System.Net.Sockets.xml",
+ "ref/netstandard1.3/ja/System.Net.Sockets.xml",
+ "ref/netstandard1.3/ko/System.Net.Sockets.xml",
+ "ref/netstandard1.3/ru/System.Net.Sockets.xml",
+ "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
+ "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.net.sockets.4.3.0.nupkg.sha512",
+ "system.net.sockets.nuspec"
+ ]
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "type": "package",
+ "path": "system.numerics.vectors/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.Numerics.Vectors.dll",
+ "lib/netstandard1.0/System.Numerics.Vectors.xml",
+ "lib/netstandard2.0/System.Numerics.Vectors.dll",
+ "lib/netstandard2.0/System.Numerics.Vectors.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.Numerics.Vectors.dll",
+ "ref/net45/System.Numerics.Vectors.xml",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/System.Numerics.Vectors.dll",
+ "ref/netstandard1.0/System.Numerics.Vectors.xml",
+ "ref/netstandard2.0/System.Numerics.Vectors.dll",
+ "ref/netstandard2.0/System.Numerics.Vectors.xml",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.numerics.vectors.4.5.0.nupkg.sha512",
+ "system.numerics.vectors.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Private.DataContractSerialization/4.1.1": {
+ "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
+ "type": "package",
+ "path": "system.private.datacontractserialization/4.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
+ "ref/netstandard/_._",
+ "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
+ "system.private.datacontractserialization.4.1.1.nupkg.sha512",
+ "system.private.datacontractserialization.nuspec"
+ ]
+ },
+ "System.Reactive/4.4.1": {
+ "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
+ "type": "package",
+ "path": "system.reactive/4.4.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/netcoreapp3.0/System.Reactive.dll",
+ "build/netcoreapp3.0/System.Reactive.targets",
+ "build/netcoreapp3.0/System.Reactive.xml",
+ "buildTransitive/netcoreapp3.0/System.Reactive.targets",
+ "lib/net46/System.Reactive.dll",
+ "lib/net46/System.Reactive.xml",
+ "lib/netcoreapp3.0/_._",
+ "lib/netstandard2.0/System.Reactive.dll",
+ "lib/netstandard2.0/System.Reactive.xml",
+ "lib/uap10.0.16299/System.Reactive.dll",
+ "lib/uap10.0.16299/System.Reactive.pri",
+ "lib/uap10.0.16299/System.Reactive.xml",
+ "lib/uap10.0/System.Reactive.dll",
+ "lib/uap10.0/System.Reactive.pri",
+ "lib/uap10.0/System.Reactive.xml",
+ "system.reactive.4.4.1.nupkg.sha512",
+ "system.reactive.nuspec"
+ ]
+ },
+ "System.Reactive.Compatibility/4.4.1": {
+ "sha512": "Ad2/TBOBV0/45pzccpbQj2vo3S85uipF/PfqkbQUnH0vOtBqrXd1eqWtky5YTXq/WIRU1HF62HFSOdXiNC+E4A==",
+ "type": "package",
+ "path": "system.reactive.compatibility/4.4.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "system.reactive.compatibility.4.4.1.nupkg.sha512",
+ "system.reactive.compatibility.nuspec"
+ ]
+ },
+ "System.Reactive.Core/4.4.1": {
+ "sha512": "YQHJOt8hZvwFelIIfs19t8Jhz5P6NS1ZZccbVUuE1LFyoFZjaUecdYIYykgXzpyj5Rl40XC3xkyuuhHRaAln2w==",
+ "type": "package",
+ "path": "system.reactive.core/4.4.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/System.Reactive.Core.dll",
+ "lib/net46/System.Reactive.Core.xml",
+ "lib/netstandard2.0/System.Reactive.Core.dll",
+ "lib/netstandard2.0/System.Reactive.Core.xml",
+ "lib/uap10.0/System.Reactive.Core.dll",
+ "lib/uap10.0/System.Reactive.Core.pri",
+ "lib/uap10.0/System.Reactive.Core.xml",
+ "system.reactive.core.4.4.1.nupkg.sha512",
+ "system.reactive.core.nuspec"
+ ]
+ },
+ "System.Reactive.Interfaces/4.4.1": {
+ "sha512": "Pk++rL2lxe6yhBEzgc9eJWR57YxYxtAmcz9U0JdKyHEzTLqba3B7MhhYrpN2ToTPVRyJJzxMdPdLieIJvlsACg==",
+ "type": "package",
+ "path": "system.reactive.interfaces/4.4.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/System.Reactive.Interfaces.dll",
+ "lib/net46/System.Reactive.Interfaces.xml",
+ "lib/netstandard2.0/System.Reactive.Interfaces.dll",
+ "lib/netstandard2.0/System.Reactive.Interfaces.xml",
+ "lib/uap10.0/System.Reactive.Interfaces.dll",
+ "lib/uap10.0/System.Reactive.Interfaces.pri",
+ "lib/uap10.0/System.Reactive.Interfaces.xml",
+ "system.reactive.interfaces.4.4.1.nupkg.sha512",
+ "system.reactive.interfaces.nuspec"
+ ]
+ },
+ "System.Reactive.Linq/4.4.1": {
+ "sha512": "wyOVuUyHmPV667REPwcZjFjOlRLX6qSGVcXMye0qUqBAWFB3bu1RO1XLGWZTnf0d67DQHV69kw7tAtTh+4EYyQ==",
+ "type": "package",
+ "path": "system.reactive.linq/4.4.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/System.Reactive.Linq.dll",
+ "lib/net46/System.Reactive.Linq.xml",
+ "lib/netstandard2.0/System.Reactive.Linq.dll",
+ "lib/netstandard2.0/System.Reactive.Linq.xml",
+ "lib/uap10.0/System.Reactive.Linq.dll",
+ "lib/uap10.0/System.Reactive.Linq.pri",
+ "lib/uap10.0/System.Reactive.Linq.xml",
+ "system.reactive.linq.4.4.1.nupkg.sha512",
+ "system.reactive.linq.nuspec"
+ ]
+ },
+ "System.Reactive.PlatformServices/4.4.1": {
+ "sha512": "jVF40bEwEES1DpDxI8pRcVEkH/TztFCOSToMYIK6TNE5QojsQljfvZd6jaDG4jRZ9hkoMYyUbkeSDYG/1ldPDg==",
+ "type": "package",
+ "path": "system.reactive.platformservices/4.4.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/System.Reactive.PlatformServices.dll",
+ "lib/net46/System.Reactive.PlatformServices.xml",
+ "lib/netstandard2.0/System.Reactive.PlatformServices.dll",
+ "lib/netstandard2.0/System.Reactive.PlatformServices.xml",
+ "lib/uap10.0/System.Reactive.PlatformServices.dll",
+ "lib/uap10.0/System.Reactive.PlatformServices.pri",
+ "lib/uap10.0/System.Reactive.PlatformServices.xml",
+ "system.reactive.platformservices.4.4.1.nupkg.sha512",
+ "system.reactive.platformservices.nuspec"
+ ]
+ },
+ "System.Reactive.Providers/4.4.1": {
+ "sha512": "K9RDgMHsuceX8QTk5ALCgYpexA9qcMsIi4K97Eigqcz9hD6fa4Smrjy8F/m6YdVJZFsBGaZ3uwj+d0loAdMfbA==",
+ "type": "package",
+ "path": "system.reactive.providers/4.4.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/System.Reactive.Providers.dll",
+ "lib/net46/System.Reactive.Providers.xml",
+ "lib/netstandard2.0/System.Reactive.Providers.dll",
+ "lib/netstandard2.0/System.Reactive.Providers.xml",
+ "lib/uap10.0/System.Reactive.Providers.dll",
+ "lib/uap10.0/System.Reactive.Providers.pri",
+ "lib/uap10.0/System.Reactive.Providers.xml",
+ "system.reactive.providers.4.4.1.nupkg.sha512",
+ "system.reactive.providers.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "type": "package",
+ "path": "system.reflection.metadata/1.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.1/System.Reflection.Metadata.dll",
+ "lib/netstandard1.1/System.Reflection.Metadata.xml",
+ "lib/netstandard2.0/System.Reflection.Metadata.dll",
+ "lib/netstandard2.0/System.Reflection.Metadata.xml",
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll",
+ "lib/portable-net45+win8/System.Reflection.Metadata.xml",
+ "system.reflection.metadata.1.6.0.nupkg.sha512",
+ "system.reflection.metadata.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.Reader/4.0.0": {
+ "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "type": "package",
+ "path": "system.resources.reader/4.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/System.Resources.Reader.dll",
+ "system.resources.reader.4.0.0.nupkg.sha512",
+ "system.resources.reader.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "type": "package",
+ "path": "system.runtime.handles/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/netstandard1.3/System.Runtime.Handles.dll",
+ "ref/netstandard1.3/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/de/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/es/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/it/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.handles.4.3.0.nupkg.sha512",
+ "system.runtime.handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "type": "package",
+ "path": "system.runtime.interopservices/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.xml",
+ "ref/netcore50/de/System.Runtime.InteropServices.xml",
+ "ref/netcore50/es/System.Runtime.InteropServices.xml",
+ "ref/netcore50/fr/System.Runtime.InteropServices.xml",
+ "ref/netcore50/it/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ja/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ko/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ru/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.2/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.3/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.5/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "type": "package",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.runtimeinformation.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "type": "package",
+ "path": "system.runtime.numerics/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.Numerics.dll",
+ "lib/netstandard1.3/System.Runtime.Numerics.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Runtime.Numerics.dll",
+ "ref/netcore50/System.Runtime.Numerics.xml",
+ "ref/netcore50/de/System.Runtime.Numerics.xml",
+ "ref/netcore50/es/System.Runtime.Numerics.xml",
+ "ref/netcore50/fr/System.Runtime.Numerics.xml",
+ "ref/netcore50/it/System.Runtime.Numerics.xml",
+ "ref/netcore50/ja/System.Runtime.Numerics.xml",
+ "ref/netcore50/ko/System.Runtime.Numerics.xml",
+ "ref/netcore50/ru/System.Runtime.Numerics.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/System.Runtime.Numerics.dll",
+ "ref/netstandard1.1/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.numerics.4.3.0.nupkg.sha512",
+ "system.runtime.numerics.nuspec"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.1.1": {
+ "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "type": "package",
+ "path": "system.runtime.serialization.primitives/4.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.Runtime.Serialization.Primitives.dll",
+ "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
+ "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.Runtime.Serialization.Primitives.dll",
+ "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
+ "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
+ "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
+ "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
+ "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
+ "system.runtime.serialization.primitives.nuspec"
+ ]
+ },
+ "System.Runtime.Serialization.Xml/4.1.1": {
+ "sha512": "yqfKHkWUAdI0hdDIdD9KDzluKtZ8IIqLF3O7xIZlt6UTs1bOvFRpCvRTvGQva3Ak/ZM9/nq9IHBJ1tC4Ybcrjg==",
+ "type": "package",
+ "path": "system.runtime.serialization.xml/4.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.Runtime.Serialization.Xml.dll",
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.Runtime.Serialization.Xml.dll",
+ "ref/netcore50/System.Runtime.Serialization.Xml.dll",
+ "ref/netcore50/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/de/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/es/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/it/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll",
+ "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll",
+ "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.serialization.xml.4.1.1.nupkg.sha512",
+ "system.runtime.serialization.xml.nuspec"
+ ]
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "type": "package",
+ "path": "system.security.accesscontrol/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.xml",
+ "lib/netstandard1.3/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/System.Security.AccessControl.dll",
+ "ref/netstandard1.3/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/de/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/es/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/it/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
+ "ref/netstandard2.0/System.Security.AccessControl.dll",
+ "ref/netstandard2.0/System.Security.AccessControl.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/win/lib/net46/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.accesscontrol.5.0.0.nupkg.sha512",
+ "system.security.accesscontrol.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "type": "package",
+ "path": "system.security.cryptography.algorithms/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Algorithms.dll",
+ "lib/net461/System.Security.Cryptography.Algorithms.dll",
+ "lib/net463/System.Security.Cryptography.Algorithms.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Algorithms.dll",
+ "ref/net461/System.Security.Cryptography.Algorithms.dll",
+ "ref/net463/System.Security.Cryptography.Algorithms.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
+ "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
+ "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
+ "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
+ "system.security.cryptography.algorithms.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Cng/4.5.0": {
+ "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
+ "type": "package",
+ "path": "system.security.cryptography.cng/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Cng.dll",
+ "lib/net461/System.Security.Cryptography.Cng.dll",
+ "lib/net462/System.Security.Cryptography.Cng.dll",
+ "lib/net47/System.Security.Cryptography.Cng.dll",
+ "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Cng.dll",
+ "ref/net461/System.Security.Cryptography.Cng.dll",
+ "ref/net461/System.Security.Cryptography.Cng.xml",
+ "ref/net462/System.Security.Cryptography.Cng.dll",
+ "ref/net462/System.Security.Cryptography.Cng.xml",
+ "ref/net47/System.Security.Cryptography.Cng.dll",
+ "ref/net47/System.Security.Cryptography.Cng.xml",
+ "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
+ "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
+ "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.cryptography.cng.4.5.0.nupkg.sha512",
+ "system.security.cryptography.cng.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "type": "package",
+ "path": "system.security.cryptography.csp/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Csp.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Csp.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
+ "runtimes/win/lib/netcore50/_._",
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
+ "system.security.cryptography.csp.4.3.0.nupkg.sha512",
+ "system.security.cryptography.csp.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "type": "package",
+ "path": "system.security.cryptography.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Encoding.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Encoding.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
+ "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
+ "system.security.cryptography.encoding.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "type": "package",
+ "path": "system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
+ "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
+ "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "system.security.cryptography.openssl.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "type": "package",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Primitives.dll",
+ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Primitives.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
+ "system.security.cryptography.primitives.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.ProtectedData/4.7.0": {
+ "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
+ "type": "package",
+ "path": "system.security.cryptography.protecteddata/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net461/System.Security.Cryptography.ProtectedData.xml",
+ "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.ProtectedData.dll",
+ "ref/net461/System.Security.Cryptography.ProtectedData.dll",
+ "ref/net461/System.Security.Cryptography.ProtectedData.xml",
+ "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
+ "system.security.cryptography.protecteddata.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "type": "package",
+ "path": "system.security.cryptography.x509certificates/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.X509Certificates.dll",
+ "lib/net461/System.Security.Cryptography.X509Certificates.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.X509Certificates.dll",
+ "ref/net461/System.Security.Cryptography.X509Certificates.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
+ "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
+ "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
+ "system.security.cryptography.x509certificates.nuspec"
+ ]
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
+ "type": "package",
+ "path": "system.security.principal.windows/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.xml",
+ "lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.xml",
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/System.Security.Principal.Windows.dll",
+ "ref/netstandard1.3/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
+ "ref/netstandard2.0/System.Security.Principal.Windows.dll",
+ "ref/netstandard2.0/System.Security.Principal.Windows.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.principal.windows.5.0.0.nupkg.sha512",
+ "system.security.principal.windows.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding.CodePages/4.0.1": {
+ "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "type": "package",
+ "path": "system.text.encoding.codepages/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Text.Encoding.CodePages.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "system.text.encoding.codepages.4.0.1.nupkg.sha512",
+ "system.text.encoding.codepages.nuspec"
+ ]
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "type": "package",
+ "path": "system.text.encoding.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.Extensions.dll",
+ "ref/netcore50/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
+ "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.extensions.4.3.0.nupkg.sha512",
+ "system.text.encoding.extensions.nuspec"
+ ]
+ },
+ "System.Text.Encodings.Web/4.7.2": {
+ "sha512": "iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==",
+ "type": "package",
+ "path": "system.text.encodings.web/4.7.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Text.Encodings.Web.dll",
+ "lib/net461/System.Text.Encodings.Web.xml",
+ "lib/netstandard1.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard1.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.1/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.1/System.Text.Encodings.Web.xml",
+ "system.text.encodings.web.4.7.2.nupkg.sha512",
+ "system.text.encodings.web.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Json/4.7.2": {
+ "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
+ "type": "package",
+ "path": "system.text.json/4.7.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Text.Json.dll",
+ "lib/net461/System.Text.Json.xml",
+ "lib/netcoreapp3.0/System.Text.Json.dll",
+ "lib/netcoreapp3.0/System.Text.Json.xml",
+ "lib/netstandard2.0/System.Text.Json.dll",
+ "lib/netstandard2.0/System.Text.Json.xml",
+ "system.text.json.4.7.2.nupkg.sha512",
+ "system.text.json.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "type": "package",
+ "path": "system.text.regularexpressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Text.RegularExpressions.dll",
+ "lib/netcore50/System.Text.RegularExpressions.dll",
+ "lib/netstandard1.6/System.Text.RegularExpressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.xml",
+ "ref/netcore50/de/System.Text.RegularExpressions.xml",
+ "ref/netcore50/es/System.Text.RegularExpressions.xml",
+ "ref/netcore50/fr/System.Text.RegularExpressions.xml",
+ "ref/netcore50/it/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ja/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ko/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ru/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.0/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.0/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.3/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.6/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.regularexpressions.4.3.0.nupkg.sha512",
+ "system.text.regularexpressions.nuspec"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks.Dataflow/4.8.0": {
+ "sha512": "PSIdcgbyNv7FZvZ1I9Mqy6XZOwstYYMdZiXuHvIyc0gDyPjEhrrP9OvTGDHp+LAHp1RNSLjPYssyqox9+Kt9Ug==",
+ "type": "package",
+ "path": "system.threading.tasks.dataflow/4.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml",
+ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
+ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml",
+ "ref/netcoreapp2.0/_._",
+ "system.threading.tasks.dataflow.4.8.0.nupkg.sha512",
+ "system.threading.tasks.dataflow.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
+ "type": "package",
+ "path": "system.threading.tasks.extensions/4.5.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.Threading.Tasks.Extensions.dll",
+ "lib/net461/System.Threading.Tasks.Extensions.xml",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netcoreapp2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
+ "system.threading.tasks.extensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading.Thread/4.0.0": {
+ "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "type": "package",
+ "path": "system.threading.thread/4.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Threading.Thread.dll",
+ "lib/netcore50/_._",
+ "lib/netstandard1.3/System.Threading.Thread.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Threading.Thread.dll",
+ "ref/netstandard1.3/System.Threading.Thread.dll",
+ "ref/netstandard1.3/System.Threading.Thread.xml",
+ "ref/netstandard1.3/de/System.Threading.Thread.xml",
+ "ref/netstandard1.3/es/System.Threading.Thread.xml",
+ "ref/netstandard1.3/fr/System.Threading.Thread.xml",
+ "ref/netstandard1.3/it/System.Threading.Thread.xml",
+ "ref/netstandard1.3/ja/System.Threading.Thread.xml",
+ "ref/netstandard1.3/ko/System.Threading.Thread.xml",
+ "ref/netstandard1.3/ru/System.Threading.Thread.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.thread.4.0.0.nupkg.sha512",
+ "system.threading.thread.nuspec"
+ ]
+ },
+ "System.Threading.ThreadPool/4.0.10": {
+ "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
+ "type": "package",
+ "path": "system.threading.threadpool/4.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Threading.ThreadPool.dll",
+ "lib/netcore50/_._",
+ "lib/netstandard1.3/System.Threading.ThreadPool.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Threading.ThreadPool.dll",
+ "ref/netstandard1.3/System.Threading.ThreadPool.dll",
+ "ref/netstandard1.3/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.threadpool.4.0.10.nupkg.sha512",
+ "system.threading.threadpool.nuspec"
+ ]
+ },
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
+ "type": "package",
+ "path": "system.threading.timer/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net451/_._",
+ "lib/portable-net451+win81+wpa81/_._",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net451/_._",
+ "ref/netcore50/System.Threading.Timer.dll",
+ "ref/netcore50/System.Threading.Timer.xml",
+ "ref/netcore50/de/System.Threading.Timer.xml",
+ "ref/netcore50/es/System.Threading.Timer.xml",
+ "ref/netcore50/fr/System.Threading.Timer.xml",
+ "ref/netcore50/it/System.Threading.Timer.xml",
+ "ref/netcore50/ja/System.Threading.Timer.xml",
+ "ref/netcore50/ko/System.Threading.Timer.xml",
+ "ref/netcore50/ru/System.Threading.Timer.xml",
+ "ref/netcore50/zh-hans/System.Threading.Timer.xml",
+ "ref/netcore50/zh-hant/System.Threading.Timer.xml",
+ "ref/netstandard1.2/System.Threading.Timer.dll",
+ "ref/netstandard1.2/System.Threading.Timer.xml",
+ "ref/netstandard1.2/de/System.Threading.Timer.xml",
+ "ref/netstandard1.2/es/System.Threading.Timer.xml",
+ "ref/netstandard1.2/fr/System.Threading.Timer.xml",
+ "ref/netstandard1.2/it/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ja/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ko/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ru/System.Threading.Timer.xml",
+ "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
+ "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
+ "ref/portable-net451+win81+wpa81/_._",
+ "ref/win81/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.timer.4.3.0.nupkg.sha512",
+ "system.threading.timer.nuspec"
+ ]
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "type": "package",
+ "path": "system.xml.readerwriter/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
+ "lib/netcore50/System.Xml.ReaderWriter.dll",
+ "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
+ "ref/netcore50/System.Xml.ReaderWriter.dll",
+ "ref/netcore50/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/de/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/es/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/it/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
+ "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
+ "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.xml.readerwriter.4.3.0.nupkg.sha512",
+ "system.xml.readerwriter.nuspec"
+ ]
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "type": "package",
+ "path": "system.xml.xdocument/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Xml.XDocument.dll",
+ "lib/netstandard1.3/System.Xml.XDocument.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Xml.XDocument.dll",
+ "ref/netcore50/System.Xml.XDocument.xml",
+ "ref/netcore50/de/System.Xml.XDocument.xml",
+ "ref/netcore50/es/System.Xml.XDocument.xml",
+ "ref/netcore50/fr/System.Xml.XDocument.xml",
+ "ref/netcore50/it/System.Xml.XDocument.xml",
+ "ref/netcore50/ja/System.Xml.XDocument.xml",
+ "ref/netcore50/ko/System.Xml.XDocument.xml",
+ "ref/netcore50/ru/System.Xml.XDocument.xml",
+ "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
+ "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/System.Xml.XDocument.dll",
+ "ref/netstandard1.0/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/de/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/es/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/it/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/System.Xml.XDocument.dll",
+ "ref/netstandard1.3/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/de/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/es/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/it/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.xml.xdocument.4.3.0.nupkg.sha512",
+ "system.xml.xdocument.nuspec"
+ ]
+ },
+ "System.Xml.XmlDocument/4.0.1": {
+ "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "type": "package",
+ "path": "system.xml.xmldocument/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Xml.XmlDocument.dll",
+ "lib/netstandard1.3/System.Xml.XmlDocument.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Xml.XmlDocument.dll",
+ "ref/netstandard1.3/System.Xml.XmlDocument.dll",
+ "ref/netstandard1.3/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.xml.xmldocument.4.0.1.nupkg.sha512",
+ "system.xml.xmldocument.nuspec"
+ ]
+ },
+ "System.Xml.XmlSerializer/4.0.11": {
+ "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
+ "type": "package",
+ "path": "system.xml.xmlserializer/4.0.11",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Xml.XmlSerializer.dll",
+ "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Xml.XmlSerializer.dll",
+ "ref/netcore50/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/de/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/es/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/it/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
+ "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
+ "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll",
+ "system.xml.xmlserializer.4.0.11.nupkg.sha512",
+ "system.xml.xmlserializer.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETCoreApp,Version=v3.1": [
+ "Microsoft.Azure.DurableTask.AzureStorage >= 2.0.0-rc",
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask >= 3.0.0-rc.1",
+ "Microsoft.Azure.WebJobs.Extensions.Storage >= 5.3.0",
+ "Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator >= 1.1.3"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\GitHub\\CIPP Workspace\\CIPP-API\\extensions.csproj",
+ "projectName": "extensions",
+ "projectPath": "C:\\GitHub\\CIPP Workspace\\CIPP-API\\extensions.csproj",
+ "packagesPath": "C:\\Users\\JohnDuprey\\.nuget\\packages\\",
+ "outputPath": "C:\\GitHub\\CIPP Workspace\\CIPP-API\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\JohnDuprey\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.1"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "projectReferences": {}
+ }
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "dependencies": {
+ "Microsoft.Azure.DurableTask.AzureStorage": {
+ "target": "Package",
+ "version": "[2.0.0-rc, )"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.DurableTask": {
+ "target": "Package",
+ "version": "[3.0.0-rc.1, )"
+ },
+ "Microsoft.Azure.WebJobs.Extensions.Storage": {
+ "target": "Package",
+ "version": "[5.3.0, )"
+ },
+ "Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator": {
+ "target": "Package",
+ "version": "[1.1.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.321\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
new file mode 100644
index 000000000000..1d3229f05173
--- /dev/null
+++ b/obj/project.nuget.cache
@@ -0,0 +1,206 @@
+{
+ "version": 2,
+ "dgSpecHash": "F85Ir3NChGHf2TN25H/owzsy3MXngMU8H/PyW3hkOYFS4r7iCy10hsFlSTJVQRdnDisBhHJw3NM4wl55+rVO3Q==",
+ "success": true,
+ "projectFilePath": "C:\\GitHub\\CIPP Workspace\\CIPP-API\\extensions.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\azure.data.tables\\12.8.1\\azure.data.tables.12.8.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\azure.identity\\1.11.0\\azure.identity.1.11.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\azure.storage.blobs\\12.18.0\\azure.storage.blobs.12.18.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\azure.storage.common\\12.17.0\\azure.storage.common.12.17.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\azure.storage.queues\\12.16.0\\azure.storage.queues.12.16.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\castle.core\\5.0.0\\castle.core.5.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\google.protobuf\\3.21.9\\google.protobuf.3.21.9.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\grpc.core\\2.46.5\\grpc.core.2.46.5.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\grpc.core.api\\2.46.5\\grpc.core.api.2.46.5.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.applicationinsights\\2.21.0\\microsoft.applicationinsights.2.21.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnet.webapi.client\\5.2.6\\microsoft.aspnet.webapi.client.5.2.6.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\2.2.0\\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.hosting\\2.2.0\\microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\2.2.0\\microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.0\\microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.mvc.formatters.json\\2.2.0\\microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.mvc.webapicompatshim\\2.2.0\\microsoft.aspnetcore.mvc.webapicompatshim.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel\\2.2.0\\microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.core\\2.2.0\\microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.https\\2.2.0\\microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.transport.abstractions\\2.2.0\\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.transport.sockets\\2.2.1\\microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.durabletask.applicationinsights\\0.1.2\\microsoft.azure.durabletask.applicationinsights.0.1.2.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.durabletask.azurestorage\\2.0.0-rc\\microsoft.azure.durabletask.azurestorage.2.0.0-rc.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.durabletask.core\\2.15.1\\microsoft.azure.durabletask.core.2.15.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.webjobs\\3.0.37\\microsoft.azure.webjobs.3.0.37.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.webjobs.core\\3.0.37\\microsoft.azure.webjobs.core.3.0.37.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.webjobs.extensions.durabletask\\3.0.0-rc.1\\microsoft.azure.webjobs.extensions.durabletask.3.0.0-rc.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.webjobs.extensions.durabletask.analyzers\\0.5.0\\microsoft.azure.webjobs.extensions.durabletask.analyzers.0.5.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.webjobs.extensions.storage\\5.3.0\\microsoft.azure.webjobs.extensions.storage.5.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.webjobs.extensions.storage.blobs\\5.3.0\\microsoft.azure.webjobs.extensions.storage.blobs.5.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.webjobs.extensions.storage.queues\\5.1.3\\microsoft.azure.webjobs.extensions.storage.queues.5.1.3.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.azure.webjobs.script.extensionsmetadatagenerator\\1.1.3\\microsoft.azure.webjobs.script.extensionsmetadatagenerator.1.1.3.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.build.framework\\15.3.409\\microsoft.build.framework.15.3.409.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.build.utilities.core\\15.3.409\\microsoft.build.utilities.core.15.3.409.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\2.1.0\\microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.durabletask.sidecar.protobuf\\1.0.0\\microsoft.durabletask.sidecar.protobuf.1.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.azure\\1.7.3\\microsoft.extensions.azure.1.7.3.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.configuration\\2.2.0\\microsoft.extensions.configuration.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\2.2.0\\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.configuration.binder\\2.2.0\\microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\2.2.0\\microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\2.2.0\\microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.configuration.json\\2.1.0\\microsoft.extensions.configuration.json.2.1.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\2.2.0\\microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\2.2.0\\microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.dependencymodel\\2.1.0\\microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\2.2.0\\microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\2.2.0\\microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.hosting\\2.1.0\\microsoft.extensions.hosting.2.1.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.http\\2.2.0\\microsoft.extensions.http.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.logging\\2.2.0\\microsoft.extensions.logging.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.logging.configuration\\2.1.0\\microsoft.extensions.logging.configuration.2.1.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.options\\2.2.0\\microsoft.extensions.options.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\2.1.0\\microsoft.extensions.options.configurationextensions.2.1.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.extensions.primitives\\2.2.0\\microsoft.extensions.primitives.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.identity.client\\4.60.1\\microsoft.identity.client.4.60.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.60.1\\microsoft.identity.client.extensions.msal.4.60.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\newtonsoft.json.bson\\1.0.1\\newtonsoft.json.bson.1.0.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.collections.nongeneric\\4.0.1\\system.collections.nongeneric.4.0.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.componentmodel.annotations\\4.5.0\\system.componentmodel.annotations.4.5.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.diagnostics.eventlog\\4.7.0\\system.diagnostics.eventlog.4.7.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.diagnostics.process\\4.1.0\\system.diagnostics.process.4.1.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.io.hashing\\6.0.0\\system.io.hashing.6.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.io.pipelines\\4.5.2\\system.io.pipelines.4.5.2.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.private.datacontractserialization\\4.1.1\\system.private.datacontractserialization.4.1.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reactive\\4.4.1\\system.reactive.4.4.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reactive.compatibility\\4.4.1\\system.reactive.compatibility.4.4.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reactive.core\\4.4.1\\system.reactive.core.4.4.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reactive.interfaces\\4.4.1\\system.reactive.interfaces.4.4.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reactive.linq\\4.4.1\\system.reactive.linq.4.4.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reactive.platformservices\\4.4.1\\system.reactive.platformservices.4.4.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reactive.providers\\4.4.1\\system.reactive.providers.4.4.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.resources.reader\\4.0.0\\system.resources.reader.4.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.runtime.serialization.xml\\4.1.1\\system.runtime.serialization.xml.4.1.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.text.encoding.codepages\\4.0.1\\system.text.encoding.codepages.4.0.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.threading.tasks.dataflow\\4.8.0\\system.threading.tasks.dataflow.4.8.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.threading.thread\\4.0.0\\system.threading.thread.4.0.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.threading.threadpool\\4.0.10\\system.threading.threadpool.4.0.10.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.xml.xmldocument\\4.0.1\\system.xml.xmldocument.4.0.1.nupkg.sha512",
+ "C:\\Users\\JohnDuprey\\.nuget\\packages\\system.xml.xmlserializer\\4.0.11\\system.xml.xmlserializer.4.0.11.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/profile.ps1 b/profile.ps1
index ec6aa4e19b86..1aa6a00d98c6 100644
--- a/profile.ps1
+++ b/profile.ps1
@@ -23,6 +23,16 @@
}
}
+if ($env:ExternalDurablePowerShellSDK -eq $true) {
+ try {
+ Import-Module AzureFunctions.PowerShell.Durable.SDK -ErrorAction Stop
+ Write-Host 'External Durable SDK enabled'
+ } catch {
+ Write-LogMessage -message 'Failed to import module - AzureFunctions.PowerShell.Durable.SDK' -LogData (Get-CippException -Exception $_) -Sev 'debug'
+ $_.Exception.Message
+ }
+}
+
try {
Disable-AzContextAutosave -Scope Process | Out-Null
} catch {}
diff --git a/version_latest.txt b/version_latest.txt
index d2ff458a0121..4cc0e35cb30c 100644
--- a/version_latest.txt
+++ b/version_latest.txt
@@ -1 +1 @@
-5.5.3
\ No newline at end of file
+5.6.0
\ No newline at end of file