diff --git a/BestPracticeAnalyser_All/function.json b/BestPracticeAnalyser_All/function.json deleted file mode 100644 index 2d4ea9094b24..000000000000 --- a/BestPracticeAnalyser_All/function.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "bindings": [ - { - "name": "tenant", - "direction": "in", - "type": "activityTrigger" - } - ] -} \ No newline at end of file diff --git a/BestPracticeAnalyser_GetQueue/function.json b/BestPracticeAnalyser_GetQueue/function.json deleted file mode 100644 index b31f1ad21352..000000000000 --- a/BestPracticeAnalyser_GetQueue/function.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "bindings": [ - { - "name": "name", - "type": "activityTrigger", - "direction": "in" - } - ] -} \ No newline at end of file diff --git a/BestPracticeAnalyser_GetQueue/run.ps1 b/BestPracticeAnalyser_GetQueue/run.ps1 deleted file mode 100644 index 0e2792c8075c..000000000000 --- a/BestPracticeAnalyser_GetQueue/run.ps1 +++ /dev/null @@ -1,10 +0,0 @@ -param($name) -#$Skiplist = (Get-Content ExcludedTenants -ErrorAction SilentlyContinue | ConvertFrom-Csv -Delimiter "|" -Header "name", "date", "user").name -$Tenants = Get-Tenants #Get-Content ".\tenants.cache.json" | ConvertFrom-Json | Where-Object {$Skiplist -notcontains $_.defaultDomainName} - -$object = foreach ($Tenant in $Tenants) { - $Tenant.defaultDomainName -} -Write-LogMessage -API 'BestPracticeAnalyser' -tenant 'None' -message "running BPA for $($tenants.count) tenants" -sev info - -$object \ No newline at end of file diff --git a/BestPracticeAnalyser_Orchestration/function.json b/BestPracticeAnalyser_Orchestration/function.json deleted file mode 100644 index 7326b39c184d..000000000000 --- a/BestPracticeAnalyser_Orchestration/function.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "bindings": [ - { - "name": "Context", - "type": "orchestrationTrigger", - "direction": "in" - } - ] -} \ No newline at end of file diff --git a/BestPracticeAnalyser_Orchestration/run.ps1 b/BestPracticeAnalyser_Orchestration/run.ps1 deleted file mode 100644 index 891f7e3fb6a4..000000000000 --- a/BestPracticeAnalyser_Orchestration/run.ps1 +++ /dev/null @@ -1,21 +0,0 @@ -param($Context) - -$DurableRetryOptions = @{ - FirstRetryInterval = (New-TimeSpan -Seconds 5) - MaxNumberOfAttempts = 1 - BackoffCoefficient = 2 -} -$RetryOptions = New-DurableRetryOptions @DurableRetryOptions -Write-LogMessage -API 'BestPracticeAnalyser' -tenant $tenant -message 'Started BestPracticeAnalyser' -sev info - -if ($Context.Input -and ![string]::IsNullOrEmpty([string]$Context.Input.TenantFilter)) { - $Batch = @([string]$Context.Input.TenantFilter) -} else { - $Batch = (Invoke-ActivityFunction -FunctionName 'BestPracticeAnalyser_GetQueue' -Input 'LetsGo') -} - -$ParallelTasks = foreach ($Item in $Batch) { - Invoke-DurableActivity -FunctionName 'BestPracticeAnalyser_All' -Input $item -NoWait -RetryOptions $RetryOptions -} - -Write-LogMessage -API 'BestPracticeAnalyser' -tenant $tenant -message 'Best Practice Analyser has Finished' -sev Info \ No newline at end of file diff --git a/BestPracticeAnalyser_OrchestrationStarter/run.ps1 b/BestPracticeAnalyser_OrchestrationStarter/run.ps1 index 4d479c53e598..aba14651622b 100644 --- a/BestPracticeAnalyser_OrchestrationStarter/run.ps1 +++ b/BestPracticeAnalyser_OrchestrationStarter/run.ps1 @@ -1,23 +1,43 @@ using namespace System.Net - param($Request, $TriggerMetadata) -if ($CurrentlyRunning) { - $Results = [pscustomobject]@{'Results' = 'Already running. Please wait for the current instance to finish' } - Write-LogMessage -API 'BestPracticeAnalyser' -message 'Attempted to start analysis but an instance was already running.' -sev Info + +if ($Request.Query.TenantFilter) { + $TenantList = @($Request.Query.TenantFilter) + $Name = "Best Practice Analyser ($($Request.Query.TenantFilter))" } else { - $InputObject = @{ - TenantFilter = $Request.Query.TenantFilter + $TenantList = Get-Tenants + $Name = 'Best Practice Analyser (All Tenants)' +} +$CippRoot = (Get-Item $PSScriptRoot).Parent.FullName +$TemplatesLoc = Get-ChildItem "$CippRoot\Config\*.BPATemplate.json" +$Templates = $TemplatesLoc | ForEach-Object { + $Template = $(Get-Content $_) | ConvertFrom-Json + $Template.Name +} + +$BPAReports = foreach ($Tenant in $TenantList) { + foreach ($Template in $Templates) { + [PSCustomObject]@{ + FunctionName = 'BPACollectData' + Tenant = $Tenant.defaultDomainName + Template = $Template + QueueName = '{0} - {1}' -f $Template, $Tenant.defaultDomainName + } } - $InstanceId = Start-NewOrchestration -FunctionName 'BestPracticeAnalyser_Orchestration' -InputObject $InputObject - Write-Host "Started orchestration with ID = '$InstanceId'" - $Orchestrator = New-OrchestrationCheckStatusResponse -Request $Request -InstanceId $InstanceId - Write-LogMessage -API 'BestPracticeAnalyser' -message 'Started retrieving best practice information' -sev Info - $Results = [pscustomobject]@{'Results' = 'Started running analysis' } } -Write-Host ($Orchestrator | ConvertTo-Json) +$Queue = New-CippQueueEntry -Name $Name -TotalTasks ($BPAReports | Measure-Object).Count +$BPAReports = $BPAReports | Select-Object *, @{Name = 'QueueId'; Expression = { $Queue.RowKey } } +$InputObject = [PSCustomObject]@{ + Batch = @($BPAReports) + OrchestratorName = 'BPAOrchestrator' + SkipLog = $true + DurableMode = 'Sequence' +} +Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Compress -Depth 5) +$Results = [pscustomobject]@{'Results' = 'BPA started' } Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{ StatusCode = [HttpStatusCode]::OK - Body = $results + Body = $Results }) \ No newline at end of file diff --git a/BestPracticeAnalyser_OrchestrationStarterTimer/run.ps1 b/BestPracticeAnalyser_OrchestrationStarterTimer/run.ps1 index ba523d3d862d..6c34fc501c62 100644 --- a/BestPracticeAnalyser_OrchestrationStarterTimer/run.ps1 +++ b/BestPracticeAnalyser_OrchestrationStarterTimer/run.ps1 @@ -1,23 +1,36 @@ param($Timer) -if ($env:DEV_SKIP_BPA_TIMER) { +if ($env:DEV_SKIP_BPA_TIMER) { Write-Host 'Skipping BPA timer' - exit 0 + exit 0 } -try { - $CurrentlyRunning = Get-Item 'Cache_BestPracticeAnalyser\CurrentlyRunning.txt' -ErrorAction SilentlyContinue | Where-Object -Property LastWriteTime -GT (Get-Date).AddHours(-24) - if ($CurrentlyRunning) { - $Results = [pscustomobject]@{'Results' = 'Already running. Please wait for the current instance to finish' } - Write-LogMessage -API 'BestPracticeAnalyser' -message 'Attempted to start analysis but an instance was already running.' -sev Info - } - else { - $InstanceId = Start-NewOrchestration -FunctionName 'BestPracticeAnalyser_Orchestration' - Write-Host "Started orchestration with ID = '$InstanceId'" - $Orchestrator = New-OrchestrationCheckStatusResponse -Request $Timer -InstanceId $InstanceId - Write-LogMessage -API 'BestPracticeAnalyser' -message 'Started retrieving best practice information' -sev Info - $Results = [pscustomobject]@{'Results' = 'Started running analysis' } +$TenantList = Get-Tenants + +$CippRoot = (Get-Item $PSScriptRoot).Parent.FullName +$TemplatesLoc = Get-ChildItem "$CippRoot\Config\*.BPATemplate.json" +$Templates = $TemplatesLoc | ForEach-Object { + $Template = $(Get-Content $_) | ConvertFrom-Json + $Template.Name +} + +$BPAReports = foreach ($Tenant in $TenantList) { + foreach ($Template in $Templates) { + [PSCustomObject]@{ + FunctionName = 'BPACollectData' + Tenant = $Tenant.defaultDomainName + Template = $Template + QueueName = '{0} - {1}' -f $Template, $Tenant.defaultDomainName + } } - Write-Host ($Orchestrator | ConvertTo-Json) } -catch { Write-Host "BestPracticeAnalyser_OrchestratorStarterTimer Exception $($_.Exception.Message)" } + +$Queue = New-CippQueueEntry -Name 'Best Practice Analyser' -TotalTasks ($BPAReports | Measure-Object).Count +$BPAReports = $BPAReports | Select-Object *, @{Name = 'QueueId'; Expression = { $Queue.RowKey } } +$InputObject = [PSCustomObject]@{ + Batch = @($BPAReports) + OrchestratorName = 'BPAOrchestrator' + SkipLog = $true + DurableMode = 'Sequence' +} +Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Compress -Depth 5) diff --git a/Config/CIPPTenantFeatures.BPATemplate.json b/Config/CIPPTenantFeatures.BPATemplate.json new file mode 100644 index 000000000000..19cc09628a4f --- /dev/null +++ b/Config/CIPPTenantFeatures.BPATemplate.json @@ -0,0 +1,33 @@ +{ + "name": "CIPP Tenant Feature Licensing", + "style": "Table", + "Fields": [ + { + "name": "AssignedPlans", + "UseExistingInfo": false, + "ExtractFields": ["AADPremiumService", "exchange", "SharePoint"], + "FrontendFields": [ + { + "name": "Entra ID Premium", + "value": "AssignedPlans.AADPremiumService", + "formatter": "bool" + }, + { + "name": "Exchange", + "value": "AssignedPlans.exchange", + "formatter": "bool" + }, + { + "name": "SharePoint", + "value": "AssignedPlans.SharePoint", + "formatter": "bool" + } + ], + "desc": "Entra ID Premium Status", + "StoreAs": "JSON", + "API": "CIPPFunction", + "Command": "Get-CIPPTenantCapabilities", + "Parameters": {} + } + ] +} diff --git a/Modules/CIPPCore/Public/Add-CIPPBPAField.ps1 b/Modules/CIPPCore/Public/Add-CIPPBPAField.ps1 index 1dd0b8c9d867..1cc394c9fbf5 100644 --- a/Modules/CIPPCore/Public/Add-CIPPBPAField.ps1 +++ b/Modules/CIPPCore/Public/Add-CIPPBPAField.ps1 @@ -9,11 +9,11 @@ function Add-CIPPBPAField { $Table = Get-CippTable -tablename 'cachebpav2' $TenantName = Get-Tenants | Where-Object -Property defaultDomainName -EQ $Tenant $CurrentContentsObject = (Get-CIPPAzDataTableEntity @Table -Filter "RowKey eq '$BPAName' and PartitionKey eq '$($TenantName.customerId)'") - Write-Host "Adding $FieldName to $BPAName for $Tenant. content is $($CurrentContents.RowKey)" + Write-Information "Adding $FieldName to $BPAName for $Tenant. content is $FieldValue" if ($CurrentContentsObject.RowKey) { $CurrentContents = @{} - $CurrentContentsObject.PSObject.Properties | ForEach-Object { - $CurrentContents[$_.Name] = $_.Value + $CurrentContentsObject.PSObject.Properties.Name | ForEach-Object { + $CurrentContents[$_] = $CurrentContentsObject.$_ } $Result = $CurrentContents } else { @@ -30,16 +30,12 @@ function Add-CIPPBPAField { $Result["$fieldName"] = [bool]$FieldValue } 'JSON' { - if ($FieldValue -eq $null) { $JsonString = '{}' } else { $JsonString = (ConvertTo-Json -Depth 15 -InputObject $FieldValue -Compress) } $Result[$fieldName] = [string]$JsonString } 'string' { $Result[$fieldName], [string]$FieldValue } - 'percentage' { - - } } Add-CIPPAzDataTableEntity @Table -Entity $Result -Force } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/CippQueue/Invoke-ListCippQueue.ps1 b/Modules/CIPPCore/Public/CippQueue/Invoke-ListCippQueue.ps1 index a8e38d64bc16..9a70341c884c 100644 --- a/Modules/CIPPCore/Public/CippQueue/Invoke-ListCippQueue.ps1 +++ b/Modules/CIPPCore/Public/CippQueue/Invoke-ListCippQueue.ps1 @@ -25,7 +25,7 @@ function Invoke-ListCippQueue { } if ($Tasks) { - if ($Tasks.Status -notcontains 'Running' -and ($TaskStatus.Completed + $TaskStatus.Failed) -eq $Queue.TotalTasks) { + if ($Tasks.Status -notcontains 'Running' -and ($TaskStatus.Completed + $TaskStatus.Failed) -ge $Queue.TotalTasks) { if ($Tasks.Status -notcontains 'Failed') { $Queue.Status = 'Completed' } else { diff --git a/BestPracticeAnalyser_All/run.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/BPA/Push-BPACollectData.ps1 similarity index 81% rename from BestPracticeAnalyser_All/run.ps1 rename to Modules/CIPPCore/Public/Entrypoints/Activity Triggers/BPA/Push-BPACollectData.ps1 index 6e90102a161a..71d41acb852b 100644 --- a/BestPracticeAnalyser_All/run.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/BPA/Push-BPACollectData.ps1 @@ -1,19 +1,25 @@ -param($tenant) +function Push-BPACollectData { + <# + .FUNCTIONALITY + Entrypoint + #> + param($Item) -$TenantName = Get-Tenants | Where-Object -Property defaultDomainName -EQ $tenant -$CippRoot = (Get-Item $PSScriptRoot).Parent.FullName -$TemplatesLoc = Get-ChildItem "$CippRoot\Config\*.BPATemplate.json" -$Templates = $TemplatesLoc | ForEach-Object { - $Template = $(Get-Content $_) | ConvertFrom-Json - [PSCustomObject]@{ - Data = $Template - Name = $Template.Name - Style = $Template.Style + $TenantName = Get-Tenants | Where-Object -Property defaultDomainName -EQ $Item.Tenant + $CippRoot = (Get-Item $PSScriptRoot).Parent.Parent.Parent.Parent.Parent.Parent.FullName + $TemplatesLoc = Get-ChildItem "$CippRoot\Config\*.BPATemplate.json" + $Templates = $TemplatesLoc | ForEach-Object { + $Template = $(Get-Content $_) | ConvertFrom-Json + [PSCustomObject]@{ + Data = $Template + Name = $Template.Name + Style = $Template.Style + } } -} -$Table = Get-CippTable -tablename 'cachebpav2' -$AddRow = foreach ($Template in $templates) { - # Build up the result object that will be passed back to the durable function + $Table = Get-CippTable -tablename 'cachebpav2' + + $Template = $Templates | Where-Object -Property Name -EQ -Value $Item.Template + # Build up the result object that will be stored in tables $Result = @{ Tenant = "$($TenantName.displayName)" GUID = "$($TenantName.customerId)" @@ -33,7 +39,7 @@ $AddRow = foreach ($Template in $templates) { } if ($Field.parameters.psobject.properties.name) { $field.Parameters | ForEach-Object { - Write-Host "Doing: $($_.psobject.properties.name) with value $($_.psobject.properties.value)" + Write-Information "Doing: $($_.psobject.properties.name) with value $($_.psobject.properties.value)" $paramsField[$_.psobject.properties.name] = $_.psobject.properties.value } } @@ -69,7 +75,7 @@ $AddRow = foreach ($Template in $templates) { } } } catch { - Write-Host "Error getting $($field.Name) in $($field.api) for $($TenantName.displayName) with GUID $($TenantName.customerId). Error: $($_.Exception.Message)" + Write-Information "Error getting $($field.Name) in $($field.api) for $($TenantName.displayName) with GUID $($TenantName.customerId). Error: $($_.Exception.Message)" Write-LogMessage -API 'BPA' -tenant $tenant -message "Error getting $($field.Name) for $($TenantName.displayName) with GUID $($TenantName.customerId). Error: $($_.Exception.Message)" -sev Error $fieldinfo = 'FAILED' $field.StoreAs = 'string' @@ -108,7 +114,6 @@ $AddRow = foreach ($Template in $templates) { Add-CIPPAzDataTableEntity @Table -Entity $Result -Force } catch { Write-LogMessage -API 'BPA' -tenant $tenant -message "Error getting saving data for $($template.Name) - $($TenantName.customerId). Error: $($_.Exception.Message)" -LogData (Get-CippException -Exception $_) -sev Error - } } } diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Graph Requests/Push-ListGraphRequestQueue.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Graph Requests/Push-ListGraphRequestQueue.ps1 index 6e0c07abeec3..827307d8c31f 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Graph Requests/Push-ListGraphRequestQueue.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Graph Requests/Push-ListGraphRequestQueue.ps1 @@ -5,61 +5,61 @@ function Push-ListGraphRequestQueue { #> 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)" + Write-Information "PowerShell durable 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 - - $ParamCollection = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) - foreach ($Param in ($Item.Parameters.GetEnumerator() | Sort-Object -CaseSensitive -Property Key)) { - $ParamCollection.Add($Param.Key, $Param.Value) - } - - $PartitionKey = $Item.PartitionKey + try { + $ParamCollection = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) - $TableName = ('cache{0}' -f ($Item.Endpoint -replace '[^A-Za-z0-9]'))[0..62] -join '' - Write-Host "Queue Table: $TableName" - $Table = Get-CIPPTable -TableName $TableName + $Parameters = $Item.Parameters | ConvertTo-Json -Depth 5 | ConvertFrom-Json -AsHashtable + foreach ($Param in ($Parameters.GetEnumerator() | Sort-Object -CaseSensitive -Property Key)) { + $ParamCollection.Add($Param.Key, $Param.Value) + } - $Filter = "PartitionKey eq '{0}' and Tenant eq '{1}'" -f $PartitionKey, $Item.TenantFilter - Write-Host "Filter: $Filter" - Get-CIPPAzDataTableEntity @Table -Filter $Filter -Property PartitionKey, RowKey | Remove-AzDataTableEntity @Table + $PartitionKey = $Item.PartitionKey - $GraphRequestParams = @{ - TenantFilter = $Item.TenantFilter - Endpoint = $Item.Endpoint - Parameters = $Item.Parameters - NoPagination = $Item.NoPagination - ReverseTenantLookupProperty = $Item.ReverseTenantLookupProperty - ReverseTenantLookup = $Item.ReverseTenantLookup - SkipCache = $true - } + $TableName = ('cache{0}' -f ($Item.Endpoint -replace '[^A-Za-z0-9]'))[0..62] -join '' + Write-Information "Queue Table: $TableName" + $Table = Get-CIPPTable -TableName $TableName - $RawGraphRequest = try { - Get-GraphRequestList @GraphRequestParams - } catch { - [PSCustomObject]@{ - Tenant = $Item.Tenant - CippStatus = "Could not connect to tenant. $($_.Exception.message)" + $Filter = "PartitionKey eq '{0}' and Tenant eq '{1}'" -f $PartitionKey, $Item.TenantFilter + Write-Information "Filter: $Filter" + $Existing = Get-CIPPAzDataTableEntity @Table -Filter $Filter -Property PartitionKey, RowKey + if ($Existing) { + $null = Remove-AzDataTableEntity @Table -Entity $Existing + } + $GraphRequestParams = @{ + TenantFilter = $Item.TenantFilter + Endpoint = $Item.Endpoint + Parameters = $Parameters + NoPagination = $Item.NoPagination + ReverseTenantLookupProperty = $Item.ReverseTenantLookupProperty + ReverseTenantLookup = $Item.ReverseTenantLookup + SkipCache = $true } - } - $GraphResults = foreach ($Request in $RawGraphRequest) { - $Json = ConvertTo-Json -Depth 5 -Compress -InputObject $Request - [PSCustomObject]@{ - TenantFilter = [string]$Item.TenantFilter - QueueId = [string]$Item.QueueId - QueueType = [string]$Item.QueueType - RowKey = [string](New-Guid) - PartitionKey = [string]$PartitionKey - Data = [string]$Json + $RawGraphRequest = try { + Get-GraphRequestList @GraphRequestParams + } catch { + [PSCustomObject]@{ + Tenant = $Item.Tenant + CippStatus = "Could not connect to tenant. $($_.Exception.message)" + } + } + $GraphResults = foreach ($Request in $RawGraphRequest) { + $Json = ConvertTo-Json -Depth 10 -Compress -InputObject $Request + $RowKey = $Request.id ?? (New-Guid).Guid + [PSCustomObject]@{ + Tenant = [string]$Item.TenantFilter + QueueId = [string]$Item.QueueId + QueueType = [string]$Item.QueueType + RowKey = [string]$RowKey + PartitionKey = [string]$PartitionKey + Data = [string]$Json + } } - } - try { Add-CIPPAzDataTableEntity @Table -Entity $GraphResults -Force | Out-Null } catch { - Write-Host "Queue Error: $($_.Exception.Message)" + Write-Information "Queue Error: $($_.Exception.Message)" throw $_ } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAppSecretExpiry.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAppSecretExpiry.ps1 index a7b8d25c672c..d150958f5628 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAppSecretExpiry.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-CIPPAlertAppSecretExpiry.ps1 @@ -10,9 +10,13 @@ function Push-CIPPAlertAppSecretExpiry { ) try { - Write-Host "Checking app expire for $($Item.tenant)" - New-GraphGetRequest -uri "https://graph.microsoft.com/beta/applications?`$select=appId,displayName,passwordCredentials" -tenantid $Item.tenant | ForEach-Object { - foreach ($App in $_) { + $Filter = "RowKey eq 'AppSecretExpiry' and PartitionKey eq '{0}'" -f $Item.tenantid + $LastRun = Get-CIPPAzDataTableEntity @LastRunTable -Filter $Filter + $Yesterday = (Get-Date).AddDays(-1) + if (-not $LastRun.Timestamp.DateTime -or ($LastRun.Timestamp.DateTime -le $Yesterday)) { + Write-Host "Checking app expire for $($Item.tenant)" + $appList = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/applications?`$select=appId,displayName,passwordCredentials" -tenantid $Item.tenant + foreach ($App in $applist) { Write-Host "checking $($App.displayName)" if ($App.passwordCredentials) { foreach ($Credential in $App.passwordCredentials) { @@ -23,6 +27,8 @@ function Push-CIPPAlertAppSecretExpiry { } } } + } else { + Write-Host "Skipping app expire for $($Item.tenant)" } } catch { #Write-AlertMessage -tenant $($Item.Tenant) -message "Failed to check App registration expiry for $($Item.Tenant): $(Get-NormalizedError -message $_.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 cc6ba8a7bf10..562834b46c99 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListLicensesQueue.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-ListLicensesQueue.ps1 @@ -9,17 +9,18 @@ function Push-ListLicensesQueue { Write-Host "PowerShell queue trigger function processed work item: $($Item.defaultDomainName)" $domainName = $Item.defaultDomainName - $GraphRequest = try { + try { Write-Host "Processing $domainName" - Get-CIPPLicenseOverview -TenantFilter $domainName + $Overview = Get-CIPPLicenseOverview -TenantFilter $domainName } catch { - [pscustomobject]@{ + $Overview = [pscustomobject]@{ Tenant = [string]$domainName License = "Could not connect to client: $($_.Exception.Message)" 'PartitionKey' = 'License' 'RowKey' = "$($domainName)-$((New-Guid).Guid)" } + } finally { + $Table = Get-CIPPTable -TableName cachelicenses + Add-CIPPAzDataTableEntity @Table -Entity $Overview -Force | Out-Null } - $Table = Get-CIPPTable -TableName cachelicenses - Add-CIPPAzDataTableEntity @Table -Entity $GraphRequest -Force | Out-Null } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerCIPPNotifications.ps1 b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerCIPPNotifications.ps1 index 407a2c2411ab..08bbc50757f8 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerCIPPNotifications.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Push-SchedulerCIPPNotifications.ps1 @@ -11,91 +11,83 @@ function Push-SchedulerCIPPNotifications { $Filter = "RowKey eq 'CippNotifications' and PartitionKey eq 'CippNotifications'" $Config = [pscustomobject](Get-CIPPAzDataTableEntity @Table -Filter $Filter) - $Settings = [System.Collections.ArrayList]@('Alerts') - $Config.psobject.properties.name | ForEach-Object { $settings.add($_) } + $Settings = [System.Collections.Generic.List[string]]@('Alerts') + $Config.psobject.properties.name | ForEach-Object { if ($Config.$_ -eq $true) { $Settings.Add($_) } } + Write-Information "Our APIs are: $($Settings -join ',')" + $severity = $Config.Severity -split ',' - Write-Host "Our Severity table is: $severity" if (!$severity) { $severity = [System.Collections.ArrayList]@('Info', 'Error', 'Warning', 'Critical', 'Alert') } - Write-Host "Our Severity table is: $severity" + Write-Information "Our Severity table is: $severity" + $Table = Get-CIPPTable $PartitionKey = Get-Date -UFormat '%Y%m%d' $Filter = "PartitionKey eq '{0}'" -f $PartitionKey $Currentlog = Get-CIPPAzDataTableEntity @Table -Filter $Filter | Where-Object { $_.API -In $Settings -and $_.SentAsAlert -ne $true -and $_.Severity -In $severity } - Write-Host ($Currentlog).count + Write-Information "Alerts: $($Currentlog.count) found" #email try try { - if ($config.onePerTenant) { - if ($Config.email -like '*@*' -and $null -ne $CurrentLog) { - $JSONRecipients = $Config.email.split(',').trim() | ForEach-Object { if ($_ -like '*@*') { '{ "EmailAddress": { "Address": "' + $_ + '" } }, ' } } - $JSONRecipients = ([string]$JSONRecipients).Substring(0, ([string]$JSONRecipients).Length - 1) - foreach ($tenant in ($CurrentLog.Tenant | Sort-Object -Unique)) { - $HTMLLog = ($CurrentLog | Select-Object Message, API, Tenant, Username, Severity | Where-Object -Property tenant -EQ $tenant | ConvertTo-Html -frag) -replace '', '
' | Out-String - $JSONBody = @" - { - "message": { - "subject": "$($Tenant): CIPP Alert: Alerts found starting at $((Get-Date).AddMinutes(-15))", - "body": { - "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:

- + if ($Config.email -like '*@*') { + $Addresses = $Config.email.split(',').trim() + $Recipients = foreach ($Address in $Addresses) { + [PSCustomObject]@{ + EmailAddress = @{ + Address = $Address + } + } + } - $($HTMLLog) + $LogEmails = if ($config.onePerTenant) { + if ($Config.email -like '*@*' -and $null -ne $CurrentLog) { + foreach ($tenant in ($CurrentLog.Tenant | Sort-Object -Unique)) { + $HTMLLog = ($CurrentLog | Select-Object Message, API, Tenant, Username, Severity | Where-Object -Property tenant -EQ $tenant | ConvertTo-Html -frag) -replace '
', '
' | Out-String + $Subject = "$($Tenant): CIPP Alert: Alerts found starting at $((Get-Date).AddMinutes(-15))" + [PSCustomObject]@{ + HTMLLog = $HTMLLog + Subject = $Subject + } + } + } - " - }, - "toRecipients": [ - $($JSONRecipients) - ] - }, - "saveToSentItems": "false" - } -"@ - New-GraphPostRequest -uri 'https://graph.microsoft.com/v1.0/me/sendMail' -tenantid $env:TenantID -type POST -body ($JSONBody) - Write-LogMessage -API 'Alerts' -message "Sent alerts to: $($JSONRecipients)" -tenant $Tenant -sev Debug + } else { + if ($null -ne $CurrentLog) { + $HTMLLog = ($CurrentLog | Select-Object Message, API, Tenant, Username, Severity | ConvertTo-Html -frag) -replace '
', '
' | Out-String + $Subject = "CIPP Alert: Alerts found starting at $((Get-Date).AddMinutes(-15))" + [PSCustomObject]@{ + HTMLLog = $HTMLLog + Subject = $Subject + } } } - } else { - if ($Config.email -like '*@*' -and $null -ne $CurrentLog) { - $JSONRecipients = $Config.email.split(',').trim() | ForEach-Object { if ($_ -like '*@*') { '{ "EmailAddress": { "Address": "' + $_ + '" } }, ' } } - $JSONRecipients = ([string]$JSONRecipients).Substring(0, ([string]$JSONRecipients).Length - 1) - $HTMLLog = ($CurrentLog | Select-Object Message, API, Tenant, Username, Severity | ConvertTo-Html -frag) -replace '
', '
' | Out-String - $JSONBody = @" - { - "message": { - "subject": "CIPP Alert: Alerts found starting at $((Get-Date).AddMinutes(-15))", - "body": { - "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": [ - $($JSONRecipients) - ] - }, - "saveToSentItems": "false" - } -"@ - New-GraphPostRequest -uri 'https://graph.microsoft.com/v1.0/me/sendMail' -tenantid $env:TenantID -type POST -body ($JSONBody) - Write-LogMessage -API 'Alerts' -message "Sent alerts to: $($Config.email)" -tenant 'All Tenants' -sev Debug + foreach ($LogEmail in $LogEmails) { + $Email = [PSCustomObject]@{ + message = @{ + subject = $LogEmail.Subject + body = @{ + 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:

$($LogEmail.HTMLLog)" + } + toRecipients = @($Recipients) + } + saveToSentItems = $false + } + $JSONBody = ConvertTo-Json -Depth 10 -Compress -InputObject $Email + New-GraphPostRequest -uri 'https://graph.microsoft.com/v1.0/me/sendMail' -tenantid $env:TenantID -type POST -body $JSONBody } + Write-LogMessage -API 'Alerts' -message "Sent $(($LogEmails|Measure-Object).Count) alerts to: $($Addresses -join ', ')" -sev Debug } } catch { - Write-Host "Could not send alerts to email: $($_.Exception.message)" - Write-LogMessage -API 'Alerts' -message "Could not send alerts to: $($_.Exception.message)" -tenant 'All Tenants' -sev error + Write-Information "Could not send alerts to email: $($_.Exception.message)" + Write-LogMessage -API 'Alerts' -message "Could not send alert emails: $($_.Exception.message)" -sev error -LogData (Get-CippException -Exception $_) } - try { - Write-Host $($config | ConvertTo-Json) - Write-Host $config.webhook + Write-Information $($config | ConvertTo-Json) + Write-Information $config.webhook if ($Config.webhook -ne '' -and $null -ne $CurrentLog) { switch -wildcard ($config.webhook) { @@ -136,7 +128,7 @@ function Push-SchedulerCIPPNotifications { Add-CIPPAzDataTableEntity @Table -Entity $UpdateLogs -Force } } catch { - Write-Host "Could not send alerts to webhook: $($_.Exception.message)" + Write-Information "Could not send alerts to webhook: $($_.Exception.message)" Write-LogMessage -API 'Alerts' -message "Could not send alerts to : $($_.Exception.message)" -tenant $Tenant -sev error } @@ -159,7 +151,7 @@ function Push-SchedulerCIPPNotifications { } } } catch { - Write-Host "Could not send alerts to ticketing system: $($_.Exception.message)" + Write-Information "Could not send alerts to ticketing system: $($_.Exception.message)" Write-LogMessage -API 'Alerts' -tenant $Tenant -message "Could not send alerts to ticketing system: $($_.Exception.message)" -sev Error } } 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 index 2fb140ce0b5f..1e1ecbfc0fcc 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecAddAlert.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ExecAddAlert.ps1 @@ -9,7 +9,7 @@ Function Invoke-ExecAddAlert { param($Request, $TriggerMetadata) - Write-LogMessage -user $request.headers.'x-ms-client-principal' -API 'Manual Alert Generator' -message $request.body.text -Sev $request.body.Severity + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API 'Alerts' -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 diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Email-Exchange/Invoke-ExecEditCalendarPermissions.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Email-Exchange/Invoke-ExecEditCalendarPermissions.ps1 index f9737f7bb8ad..346deef09dcc 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Email-Exchange/Invoke-ExecEditCalendarPermissions.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Email-Exchange/Invoke-ExecEditCalendarPermissions.ps1 @@ -19,9 +19,9 @@ Function Invoke-ExecEditCalendarPermissions { try { if ($Request.query.removeaccess) { - $result = Set-CIPPCalenderPermission -UserID $UserID -folderName $folderName -RemoveAccess $Request.query.removeaccess -TenantFilter $TenantFilter + $result = Set-CIPPCalendarPermission -UserID $UserID -folderName $folderName -RemoveAccess $Request.query.removeaccess -TenantFilter $TenantFilter } else { - $result = Set-CIPPCalenderPermission -UserID $UserID -folderName $folderName -TenantFilter $Tenantfilter -UserToGetPermissions $UserToGetPermissions -Permissions $Permissions + $result = Set-CIPPCalendarPermission -UserID $UserID -folderName $folderName -TenantFilter $Tenantfilter -UserToGetPermissions $UserToGetPermissions -Permissions $Permissions $Result = "Successfully set permissions on folder $($CalParam.Identity). The user $UserToGetPermissions now has $Permissions permissions on this folder." } } catch { diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-AddCATemplate.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-AddCATemplate.ps1 index 3f4b8d651650..b6de2ac40ed3 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-AddCATemplate.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-AddCATemplate.ps1 @@ -54,17 +54,22 @@ Function Invoke-AddCATemplate { }) } + # Function to check if a string is a GUID + function Test-IsGuid($string) { + return [guid]::tryparse($string, [ref][guid]::Empty) + } + if ($JSON.conditions.users.includeGroups) { $JSON.conditions.users.includeGroups = @($JSON.conditions.users.includeGroups | ForEach-Object { - if ($_ -in 'All', 'None', 'GuestOrExternalUsers') { return $_ } + if ($_ -in 'All', 'None', 'GuestOrExternalUsers' -or -not (Test-IsGuid $_)) { return $_ } (New-GraphGetRequest -uri "https://graph.microsoft.com/beta/groups/$($_)" -tenantid $TenantFilter).displayName - }) + }) } if ($JSON.conditions.users.excludeGroups) { $JSON.conditions.users.excludeGroups = @($JSON.conditions.users.excludeGroups | ForEach-Object { - if ($_ -in 'All', 'None', 'GuestOrExternalUsers') { return $_ } + if ($_ -in 'All', 'None', 'GuestOrExternalUsers' -or -not (Test-IsGuid $_)) { return $_ } (New-GraphGetRequest -uri "https://graph.microsoft.com/beta/groups/$($_)" -tenantid $TenantFilter).displayName - }) + }) } $JSON | Add-Member -NotePropertyName 'LocationInfo' -NotePropertyValue @($IncludeJSON, $ExcludeJSON) diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListGraphRequest.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListGraphRequest.ps1 index a5dc6a739d6b..cd0f73a61f45 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListGraphRequest.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListGraphRequest.ps1 @@ -15,7 +15,7 @@ function Invoke-ListGraphRequest { $Message = 'Accessed this API | Endpoint: {0}' -f $Request.Query.Endpoint Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message $Message -Sev 'Debug' - $CippLink = ([System.Uri]$TriggerMetadata.Headers.referer).PathAndQuery + $CippLink = ([System.Uri]$TriggerMetadata.Headers.Referer).PathAndQuery $Parameters = @{} if ($Request.Query.'$filter') { @@ -81,7 +81,7 @@ function Invoke-ListGraphRequest { } if ($Request.Query.QueueNameOverride) { - $GraphRequestParams.QueueNameOverride = [System.Boolean]$Request.Query.QueueNameOverride + $GraphRequestParams.QueueNameOverride = [string]$Request.Query.QueueNameOverride } if ($Request.Query.ReverseTenantLookup) { diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListLicenses.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListLicenses.ps1 index 69627154a009..ead6a0d2cd9d 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListLicenses.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListLicenses.ps1 @@ -32,9 +32,11 @@ Function Invoke-ListLicenses { Tenant = 'Loading data for all tenants. Please check back in 1 minute' License = 'Loading data for all tenants. Please check back in 1 minute' } - $Tenants = Get-Tenants -IncludeErrors | ForEach-Object { $_ | Add-Member -NotePropertyName FunctionName -NotePropertyValue 'ListLicensesQueue'; $_ } + $Tenants = Get-Tenants -IncludeErrors if (($Tenants | Measure-Object).Count -gt 0) { + $Queue = New-CippQueueEntry -Name 'Licenses (All Tenants)' -TotalTasks ($Tenants | Measure-Object).Count + $Tenants = $Tenants | Select-Object customerId, defaultDomainName, @{Name = 'QueueId'; Expression = { $Queue.RowKey } }, @{Name = 'FunctionName'; Expression = { 'ListLicensesQueue' } }, @{Name = 'QueueName'; Expression = { $_.defaultDomainName } } $InputObject = [PSCustomObject]@{ OrchestratorName = 'ListLicensesOrchestrator' Batch = @($Tenants) diff --git a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMailboxRules.ps1 b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMailboxRules.ps1 index 6e3cb79e42c3..696369dc8c38 100644 --- a/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMailboxRules.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/Invoke-ListMailboxRules.ps1 @@ -24,20 +24,22 @@ Function Invoke-ListMailboxRules { } $Rows = Get-CIPPAzDataTableEntity @Table | Where-Object -Property Timestamp -GT (Get-Date).Addhours(-1) - if (!$Rows) { - #Push-OutputBinding -Name mbxrulequeue -Value $TenantFilter + if (!$Rows -or ($TenantFilter -eq 'AllTenants' -and ($Rows | Measure-Object).Count -eq 1)) { $GraphRequest = [PSCustomObject]@{ Tenant = 'Loading data. Please check back in 1 minute' Licenses = 'Loading data. Please check back in 1 minute' } - $Batch = if ($TenantFilter -eq 'AllTenants') { - Get-Tenants -IncludeErrors | ForEach-Object { $_ | Add-Member -NotePropertyName FunctionName -NotePropertyValue 'ListMailboxRulesQueue'; $_ } + + if ($TenantFilter -eq 'AllTenants') { + $Tenants = Get-Tenants -IncludeErrors | Select-Object defaultDomainName + $Type = 'All Tenants' } else { - [PSCustomObject]@{ - defaultDomainName = $TenantFilter - FunctionName = 'ListMailboxRulesQueue' - } + $Tenants = @(@{ defaultDomainName = $TenantFilter }) + $Type = $TenantFilter } + $Queue = New-CippQueueEntry -Name "Mailbox Rules ($Type)" -TotalTasks ($Tenants | Measure-Object).Count + $Batch = $Tenants | Select-Object defaultDomainName, @{Name = 'FunctionName'; Expression = { 'ListMailboxRulesQueue' } }, @{Name = 'QueueName'; Expression = { $_.defaultDomainName } }, @{Name = 'QueueId'; Expression = { $Queue.RowKey } }, @{Name = 'QueueName'; Expression = { $_.defaultDomainName } } + if (($Batch | Measure-Object).Count -gt 0) { $InputObject = [PSCustomObject]@{ OrchestratorName = 'ListMailboxRulesOrchestrator' diff --git a/Modules/CIPPCore/Public/GraphHelper/Get-Tenants.ps1 b/Modules/CIPPCore/Public/GraphHelper/Get-Tenants.ps1 index 951efb4bb1b9..abac15b401cf 100644 --- a/Modules/CIPPCore/Public/GraphHelper/Get-Tenants.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/Get-Tenants.ps1 @@ -70,7 +70,7 @@ function Get-Tenants { Write-Host "Processing $($_.Name) to add to tenant list." $ExistingTenantInfo = Get-CIPPAzDataTableEntity @TenantsTable -Filter "PartitionKey eq 'Tenants' and RowKey eq '$($_.Name)'" - if ($TriggerRefresh.IsPresent) { + if ($TriggerRefresh.IsPresent -and $ExistingTenantInfo.customerId) { # Reset error count $ExistingTenantInfo.GraphErrorCount = 0 Add-CIPPAzDataTableEntity @TenantsTable -Entity $ExistingTenantInfo -Force | Out-Null diff --git a/Modules/CIPPCore/Public/GraphHelper/Write-CippFunctionStats.ps1 b/Modules/CIPPCore/Public/GraphHelper/Write-CippFunctionStats.ps1 index d5a86a35e34f..f73051f931a6 100644 --- a/Modules/CIPPCore/Public/GraphHelper/Write-CippFunctionStats.ps1 +++ b/Modules/CIPPCore/Public/GraphHelper/Write-CippFunctionStats.ps1 @@ -6,8 +6,8 @@ function Write-CippFunctionStats { Param( [string]$FunctionType, $Entity, - [DateTime]$Start, - [DateTime]$End, + $Start, + $End, [string]$ErrorMsg = '' ) try { diff --git a/Modules/CIPPCore/Public/GraphRequests/Get-GraphRequestList.ps1 b/Modules/CIPPCore/Public/GraphRequests/Get-GraphRequestList.ps1 index 81d301c67891..80fd965ad859 100644 --- a/Modules/CIPPCore/Public/GraphRequests/Get-GraphRequestList.ps1 +++ b/Modules/CIPPCore/Public/GraphRequests/Get-GraphRequestList.ps1 @@ -67,7 +67,7 @@ function Get-GraphRequestList { ) $TableName = ('cache{0}' -f ($Endpoint -replace '[^A-Za-z0-9]'))[0..62] -join '' - Write-Host "Table: $TableName" + Write-Information "Table: $TableName" $Endpoint = $Endpoint -replace '^/', '' $DisplayName = ($Endpoint -split '/')[0] @@ -85,9 +85,9 @@ function Get-GraphRequestList { } $GraphQuery.Query = $ParamCollection.ToString() $PartitionKey = Get-StringHash -String (@($Endpoint, $ParamCollection.ToString()) -join '-') - Write-Host "PK: $PartitionKey" + Write-Information "PK: $PartitionKey" - Write-Host ( 'GET [ {0} ]' -f $GraphQuery.ToString()) + Write-Information ( 'GET [ {0} ]' -f $GraphQuery.ToString()) try { if ($QueueId) { @@ -97,25 +97,25 @@ function Get-GraphRequestList { $Type = 'Queue' } elseif ($TenantFilter -eq 'AllTenants' -or (!$SkipCache.IsPresent -and !$ClearCache.IsPresent -and !$CountOnly.IsPresent)) { $Table = Get-CIPPTable -TableName $TableName + $Timestamp = (Get-Date).AddHours(-1).ToUniversalTime().ToString('yyyy-MM-ddTHH:mm:ss.fffK') if ($TenantFilter -eq 'AllTenants') { - $Filter = "PartitionKey eq '{0}' and QueueType eq 'AllTenants'" -f $PartitionKey + $Filter = "PartitionKey eq '{0}' and QueueType eq 'AllTenants' and Timestamp ge datetime'{1}'" -f $PartitionKey, $Timestamp } else { - $Filter = "PartitionKey eq '{0}' and Tenant eq '{1}'" -f $PartitionKey, $TenantFilter + $Filter = "PartitionKey eq '{0}' and Tenant eq '{1}' and Timestamp ge datetime'{2}'" -f $PartitionKey, $TenantFilter, $Timestamp } - #Write-Host $Filter - $Rows = Get-CIPPAzDataTableEntity @Table -Filter $Filter | Where-Object { $_.Timestamp.DateTime -gt (Get-Date).ToUniversalTime().AddHours(-1) } + #Write-Information $Filter + $Rows = Get-CIPPAzDataTableEntity @Table -Filter $Filter $Type = 'Cache' } else { $Type = 'None' $Rows = @() } - Write-Host "Cached: $(($Rows | Measure-Object).Count) rows (Type: $($Type))" - + Write-Information "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' } } catch { - Write-Host $_.InvocationInfo.PositionMessage + Write-Information $_.InvocationInfo.PositionMessage } if ($TenantFilter -ne 'AllTenants' -and $Endpoint -match '%tenantid%') { @@ -158,8 +158,8 @@ function Get-GraphRequestList { } } else { if ($RunningQueue) { - Write-Host 'Queue currently running' - Write-Host ($RunningQueue | ConvertTo-Json) + Write-Information 'Queue currently running' + Write-Information ($RunningQueue | ConvertTo-Json) [PSCustomObject]@{ QueueMessage = 'Data still processing, please wait' QueueId = $RunningQueue.RowKey @@ -173,7 +173,7 @@ function Get-GraphRequestList { Queued = $true QueueId = $Queue.RowKey } - Write-Host 'Pushing output bindings' + Write-Information 'Pushing output bindings' try { $Batch = $TenantList | ForEach-Object { $TenantFilter = $_.defaultDomainName @@ -199,10 +199,10 @@ function Get-GraphRequestList { OrchestratorName = 'GraphRequestOrchestrator' Batch = @($Batch) } - #Write-Host ($InputObject | ConvertTo-Json -Depth 5) + #Write-Information ($InputObject | ConvertTo-Json -Depth 5) $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress) } catch { - Write-Host "QUEUE ERROR: $($_.Exception.Message)" + Write-Information "QUEUE ERROR: $($_.Exception.Message)" } } } @@ -231,12 +231,12 @@ function Get-GraphRequestList { if ($Parameters.'$count' -and !$SkipCache -and !$NoPagination) { $Count = New-GraphGetRequest @GraphRequest -CountOnly -ErrorAction Stop if ($CountOnly.IsPresent) { return $Count } - Write-Host "Total results (`$count): $Count" + Write-Information "Total results (`$count): $Count" if ($Count -gt 8000) { $QueueThresholdExceeded = $true if ($RunningQueue) { - Write-Host 'Queue currently running' - Write-Host ($RunningQueue | ConvertTo-Json) + Write-Information 'Queue currently running' + Write-Information ($RunningQueue | ConvertTo-Json) [PSCustomObject]@{ QueueMessage = 'Data still processing, please wait' QueueId = $RunningQueue.RowKey diff --git a/Modules/CIPPCore/Public/New-CIPPCAPolicy.ps1 b/Modules/CIPPCore/Public/New-CIPPCAPolicy.ps1 index 78f3173c2aee..fa13c6b67e5f 100644 --- a/Modules/CIPPCore/Public/New-CIPPCAPolicy.ps1 +++ b/Modules/CIPPCore/Public/New-CIPPCAPolicy.ps1 @@ -29,6 +29,25 @@ function New-CIPPCAPolicy { } } } + # Function to check if a string is a GUID + function Test-IsGuid($string) { + return [guid]::tryparse($string, [ref][guid]::Empty) + } + # Helper function to replace group display names with GUIDs + function Replace-GroupNameWithId { + param($groupNames) + return $groupNames | ForEach-Object { + if (Test-IsGuid $_) { + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message "Already GUID, no need to replace: $_" -Sev 'Debug' + $_ # it's a GUID, so we keep it + } else { + $groupId = ($groups | Where-Object -Property displayName -EQ $_).id # it's a display name, so we get the group ID + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message "Replaced group name $_ with ID $groupId" -Sev 'Debug' + $groupId + } + } + } + $displayname = ($RawJSON | ConvertFrom-Json).Displayname $JSONObj = $RawJSON | ConvertFrom-Json | Select-Object * -ExcludeProperty ID, GUID, *time* @@ -115,16 +134,25 @@ function New-CIPPCAPolicy { if ($JSONObj.conditions.users.excludeGroups) { $JSONObj.conditions.users.excludeGroups = @() } } 'displayName' { - Write-Host 'Replacement pattern for inclusions and exclusions is displayName.' - $users = New-GraphGETRequest -uri 'https://graph.microsoft.com/beta/users?$select=id,displayName' -tenantid $TenantFilter - $Groups = New-GraphGETRequest -uri 'https://graph.microsoft.com/beta/groups?$select=id,displayName' -tenantid $TenantFilter - - if ($JSONObj.conditions.users.includeUsers -notin 'All', 'None', 'GuestOrExternalUsers') { $JSONObj.conditions.users.includeUsers = @(($users | Where-Object -Property displayName -In $JSONObj.conditions.users.includeUsers).id) } - if ($JSONObj.conditions.users.excludeUsers) { $JSONObj.conditions.users.excludeUsers = @(($users | Where-Object -Property displayName -In $JSONObj.conditions.users.excludeUsers).id) } - if ($JSONObj.conditions.users.includeGroups) { $JSONObj.conditions.users.includeGroups = @(($groups | Where-Object -Property displayName -In $JSONObj.conditions.users.includeGroups).id) } - if ($JSONObj.conditions.users.excludeGroups) { $JSONObj.conditions.users.excludeGroups = @(($groups | Where-Object -Property displayName -In $JSONObj.conditions.users.excludeGroups).id) } - } - + try { + Write-Host 'Replacement pattern for inclusions and exclusions is displayName.' + $users = New-GraphGETRequest -uri 'https://graph.microsoft.com/beta/users?$select=id,displayName' -tenantid $TenantFilter + $groups = New-GraphGETRequest -uri 'https://graph.microsoft.com/beta/groups?$select=id,displayName' -tenantid $TenantFilter + + if ($JSONObj.conditions.users.includeUsers -notin 'All', 'None', 'GuestOrExternalUsers') { $JSONObj.conditions.users.includeUsers = @(($users | Where-Object -Property displayName -In $JSONObj.conditions.users.includeUsers).id) } + if ($JSONObj.conditions.users.excludeUsers) { $JSONObj.conditions.users.excludeUsers = @(($users | Where-Object -Property displayName -In $JSONObj.conditions.users.excludeUsers).id) } + + # Check the included and excluded groups + foreach ($groupType in 'includeGroups', 'excludeGroups') { + if ($JSONObj.conditions.users.PSObject.Properties.Name -contains $groupType) { + $JSONObj.conditions.users.$groupType = Replace-GroupNameWithId -groupNames $JSONObj.conditions.users.$groupType + } + } + } catch { + throw "Failed to replace displayNames for conditional access rule $($JSONObj.displayName): $($_.exception.message)" + Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to replace displayNames for conditional access rule $($JSONObj.displayName)" -sev 'Error' + } + } } $JsonObj.PSObject.Properties.Remove('LocationInfo') $RawJSON = $JSONObj | ConvertTo-Json -Depth 10 diff --git a/Modules/CIPPCore/Public/Remove-CIPPLicense.ps1 b/Modules/CIPPCore/Public/Remove-CIPPLicense.ps1 index fea6f737657c..68c037b495fc 100644 --- a/Modules/CIPPCore/Public/Remove-CIPPLicense.ps1 +++ b/Modules/CIPPCore/Public/Remove-CIPPLicense.ps1 @@ -1,5 +1,5 @@ function Remove-CIPPLicense { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param ( $ExecutingUser, $userid, @@ -7,18 +7,29 @@ function Remove-CIPPLicense { $APIName = 'Remove License', $TenantFilter ) - $ConvertTable = Import-Csv Conversiontable.csv - try { - $CurrentLicenses = (New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users/$($userid)" -tenantid $tenantFilter).assignedlicenses.skuid - $ConvertedLicense = $(($ConvertTable | Where-Object { $_.guid -in $CurrentLicenses }).'Product_Display_Name' | Sort-Object -Unique) -join ',' - $LicensesToRemove = if ($CurrentLicenses) { ConvertTo-Json @( $CurrentLicenses) } else { '[]' } - $LicenseBody = '{"addLicenses": [], "removeLicenses": ' + $LicensesToRemove + '}' - $LicRequest = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/users/$($userid)/assignlicense" -tenantid $tenantFilter -type POST -body $LicenseBody -verbose - Write-LogMessage -user $ExecutingUser -API $APIName -message "Removed license for $($username)" -Sev 'Info' -tenant $TenantFilter - Return "Removed current licenses: $ConvertedLicense" + try { + $ConvertTable = Import-Csv Conversiontable.csv + $User = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users/$($userid)" -tenantid $tenantFilter + if (!$username) { $username = $User.userPrincipalName } + $CurrentLicenses = $User.assignedlicenses.skuid + $ConvertedLicense = $(($ConvertTable | Where-Object { $_.guid -in $CurrentLicenses }).'Product_Display_Name' | Sort-Object -Unique) -join ', ' + if ($CurrentLicenses) { + $LicensePayload = [PSCustomObject]@{ + addLicenses = @() + removeLicenses = @($CurrentLicenses) + } + if ($PSCmdlet.ShouldProcess($userid, "Remove licenses: $ConvertedLicense")) { + $null = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/users/$($userid)/assignlicense" -tenantid $tenantFilter -type POST -body (ConvertTo-Json -InputObject $LicensePayload -Compress -Depth 5) -verbose + Write-LogMessage -user $ExecutingUser -API $APIName -message "Removed licenses for $($username): $ConvertedLicense" -Sev 'Info' -tenant $TenantFilter + } + return "Removed licenses for $($Username): $ConvertedLicense" + } else { + Write-LogMessage -user $ExecutingUser -API $APIName -message "No licenses to remove for $username" -Sev 'Info' -tenant $TenantFilter + return "No licenses to remove for $username" + } } catch { - Write-LogMessage -user $ExecutingUser -API $APIName -message "Could not remove license for $username" -Sev 'Error' -tenant $TenantFilter + Write-LogMessage -user $ExecutingUser -API $APIName -message "Could not remove license for $username" -Sev 'Error' -tenant $TenantFilter -LogData (Get-CippException -Exception $_) return "Could not remove license for $($username). Error: $($_.Exception.Message)" } } diff --git a/Modules/CIPPCore/Public/Send-CIPPAlert.ps1 b/Modules/CIPPCore/Public/Send-CIPPAlert.ps1 index 55d7e9db9803..59395211a55a 100644 --- a/Modules/CIPPCore/Public/Send-CIPPAlert.ps1 +++ b/Modules/CIPPCore/Public/Send-CIPPAlert.ps1 @@ -1,100 +1,98 @@ function Send-CIPPAlert { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param ( $Type, $Title, $HTMLContent, $JSONContent, $TenantFilter, - $APIName = "Send Alert", + $APIName = 'Send Alert', $ExecutingUser ) - Write-Host "Shipping Alert" + Write-Information 'Shipping Alert' $Table = Get-CIPPTable -TableName SchedulerConfig $Filter = "RowKey eq 'CippNotifications' and PartitionKey eq 'CippNotifications'" $Config = [pscustomobject](Get-CIPPAzDataTableEntity @Table -Filter $Filter) if ($Type -eq 'email') { - Write-Host "Trying to send email" + Write-Information 'Trying to send email' try { if ($Config.email -like '*@*') { - $Recipients = $Config.email.split($(if ($Config.email -like "*,*") { ',' } else { ';' })).trim() | ForEach-Object { if ($_ -like '*@*') { [pscustomobject]@{EmailAddress = @{Address = $_ } } } } + $Recipients = $Config.email.split($(if ($Config.email -like '*,*') { ',' } else { ';' })).trim() | ForEach-Object { if ($_ -like '*@*') { [pscustomobject]@{EmailAddress = @{Address = $_ } } } } $PowerShellBody = [PSCustomObject]@{ message = @{ subject = $Title body = @{ - contentType = "HTML" + contentType = 'HTML' content = $HTMLcontent } toRecipients = @($Recipients) } - saveToSentItems = "true" + saveToSentItems = 'true' } $JSONBody = ConvertTo-Json -Compress -Depth 10 -InputObject $PowerShellBody - New-GraphPostRequest -uri 'https://graph.microsoft.com/v1.0/me/sendMail' -tenantid $env:TenantID -NoAuthCheck $true -type POST -body ($JSONBody) + if ($PSCmdlet.ShouldProcess($($Recipients.EmailAddress.Address -join ', '), 'Sending email')) { + New-GraphPostRequest -uri 'https://graph.microsoft.com/v1.0/me/sendMail' -tenantid $env:TenantID -NoAuthCheck $true -type POST -body ($JSONBody) + } } Write-LogMessage -API 'Webhook Alerts' -message "Sent a webhook alert to email: $Title" -tenant $TenantFilter -sev info - - } - catch { - Write-Host "Could not send webhook alert to email: $($_.Exception.message)" + + } catch { + Write-Information "Could not send webhook alert to email: $($_.Exception.message)" Write-LogMessage -API 'Webhook Alerts' -message "Could not send webhook alerts to email. $($_.Exception.message)" -tenant $TenantFilter -sev info } } - + if ($Type -eq 'webhook') { - Write-Host "Trying to send webhook" + Write-Information 'Trying to send webhook' try { if ($Config.webhook -ne '') { - switch -wildcard ($config.webhook) { - - '*webhook.office.com*' { - $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.

$JSONContent`"}" - Invoke-RestMethod -Uri $config.webhook -Method POST -ContentType 'Application/json' -Body $JSONBody - } + if ($PSCmdlet.ShouldProcess($Config.webhook, 'Sending webhook')) { + switch -wildcard ($config.webhook) { + '*webhook.office.com*' { + $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.

$JSONContent`"}" + Invoke-RestMethod -Uri $config.webhook -Method POST -ContentType 'Application/json' -Body $JSONBody + } - '*discord.com*' { - $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. $JSONContent`"}" - Invoke-RestMethod -Uri $config.webhook -Method POST -ContentType 'Application/json' -Body $JSONBody - } - default { - Invoke-RestMethod -Uri $config.webhook -Method POST -ContentType 'Application/json' -Body $JSONContent + '*discord.com*' { + $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. $JSONContent`"}" + Invoke-RestMethod -Uri $config.webhook -Method POST -ContentType 'Application/json' -Body $JSONBody + } + default { + Invoke-RestMethod -Uri $config.webhook -Method POST -ContentType 'Application/json' -Body $JSONContent + } } } - } Write-LogMessage -API 'Webhook Alerts' -message "Sent Webhook alert $title to External webhook" -tenant $TenantFilter -sev info - } - catch { - Write-Host "Could not send alerts to webhook: $($_.Exception.message)" + } catch { + Write-Information "Could not send alerts to webhook: $($_.Exception.message)" Write-LogMessage -API 'Webhook Alerts' -message "Could not send alerts to webhook: $($_.Exception.message)" -tenant $TenantFilter -sev info } } - Write-Host "Trying to send to PSA" + Write-Information 'Trying to send to PSA' if ($Type -eq 'psa') { if ($config.sendtoIntegration) { - try { + if ($PSCmdlet.ShouldProcess('PSA', 'Sending alert')) { + try { + $Alert = @{ + TenantId = $TenantFilter + AlertText = "$HTMLContent" + AlertTitle = "$($Title)" + } + New-CippExtAlert -Alert $Alert + Write-LogMessage -API 'Webhook Alerts' -tenant $TenantFilter -message "Sent PSA alert $title" -sev info - $Alert = @{ - TenantId = $TenantFilter - AlertText = "$HTMLContent" - AlertTitle = "$($Title)" + } catch { + Write-Information "Could not send alerts to ticketing system: $($_.Exception.message)" + Write-LogMessage -API 'Webhook Alerts' -tenant $TenantFilter -message "Could not send alerts to ticketing system: $($_.Exception.message)" -sev info } - New-CippExtAlert -Alert $Alert - Write-LogMessage -API 'Webhook Alerts' -tenant $TenantFilter -message "Sent PSA alert $title" -sev info - - } - catch { - Write-Host "Could not send alerts to ticketing system: $($_.Exception.message)" - Write-LogMessage -API 'Webhook Alerts' -tenant $TenantFilter -message "Could not send alerts to ticketing system: $($_.Exception.message)" -sev info } } } } - - diff --git a/Modules/CIPPCore/Public/Set-CIPPAssignedApplication.ps1 b/Modules/CIPPCore/Public/Set-CIPPAssignedApplication.ps1 index 745c964bc108..1938c35fabb8 100644 --- a/Modules/CIPPCore/Public/Set-CIPPAssignedApplication.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPAssignedApplication.ps1 @@ -1,73 +1,73 @@ function Set-CIPPAssignedApplication { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param( $GroupName, $Intent, $AppType, $ApplicationId, $TenantFilter, - $APIName = "Assign Application", + $APIName = 'Assign Application', $ExecutingUser ) - try { + try { $MobileAppAssignment = switch ($GroupName) { - "AllUsers" { + 'AllUsers' { @(@{ - "@odata.type" = "#microsoft.graph.mobileAppAssignment" + '@odata.type' = '#microsoft.graph.mobileAppAssignment' target = @{ - "@odata.type" = "#microsoft.graph.allLicensedUsersAssignmentTarget" + '@odata.type' = '#microsoft.graph.allLicensedUsersAssignmentTarget' } intent = $Intent settings = @{ - "@odata.type" = "#microsoft.graph.$($appType)AppAssignmentSettings" - notifications = "hideAll" + '@odata.type' = "#microsoft.graph.$($appType)AppAssignmentSettings" + notifications = 'hideAll' installTimeSettings = $null restartSettings = $null } }) - break + break } - "AllDevices" { + 'AllDevices' { @(@{ - "@odata.type" = "#microsoft.graph.mobileAppAssignment" + '@odata.type' = '#microsoft.graph.mobileAppAssignment' target = @{ - "@odata.type" = "#microsoft.graph.allDevicesAssignmentTarget" + '@odata.type' = '#microsoft.graph.allDevicesAssignmentTarget' } intent = $Intent settings = @{ - "@odata.type" = "#microsoft.graph.$($appType)AppAssignmentSettings" - notifications = "hideAll" + '@odata.type' = "#microsoft.graph.$($appType)AppAssignmentSettings" + notifications = 'hideAll' installTimeSettings = $null restartSettings = $null } }) - break + break } - "AllDevicesAndUsers" { + 'AllDevicesAndUsers' { @( @{ - "@odata.type" = "#microsoft.graph.mobileAppAssignment" + '@odata.type' = '#microsoft.graph.mobileAppAssignment' target = @{ - "@odata.type" = "#microsoft.graph.allLicensedUsersAssignmentTarget" + '@odata.type' = '#microsoft.graph.allLicensedUsersAssignmentTarget' } intent = $Intent settings = @{ - "@odata.type" = "#microsoft.graph.$($appType)AppAssignmentSettings" - notifications = "hideAll" + '@odata.type' = "#microsoft.graph.$($appType)AppAssignmentSettings" + notifications = 'hideAll' installTimeSettings = $null restartSettings = $null } }, @{ - "@odata.type" = "#microsoft.graph.mobileAppAssignment" + '@odata.type' = '#microsoft.graph.mobileAppAssignment' target = @{ - "@odata.type" = "#microsoft.graph.allDevicesAssignmentTarget" + '@odata.type' = '#microsoft.graph.allDevicesAssignmentTarget' } intent = $Intent settings = @{ - "@odata.type" = "#microsoft.graph.$($appType)AppAssignmentSettings" - notifications = "hideAll" + '@odata.type' = "#microsoft.graph.$($appType)AppAssignmentSettings" + notifications = 'hideAll' installTimeSettings = $null restartSettings = $null } @@ -75,8 +75,8 @@ function Set-CIPPAssignedApplication { ) } default { - $GroupNames = $GroupName.Split(",") - $GroupIds = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/groups" -tenantid $TenantFilter | ForEach-Object { + $GroupNames = $GroupName.Split(',') + $GroupIds = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/groups' -tenantid $TenantFilter | ForEach-Object { $Group = $_ foreach ($SingleName in $GroupNames) { if ($_.displayname -like $SingleName) { @@ -84,18 +84,18 @@ function Set-CIPPAssignedApplication { } } } - Write-Host "found $($GroupIds) groups" + Write-Information "found $($GroupIds) groups" foreach ($Group in $GroupIds) { @{ - "@odata.type" = "#microsoft.graph.mobileAppAssignment" + '@odata.type' = '#microsoft.graph.mobileAppAssignment' target = @{ - "@odata.type" = "#microsoft.graph.groupAssignmentTarget" + '@odata.type' = '#microsoft.graph.groupAssignmentTarget' groupId = $Group } intent = $Intent settings = @{ - "@odata.type" = "#microsoft.graph.$($appType)AppAssignmentSettings" - notifications = "hideAll" + '@odata.type' = "#microsoft.graph.$($appType)AppAssignmentSettings" + notifications = 'hideAll' installTimeSettings = $null restartSettings = $null } @@ -108,12 +108,13 @@ function Set-CIPPAssignedApplication { $MobileAppAssignment ) } - $assign = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceAppManagement/mobileApps/$($ApplicationId)/assign" -tenantid $TenantFilter -type POST -body ($DefaultAssignmentObject | ConvertTo-Json -Compress -Depth 10) - Write-LogMessage -user $ExecutingUser -API $APIName -message "Assigned Application to $($GroupName)" -Sev "Info" -tenant $TenantFilter + if ($PSCmdlet.ShouldProcess($GroupName, "Assigning Application $ApplicationId")) { + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceAppManagement/mobileApps/$($ApplicationId)/assign" -tenantid $TenantFilter -type POST -body ($DefaultAssignmentObject | ConvertTo-Json -Compress -Depth 10) + Write-LogMessage -user $ExecutingUser -API $APIName -message "Assigned Application to $($GroupName)" -Sev 'Info' -tenant $TenantFilter + } return "Assigned Application to $($GroupName)" - } - catch { - Write-LogMessage -user $ExecutingUser -API $APIName -message "Could not assign application to $GroupName" -Sev "Error" -tenant $TenantFilter + } catch { + Write-LogMessage -user $ExecutingUser -API $APIName -message "Could not assign application to $GroupName" -Sev 'Error' -tenant $TenantFilter -LogData (Get-CippException -Exception $_) return "Could not assign application to $GroupName. Error: $($_.Exception.Message)" } } diff --git a/Modules/CIPPCore/Public/Set-CIPPAssignedPolicy.ps1 b/Modules/CIPPCore/Public/Set-CIPPAssignedPolicy.ps1 index 19e1f7975818..1aabf9920b17 100644 --- a/Modules/CIPPCore/Public/Set-CIPPAssignedPolicy.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPAssignedPolicy.ps1 @@ -1,5 +1,5 @@ function Set-CIPPAssignedPolicy { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param( $GroupName, $PolicyId, @@ -9,7 +9,7 @@ function Set-CIPPAssignedPolicy { $ExecutingUser ) - try { + try { $assignmentsObject = switch ($GroupName) { 'allLicensedUsers' { @( @@ -19,7 +19,7 @@ function Set-CIPPAssignedPolicy { } } ) - break + break } 'AllDevices' { @( @@ -29,9 +29,9 @@ function Set-CIPPAssignedPolicy { } } ) - break + break } - 'AllDevicesAndUsers' { + 'AllDevicesAndUsers' { @( @{ target = @{ @@ -47,7 +47,7 @@ function Set-CIPPAssignedPolicy { } default { $GroupNames = $GroupName.Split(',') - $GroupIds = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/groups' -tenantid $TenantFilter | ForEach-Object { + $GroupIds = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/groups' -tenantid $TenantFilter | ForEach-Object { $Group = $_ foreach ($SingleName in $GroupNames) { if ($_.displayname -like $SingleName) { @@ -68,11 +68,13 @@ function Set-CIPPAssignedPolicy { $assignmentsObject = [PSCustomObject]@{ assignments = @($assignmentsObject) } - $assign = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/$Type('$($PolicyId)')/assign" -tenantid $tenantFilter -type POST -body ($assignmentsObject | ConvertTo-Json -Depth 10) - Write-LogMessage -user $ExecutingUser -API $APIName -message "Assigned Policy to $($GroupName)" -Sev 'Info' -tenant $TenantFilter + if ($PSCmdlet.ShouldProcess($GroupName, "Assigning policy $PolicyId")) { + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/$Type('$($PolicyId)')/assign" -tenantid $tenantFilter -type POST -body ($assignmentsObject | ConvertTo-Json -Depth 10) + Write-LogMessage -user $ExecutingUser -API $APIName -message "Assigned Policy to $($GroupName)" -Sev 'Info' -tenant $TenantFilter + } return "Assigned policy to $($GroupName)" } catch { - Write-LogMessage -user $ExecutingUser -API $APIName -message "Failed to assign Policy to $GroupName" -Sev 'Error' -tenant $TenantFilter + Write-LogMessage -user $ExecutingUser -API $APIName -message "Failed to assign Policy to $GroupName" -Sev 'Error' -tenant $TenantFilter -LogData (Get-CippException -Exception $_) return "Could not assign policy to $GroupName. Error: $($_.Exception.Message)" } } diff --git a/Modules/CIPPCore/Public/Set-CIPPAuthenticationPolicy.ps1 b/Modules/CIPPCore/Public/Set-CIPPAuthenticationPolicy.ps1 index 32978e323d79..3e5c4b7a680f 100644 --- a/Modules/CIPPCore/Public/Set-CIPPAuthenticationPolicy.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPAuthenticationPolicy.ps1 @@ -1,10 +1,10 @@ function Set-CIPPAuthenticationPolicy { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param( [Parameter(Mandatory = $true)]$Tenant, [Parameter(Mandatory = $true)][ValidateSet('FIDO2', 'MicrosoftAuthenticator', 'SMS', 'TemporaryAccessPass', 'HardwareOATH', 'softwareOath', 'Voice', 'Email', 'x509Certificate')]$AuthenticationMethodId, [Parameter(Mandatory = $true)][bool]$Enabled, # true = enabled or false = disabled - $MicrosoftAuthenticatorSoftwareOathEnabled, + $MicrosoftAuthenticatorSoftwareOathEnabled, $TAPMinimumLifetime = 60, #Minutes $TAPMaximumLifetime = 480, #minutes $TAPDefaultLifeTime = 60, #minutes @@ -24,9 +24,9 @@ function Set-CIPPAuthenticationPolicy { Write-LogMessage -user $ExecutingUser -API $APIName -tenant $Tenant -message "Could not get CurrentInfo for $AuthenticationMethodId. Error:$($_.exception.message)" -sev Error Return "Could not get CurrentInfo for $AuthenticationMethodId. Error:$($_.exception.message)" } - + switch ($AuthenticationMethodId) { - + # FIDO2 'FIDO2' { if ($State -eq 'enabled') { @@ -36,23 +36,23 @@ function Set-CIPPAuthenticationPolicy { } # Microsoft Authenticator - 'MicrosoftAuthenticator' { + 'MicrosoftAuthenticator' { # Remove numberMatchingRequiredState property if it exists $CurrentInfo.featureSettings.PSObject.Properties.Remove('numberMatchingRequiredState') - + if ($State -eq 'enabled') { $CurrentInfo.featureSettings.displayAppInformationRequiredState.state = $State $CurrentInfo.featureSettings.displayLocationInformationRequiredState.state = $State # Set MS authenticator OTP state if parameter is passed in - if ($null -ne $MicrosoftAuthenticatorSoftwareOathEnabled ) { - $CurrentInfo.isSoftwareOathEnabled = $MicrosoftAuthenticatorSoftwareOathEnabled + if ($null -ne $MicrosoftAuthenticatorSoftwareOathEnabled ) { + $CurrentInfo.isSoftwareOathEnabled = $MicrosoftAuthenticatorSoftwareOathEnabled $OptionalLogMessage = "and MS Authenticator software OTP to $MicrosoftAuthenticatorSoftwareOathEnabled" } } } # SMS - 'SMS' { + 'SMS' { if ($State -eq 'enabled') { Write-LogMessage -user $ExecutingUser -API $APIName -tenant $Tenant -message "Setting $AuthenticationMethodId to enabled is not allowed" -sev Error return "Setting $AuthenticationMethodId to enabled is not allowed" @@ -60,7 +60,7 @@ function Set-CIPPAuthenticationPolicy { } # Temporary Access Pass - 'TemporaryAccessPass' { + 'TemporaryAccessPass' { if ($State -eq 'enabled') { $CurrentInfo.isUsableOnce = [System.Convert]::ToBoolean($TAPisUsableOnce) $CurrentInfo.minimumLifetimeInMinutes = $TAPMinimumLifetime @@ -70,17 +70,17 @@ function Set-CIPPAuthenticationPolicy { $OptionalLogMessage = "with TAP isUsableOnce set to $TAPisUsableOnce" } } - + # Hardware OATH tokens (Preview) - 'HardwareOATH' { + 'HardwareOATH' { # Nothing special to do here } # Third-party software OATH tokens - 'softwareOath' { + 'softwareOath' { # Nothing special to do here } - + # Voice call 'Voice' { # Disallow enabling voice @@ -89,17 +89,17 @@ function Set-CIPPAuthenticationPolicy { return "Setting $AuthenticationMethodId to enabled is not allowed" } } - + # Email OTP - 'Email' { + 'Email' { if ($State -eq 'enabled') { Write-LogMessage -user $ExecutingUser -API $APIName -tenant $Tenant -message "Setting $AuthenticationMethodId to enabled is not allowed" -sev Error return "Setting $AuthenticationMethodId to enabled is not allowed" } } - + # Certificate-based authentication - 'x509Certificate' { + 'x509Certificate' { # Nothing special to do here } Default { @@ -109,13 +109,15 @@ function Set-CIPPAuthenticationPolicy { } # Set state of the authentication method try { - # Convert body to JSON and send request - $body = ConvertTo-Json -Compress -Depth 10 -InputObject $CurrentInfo - New-GraphPostRequest -tenantid $Tenant -Uri "https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/$AuthenticationMethodId" -Type patch -Body $body -ContentType 'application/json' - Write-LogMessage -user $ExecutingUser -API $APIName -tenant $Tenant -message "Set $AuthenticationMethodId state to $State $OptionalLogMessage" -sev Info + if ($PSCmdlet.ShouldProcess($AuthenticationMethodId, "Set state to $State $OptionalLogMessage")) { + # Convert body to JSON and send request + $null = New-GraphPostRequest -tenantid $Tenant -Uri "https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/$AuthenticationMethodId" -Type patch -Body ($CurrentInfo | ConvertTo-Json -Compress -Depth 10) -ContentType 'application/json' + Write-LogMessage -user $ExecutingUser -API $APIName -tenant $Tenant -message "Set $AuthenticationMethodId state to $State $OptionalLogMessage" -sev Info + } return "Set $AuthenticationMethodId state to $State $OptionalLogMessage" + } catch { - Write-LogMessage -user $ExecutingUser -API $APIName -tenant $Tenant -message "Failed to $State $AuthenticationMethodId Support: $($_.exception.message)" -sev Error + Write-LogMessage -user $ExecutingUser -API $APIName -tenant $Tenant -message "Failed to $State $AuthenticationMethodId Support: $($_.exception.message)" -sev Error -LogData (Get-CippException -Exception $_) return "Failed to $State $AuthenticationMethodId Support: $($_.exception.message)" } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Set-CIPPCAExclusion.ps1 b/Modules/CIPPCore/Public/Set-CIPPCAExclusion.ps1 index 888a90749cd8..d9b4658a7405 100644 --- a/Modules/CIPPCore/Public/Set-CIPPCAExclusion.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPCAExclusion.ps1 @@ -1,10 +1,10 @@ function Set-CIPPCAExclusion { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param( $TenantFilter, $ExclusionType, $UserID, - $PolicyId, + $PolicyId, $Username, $executingUser ) @@ -17,10 +17,11 @@ function Set-CIPPCAExclusion { } } } - $RawJson = ConvertTo-Json -Depth 10 -InputObject $NewExclusions - New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/identity/conditionalAccess/policies/$($CheckExististing.id)" -tenantid $tenantfilter -type PATCH -body $RawJSON - - } + $RawJson = ConvertTo-Json -Depth 10 -InputObject $NewExclusions + if ($PSCmdlet.ShouldProcess($PolicyId, "Add exclusion for $UserID")) { + New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/identity/conditionalAccess/policies/$($CheckExististing.id)" -tenantid $tenantfilter -type PATCH -body $RawJSON + } + } if ($ExclusionType -eq 'remove') { $NewExclusions = [pscustomobject]@{ @@ -29,13 +30,15 @@ function Set-CIPPCAExclusion { } } } - $RawJson = ConvertTo-Json -Depth 10 -InputObject $NewExclusions - New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/identity/conditionalAccess/policies/$($CheckExististing.id)" -tenantid $tenantfilter -type PATCH -body $RawJSON + $RawJson = ConvertTo-Json -Depth 10 -InputObject $NewExclusions + if ($PSCmdlet.ShouldProcess($PolicyId, "Remove exclusion for $UserID")) { + New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/identity/conditionalAccess/policies/$($CheckExististing.id)" -tenantid $tenantfilter -type PATCH -body $RawJSON + } } "Successfully performed $($ExclusionType) exclusion for $username from policy $($PolicyId)" Write-LogMessage -user $executingUser -API 'Set-CIPPConditionalAccessExclusion' -message "Successfully performed $($ExclusionType) exclusion for $username from policy $($PolicyId)" -Sev 'Info' -tenant $TenantFilter } catch { - "Failed to $($ExclusionType) user exclusion for $username from policy $($PolicyId): $_" - Write-LogMessage -user $executingUser -API 'Set-CIPPConditionalAccessExclusion' -message "Failed to $($ExclusionType) user exclusion for $username from policy $($PolicyId): $_" -Sev 'Error' -tenant $TenantFilter + "Failed to $($ExclusionType) user exclusion for $username from policy $($PolicyId): $($_.Exception.Message)" + Write-LogMessage -user $executingUser -API 'Set-CIPPConditionalAccessExclusion' -message "Failed to $($ExclusionType) user exclusion for $username from policy $($PolicyId): $_" -Sev 'Error' -tenant $TenantFilter -LogData (Get-CippException -Exception $_) } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Set-CIPPCPVConsent.ps1 b/Modules/CIPPCore/Public/Set-CIPPCPVConsent.ps1 index fafaf83a482a..5d530312d6f0 100644 --- a/Modules/CIPPCore/Public/Set-CIPPCPVConsent.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPCPVConsent.ps1 @@ -1,5 +1,5 @@ function Set-CIPPCPVConsent { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param( $TenantFilter, $APIName = 'CPV Consent', @@ -19,7 +19,9 @@ function Set-CIPPCPVConsent { if ($ResetSP) { try { - $DeleteSP = New-GraphPostRequest -Type DELETE -noauthcheck $true -uri "https://api.partnercenter.microsoft.com/v1/customers/$($TenantFilter)/applicationconsents/$($ENV:applicationId)" -scope 'https://api.partnercenter.microsoft.com/.default' -tenantid $env:TenantID + if ($PSCmdlet.ShouldProcess($ENV:ApplicationId, "Delete Service Principal from $TenantName")) { + $null = New-GraphPostRequest -Type DELETE -noauthcheck $true -uri "https://api.partnercenter.microsoft.com/v1/customers/$($TenantFilter)/applicationconsents/$($ENV:ApplicationId)" -scope 'https://api.partnercenter.microsoft.com/.default' -tenantid $env:TenantID + } $Results.add("Deleted Service Principal from $TenantName") } catch { $Results.add("Error deleting SP - $($_.Exception.Message)") @@ -41,20 +43,21 @@ function Set-CIPPCPVConsent { ) } | ConvertTo-Json - $CPVConsent = New-GraphpostRequest -body $AppBody -Type POST -noauthcheck $true -uri "https://api.partnercenter.microsoft.com/v1/customers/$($TenantFilter)/applicationconsents" -scope 'https://api.partnercenter.microsoft.com/.default' -tenantid $env:TenantID - $Table = Get-CIPPTable -TableName cpvtenants - $unixtime = [int64](([datetime]::UtcNow) - (Get-Date '1/1/1970')).TotalSeconds - $GraphRequest = @{ - LastApply = "$unixtime" - applicationId = "$($ENV:applicationId)" - Tenant = "$($tenantfilter)" - PartitionKey = 'Tenant' - RowKey = "$($tenantfilter)" + if ($PSCmdlet.ShouldProcess($ENV:ApplicationId, "Add Service Principal to $TenantName")) { + $null = New-GraphpostRequest -body $AppBody -Type POST -noauthcheck $true -uri "https://api.partnercenter.microsoft.com/v1/customers/$($TenantFilter)/applicationconsents" -scope 'https://api.partnercenter.microsoft.com/.default' -tenantid $env:TenantID + $Table = Get-CIPPTable -TableName cpvtenants + $unixtime = [int64](([datetime]::UtcNow) - (Get-Date '1/1/1970')).TotalSeconds + $GraphRequest = @{ + LastApply = "$unixtime" + applicationId = "$($ENV:applicationId)" + Tenant = "$($tenantfilter)" + PartitionKey = 'Tenant' + RowKey = "$($tenantfilter)" + } + Add-CIPPAzDataTableEntity @Table -Entity $GraphRequest -Force } - Add-CIPPAzDataTableEntity @Table -Entity $GraphRequest -Force $Results.add("Successfully added CPV Application to tenant $($TenantName)") | Out-Null Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message "Added our Service Principal to $($TenantName)" -Sev 'Info' -tenant $Tenant.defaultDomainName -tenantId $TenantFilter - } catch { $ErrorMessage = Get-NormalizedError -message $_.Exception.Message if ($ErrorMessage -like '*Permission entry already exists*') { @@ -70,7 +73,7 @@ function Set-CIPPCPVConsent { Add-CIPPAzDataTableEntity @Table -Entity $GraphRequest -Force return @("We've already added our Service Principal to $($TenantName)") } - Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message "Could not add our Service Principal to the client tenant $($TenantName): $($_.Exception.message)" -Sev 'Error' -tenant $Tenant.defaultDomainName -tenantId $TenantFilter + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -message "Could not add our Service Principal to the client tenant $($TenantName): $($_.Exception.message)" -Sev 'Error' -tenant $Tenant.defaultDomainName -tenantId $TenantFilter -LogData (Get-CippException -Exception $_) return @("Could not add our Service Principal to the client tenant $($TenantName): $ErrorMessage") } return $Results diff --git a/Modules/CIPPCore/Public/Set-CIPPCalendarPermission.ps1 b/Modules/CIPPCore/Public/Set-CIPPCalendarPermission.ps1 new file mode 100644 index 000000000000..03e32ece9ffe --- /dev/null +++ b/Modules/CIPPCore/Public/Set-CIPPCalendarPermission.ps1 @@ -0,0 +1,41 @@ +function Set-CIPPCalendarPermission { + [CmdletBinding(SupportsShouldProcess = $true)] + param( + $RemoveAccess, + $TenantFilter, + $UserID, + $folderName, + $UserToGetPermissions, + $Permissions + ) + + try { + $CalParam = [PSCustomObject]@{ + Identity = "$($UserID):\$folderName" + AccessRights = @($Permissions) + User = $UserToGetPermissions + } + if ($RemoveAccess) { + if ($PSCmdlet.ShouldProcess("$UserID\$folderName", "Remove permissions for $RemoveAccess")) { + $null = New-ExoRequest -tenantid $TenantFilter -cmdlet 'Remove-MailboxFolderPermission' -cmdParams @{Identity = "$($UserID):\$folderName"; User = $RemoveAccess } + $Result = "Successfully removed access for $RemoveAccess from calendar $($CalParam.Identity)" + Write-LogMessage -API 'CalendarPermissions' -tenant $TenantFilter -message "Successfully removed access for $RemoveAccess from calendar $($UserID)" -sev Debug + } + } else { + if ($PSCmdlet.ShouldProcess("$UserID\$folderName", "Set permissions for $UserToGetPermissions to $Permissions")) { + try { + $null = New-ExoRequest -tenantid $TenantFilter -cmdlet 'Set-MailboxFolderPermission' -cmdParams $CalParam -Anchor $UserID + } catch { + $null = New-ExoRequest -tenantid $TenantFilter -cmdlet 'Add-MailboxFolderPermission' -cmdParams $CalParam -Anchor $UserID + } + Write-LogMessage -API 'CalendarPermissions' -tenant $TenantFilter -message "Calendar permissions added for $UserToGetPermissions on $UserID." -sev Debug + $Result = "Successfully set permissions on folder $($CalParam.Identity). The user $UserToGetPermissions now has $Permissions permissions on this folder." + } + } + } catch { + $ErrorMessage = Get-NormalizedError -Message $_.Exception + $Result = $ErrorMessage + } + + return $Result +} diff --git a/Modules/CIPPCore/Public/Set-CIPPCalenderPermission.ps1 b/Modules/CIPPCore/Public/Set-CIPPCalenderPermission.ps1 deleted file mode 100644 index 3c1bfd2994e0..000000000000 --- a/Modules/CIPPCore/Public/Set-CIPPCalenderPermission.ps1 +++ /dev/null @@ -1,40 +0,0 @@ -function Set-CIPPCalenderPermission { - [CmdletBinding()] - param( - $RemoveAccess, - $TenantFilter, - $UserID, - $folderName, - $UserToGetPermissions, - $Permissions - ) - - try { - $CalParam = [PSCustomObject]@{ - Identity = "$($UserID):\$folderName" - AccessRights = @($Permissions) - User = $UserToGetPermissions - } - if ($RemoveAccess) { - $GraphRequest = New-ExoRequest -tenantid $TenantFilter -cmdlet "Remove-MailboxFolderPermission" -cmdParams @{Identity = "$($UserID):\$folderName"; User = $RemoveAccess } - Write-LogMessage -API "CalenderPermissions" -tenant $TenantFilter -message "Successfully removed access for $RemoveAccess from calender $($UserID)" -sev Debug - $Result = "Successfully removed access for $RemoveAccess from calender $($CalParam.Identity)" - } - else { - try { - $GraphRequest = New-ExoRequest -tenantid $TenantFilter -cmdlet "Set-MailboxFolderPermission" -cmdParams $CalParam -Anchor $UserID - } - catch { - $GraphRequest = New-ExoRequest -tenantid $TenantFilter -cmdlet "Add-MailboxFolderPermission" -cmdParams $CalParam -Anchor $UserID - } - Write-LogMessage -API "CalenderPermissions" -tenant $TenantFilter -message "Calendar permissions added for $UserToGetPermissions on $UserID." -sev Debug - $Result = "Successfully set permissions on folder $($CalParam.Identity). The user $UserToGetPermissions now has $Permissions permissions on this folder." - } - } - catch { - $ErrorMessage = Get-NormalizedError -Message $_.Exception - $Result = $ErrorMessage - } - - return $Result -} diff --git a/Modules/CIPPCore/Public/Set-CIPPCopyGroupMembers.ps1 b/Modules/CIPPCore/Public/Set-CIPPCopyGroupMembers.ps1 index cfd851f589eb..0d437374b69e 100644 --- a/Modules/CIPPCore/Public/Set-CIPPCopyGroupMembers.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPCopyGroupMembers.ps1 @@ -1,38 +1,40 @@ -function Set-CIPPCopyGroupMembers( - [string]$ExecutingUser, - [string]$UserId, - [string]$CopyFromId, - [string]$TenantFilter, - [string]$APIName = "Copy User Groups" -) { - $MemberIDs = "https://graph.microsoft.com/v1.0/directoryObjects/" + (New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users/$UserId" -tenantid $TenantFilter).id +function Set-CIPPCopyGroupMembers { + [CmdletBinding(SupportsShouldProcess = $true)] + param( + [string]$ExecutingUser, + [string]$UserId, + [string]$CopyFromId, + [string]$TenantFilter, + [string]$APIName = 'Copy User Groups' + ) + $MemberIDs = 'https://graph.microsoft.com/v1.0/directoryObjects/' + (New-GraphGetRequest -uri "https://graph.microsoft.com/beta/users/$UserId" -tenantid $TenantFilter).id $AddMemberBody = "{ `"members@odata.bind`": $(ConvertTo-Json @($MemberIDs)) }" - $Success = New-Object System.Collections.ArrayList - $Errors = New-Object System.Collections.ArrayList - (New-GraphGETRequest -uri "https://graph.microsoft.com/beta/users/$CopyFromId/memberOf" -tenantid $TenantFilter) | Where-Object { $_.GroupTypes -notin "herohero" } | ForEach-Object { + $Success = [System.Collections.Generic.List[string]]::new() + $Errors = [System.Collections.Generic.List[string]]::new() + (New-GraphGETRequest -uri "https://graph.microsoft.com/beta/users/$CopyFromId/memberOf" -tenantid $TenantFilter) | Where-Object { $_.GroupTypes -notin 'herohero' } | ForEach-Object { try { $MailGroup = $_ - if ($MailGroup.MailEnabled -and $Mailgroup.ResourceProvisioningOptions -notin "Team") { - $Params = @{ Identity = $MailGroup.mail; Member = $UserId; BypassSecurityGroupManagerCheck = $true } - New-ExoRequest -tenantid $TenantFilter -cmdlet "Add-DistributionGroupMember" -cmdParams $params -UseSystemMailbox $true + if ($PSCmdlet.ShouldProcess($_.displayName, "Add $UserId to group")) { + if ($MailGroup.MailEnabled -and $Mailgroup.ResourceProvisioningOptions -notin 'Team') { + $Params = @{ Identity = $MailGroup.mail; Member = $UserId; BypassSecurityGroupManagerCheck = $true } + $null = New-ExoRequest -tenantid $TenantFilter -cmdlet 'Add-DistributionGroupMember' -cmdParams $params -UseSystemMailbox $true + } else { + $null = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/groups/$($_.id)" -tenantid $TenantFilter -type patch -body $AddMemberBody -Verbose + } } - else { - $GroupResult = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/groups/$($_.id)" -tenantid $TenantFilter -type patch -body $AddMemberBody -Verbose - } - Write-LogMessage -user $ExecutingUser -API $APIName -message "Added $UserId to group $($_.displayName)" -Sev "Info" -tenant $TenantFilter + Write-LogMessage -user $ExecutingUser -API $APIName -message "Added $UserId to group $($_.displayName)" -Sev 'Info' -tenant $TenantFilter $Success.Add("Added group: $($MailGroup.displayName)") | Out-Null - } - catch { - $NormalizedError = Get-NormalizedError -message $($_.Exception.Message) + } catch { + $NormalizedError = Get-NormalizedError -message $($_.Exception.Message) $Errors.Add("We've failed to add the group $($MailGroup.displayName): $NormalizedError") | Out-Null - Write-LogMessage -user $ExecutingUser -API $APIName -tenant $TenantFilter -message "Group adding failed for group $($_.displayName): $($_.Exception.Message)" -Sev "Error" + Write-LogMessage -user $ExecutingUser -API $APIName -tenant $TenantFilter -message "Group adding failed for group $($_.displayName): $($_.Exception.Message)" -Sev 'Error' -LogData (Get-CippException -Exception $_) } } $Results = [PSCustomObject]@{ - "Success" = $Success - "Error" = $Errors + 'Success' = $Success + 'Error' = $Errors } return $Results diff --git a/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 b/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 index 1daf6e24ec2d..1d36a83e29d6 100644 --- a/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPDefaultAPDeploymentProfile.ps1 @@ -1,5 +1,5 @@ function Set-CIPPDefaultAPDeploymentProfile { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param( $tenantFilter, $displayname, @@ -10,7 +10,7 @@ function Set-CIPPDefaultAPDeploymentProfile { $usertype, $DeploymentMode, $hideChangeAccount, - $assignTo, + $AssignTo, $hidePrivacy, $hideTerms, $Autokeyboard, @@ -44,23 +44,29 @@ function Set-CIPPDefaultAPDeploymentProfile { if ($Profiles.count -gt 1) { $Profiles | ForEach-Object { if ($_.id -ne $Profiles[0].id) { - $Delete = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/windowsAutopilotDeploymentProfiles/$($_.id)" -tenantid $tenantfilter -type DELETE - Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenantfilter) -message "Deleted duplicate Autopilot profile $($displayname)" -Sev 'Info' + if ($PSCmdlet.ShouldProcess($_.displayName, 'Delete duplicate Autopilot profile')) { + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/windowsAutopilotDeploymentProfiles/$($_.id)" -tenantid $tenantfilter -type DELETE + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenantfilter) -message "Deleted duplicate Autopilot profile $($displayname)" -Sev 'Info' + } } } } 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 ($PSCmdlet.ShouldProcess($displayName, 'Add Autopilot profile')) { + $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 - Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenantfilter) -message "Assigned autopilot profile $($Displayname) to $AssignTo" -Sev 'Info' + if ($PSCmdlet.ShouldProcess($AssignTo, "Assign Autopilot profile $displayname")) { + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/windowsAutopilotDeploymentProfiles/$($GraphRequest.id)/assignments" -tenantid $tenantfilter -type POST -body $AssignBody + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenantfilter) -message "Assigned autopilot profile $($Displayname) to $AssignTo" -Sev 'Info' + } } "Successfully added profile for $($tenantfilter)" } catch { - Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenantfilter) -message "Failed adding Autopilot Profile $($Displayname). Error: $($_.Exception.Message)" -Sev 'Error' + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APIName -tenant $($tenantfilter) -message "Failed adding Autopilot Profile $($Displayname). Error: $($_.Exception.Message)" -Sev 'Error' -LogData (Get-CippException -Exception $_) 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 4c00ff758e0c..5d75e787f233 100644 --- a/Modules/CIPPCore/Public/Set-CIPPDefaultAPEnrollment.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPDefaultAPEnrollment.ps1 @@ -1,5 +1,5 @@ function Set-CIPPDefaultAPEnrollment { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param( $TenantFilter, $ShowProgress, @@ -33,10 +33,12 @@ function Set-CIPPDefaultAPEnrollment { } $Body = ConvertTo-Json -InputObject $ObjBody $ExistingStatusPage = (New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/deviceManagement/deviceEnrollmentConfigurations' -tenantid $($TenantFilter)) | Where-Object { $_.id -like '*DefaultWindows10EnrollmentCompletionPageConfiguration' } - $GraphRequest = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/deviceEnrollmentConfigurations/$($ExistingStatusPage.ID)" -body $body -Type PATCH -tenantid $($TenantFilter) - "Successfully changed default enrollment status page for $($($TenantFilter))" - Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($TenantFilter) -message "Added Autopilot Enrollment Status Page $($Displayname)" -Sev 'Info' + if ($PSCmdlet.ShouldProcess($ExistingStatusPage.ID, 'Set Default Enrollment Status Page')) { + $null = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/deviceEnrollmentConfigurations/$($ExistingStatusPage.ID)" -body $body -Type PATCH -tenantid $($TenantFilter) + "Successfully changed default enrollment status page for $($($TenantFilter))" + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($TenantFilter) -message "Added Autopilot Enrollment Status Page $($Displayname)" -Sev 'Info' + } } catch { 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' throw "Failed to change default enrollment status page for $($($TenantFilter)): $($_.Exception.Message)" diff --git a/Modules/CIPPCore/Public/Set-CIPPForwarding.ps1 b/Modules/CIPPCore/Public/Set-CIPPForwarding.ps1 index 2b3361a6054d..593344a886ef 100644 --- a/Modules/CIPPCore/Public/Set-CIPPForwarding.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPForwarding.ps1 @@ -1,5 +1,5 @@ function Set-CIPPForwarding { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param( $userid, $forwardingSMTPAddress, @@ -14,10 +14,16 @@ function Set-CIPPForwarding { try { if (!$username) { $username = $userid } - $permissions = New-ExoRequest -tenantid $tenantFilter -cmdlet 'Set-mailbox' -cmdParams @{Identity = $userid; ForwardingSMTPAddress = $forwardingSMTPAddress; ForwardingAddress = $Forward ; DeliverToMailboxAndForward = [bool]$KeepCopy } -Anchor $username - if (!$Disable) { "Forwarding all email for $username to $Forward" } else { "Disabled forwarding for $username" } - - Write-LogMessage -user $ExecutingUser -API $APIName -message "Set Forwarding for $($username) to $Forward" -Sev 'Info' -tenant $TenantFilter + if ($PSCmdlet.ShouldProcess($username, 'Set forwarding')) { + $null = New-ExoRequest -tenantid $tenantFilter -cmdlet 'Set-mailbox' -cmdParams @{Identity = $userid; ForwardingSMTPAddress = $forwardingSMTPAddress; ForwardingAddress = $Forward ; DeliverToMailboxAndForward = [bool]$KeepCopy } -Anchor $username + } + if (!$Disable) { + $Message = "Forwarding all email for $username to $Forward" + } else { + $Message = "Disabled forwarding for $username" + } + Write-LogMessage -user $ExecutingUser -API $APIName -message $Message -Sev 'Info' -tenant $TenantFilter + return $Message } catch { Write-LogMessage -user $ExecutingUser -API $APIName -message "Could not add forwarding for $($username)" -Sev 'Error' -tenant $TenantFilter return "Could not add forwarding for $($username). Error: $($_.Exception.Message)" diff --git a/Modules/CIPPCore/Public/Set-CIPPGDAPAutoExtend.ps1 b/Modules/CIPPCore/Public/Set-CIPPGDAPAutoExtend.ps1 index 8d81b0b6448e..c07889459ac7 100644 --- a/Modules/CIPPCore/Public/Set-CIPPGDAPAutoExtend.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPGDAPAutoExtend.ps1 @@ -1,45 +1,42 @@ function Set-CIPPGDAPAutoExtend { - [CmdletBinding()] + [CmdletBinding(SupportsShouldProcess = $true)] param ( $RelationShipid, [switch]$All, - $APIName = "Set GDAP Auto Exension", + $APIName = 'Set GDAP Auto Exension', $ExecutingUser ) $ReturnedData = if ($All -eq $true) { - $Relationships = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships" -tenantid $env:tenantid -NoAuthCheck $true | Where-Object -Property autoExtendDuration -EQ "PT0S" + $Relationships = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships' -tenantid $env:tenantid -NoAuthCheck $true | Where-Object -Property autoExtendDuration -EQ 'PT0S' foreach ($Relation in $Relationships) { try { - $AddedHeader = @{"If-Match" = $Relation."@odata.etag" } - $GraphRequest = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships/$($Relation.id)" -tenantid $env:tenantid -type PATCH -body '{"autoExtendDuration":"P180D"}' -Verbose -NoAuthCheck $true -AddedHeaders $AddedHeader - write-LogMessage -user $ExecutingUser -API $APIName -message "Successfully set auto renew for tenant $($Relation.customer.displayName) with ID $($RelationShipid)" -Sev "Info" - @("Successfully set auto renew for tenant $($Relation.customer.displayName) with ID $($Relation.id)" ) - - } - catch { + $AddedHeader = @{'If-Match' = $Relation.'@odata.etag' } + if ($PSCmdlet.ShouldProcess($Relation.id, "Set auto renew for $($Relation.customer.displayName)")) { + $null = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships/$($Relation.id)" -tenantid $env:tenantid -type PATCH -body '{"autoExtendDuration":"P180D"}' -Verbose -NoAuthCheck $true -AddedHeaders $AddedHeader + Write-LogMessage -user $ExecutingUser -API $APIName -message "Successfully set auto renew for tenant $($Relation.customer.displayName) with ID $($RelationShipid)" -Sev 'Info' + @("Successfully set auto renew for tenant $($Relation.customer.displayName) with ID $($Relation.id)" ) + } + } catch { $ErrorMessage = $_.Exception.Message $CleanError = Get-NormalizedError -message $ErrorMessage "Could not set auto renewal for $($Relation.id): $CleanError" } - } - } - else { + } else { try { - $Relationship = New-GraphGetRequest -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships" -tenantid $env:tenantid -NoAuthCheck $true | Where-Object -Property id -EQ $RelationShipid - $AddedHeader = @{"If-Match" = $Relationship."@odata.etag" } - $GraphRequest = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships/$($RelationShipid)" -tenantid $env:tenantid -type PATCH -body '{"autoExtendDuration":"P180D"}' -Verbose -NoAuthCheck $true -AddedHeaders $AddedHeader - write-LogMessage -user $ExecutingUser -API $APIName -message "Successfully set auto renew for tenant $($Relationship.customer.displayName) with ID $($RelationShipid)" -Sev "Info" - @("Successfully set auto renew for tenant $($Relationship.customer.displayName) with ID $($RelationShipid)" ) - } - catch { + $Relationship = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships' -tenantid $env:tenantid -NoAuthCheck $true | Where-Object -Property id -EQ $RelationShipid + $AddedHeader = @{'If-Match' = $Relationship.'@odata.etag' } + if ($PSCmdlet.ShouldProcess($RelationShipid, "Set auto renew for $($Relationship.customer.displayName)")) { + $null = New-GraphPostRequest -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships/$($RelationShipid)" -tenantid $env:tenantid -type PATCH -body '{"autoExtendDuration":"P180D"}' -Verbose -NoAuthCheck $true -AddedHeaders $AddedHeader + write-LogMessage -user $ExecutingUser -API $APIName -message "Successfully set auto renew for tenant $($Relationship.customer.displayName) with ID $($RelationShipid)" -Sev 'Info' + @("Successfully set auto renew for tenant $($Relationship.customer.displayName) with ID $($RelationShipid)" ) + } + } catch { $ErrorMessage = $_.Exception.Message $CleanError = Get-NormalizedError -message $ErrorMessage "Could not set auto renewal for $($RelationShipid): $CleanError" } } - return $ReturnedData - -} \ No newline at end of file +} diff --git a/Modules/CIPPCore/Public/Set-CIPPGDAPInviteGroups.ps1 b/Modules/CIPPCore/Public/Set-CIPPGDAPInviteGroups.ps1 index 3017355df062..c648d1300446 100644 --- a/Modules/CIPPCore/Public/Set-CIPPGDAPInviteGroups.ps1 +++ b/Modules/CIPPCore/Public/Set-CIPPGDAPInviteGroups.ps1 @@ -1,4 +1,5 @@ function Set-CIPPGDAPInviteGroups { + [CmdletBinding(SupportsShouldProcess = $true)] Param($Relationship) $Table = Get-CIPPTable -TableName 'GDAPInvites' @@ -22,15 +23,20 @@ function Set-CIPPGDAPInviteGroups { }) } } - New-GraphPostRequest -NoAuthCheck $True -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships/$($Relationship.id)/accessAssignments" -tenantid $env:TenantID -type POST -body $MappingBody -verbose - Start-Sleep -Milliseconds 100 + if ($PSCmdlet.ShouldProcess($Relationship.id, "Map group $($Role.GroupName) to customer $($Relationship.customer.displayName)")) { + $null = New-GraphPostRequest -NoAuthCheck $True -uri "https://graph.microsoft.com/beta/tenantRelationships/delegatedAdminRelationships/$($Relationship.id)/accessAssignments" -tenantid $env:TenantID -type POST -body $MappingBody -verbose + Start-Sleep -Milliseconds 100 + } } catch { - Write-LogMessage -API $APINAME -message "GDAP Group mapping failed for $($Relationship.customer.displayName) - Group: $($role.GroupId) - Exception: $($_.Exception.Message)" -Sev Error + Write-LogMessage -API $APINAME -message "GDAP Group mapping failed for $($Relationship.customer.displayName) - Group: $($role.GroupId) - Exception: $($_.Exception.Message)" -Sev Error -LogData (Get-CippException -Exception $_) return $false } } - Write-LogMessage -API $APINAME -message "Groups mapped for GDAP Relationship: $($Relationship.customer.displayName) - $($Relationship.customer.displayName)" -Sev Info - Remove-AzDataTableEntity @Table -Entity $Invite + + if ($PSCmdlet.ShouldProcess($Relationship.id, "Remove invite entry for $($Relationship.customer.displayName)")) { + Write-LogMessage -API $APINAME -message "Groups mapped for GDAP Relationship: $($Relationship.customer.displayName) - $($Relationship.customer.displayName)" -Sev Info + Remove-AzDataTableEntity @Table -Entity $Invite + } return $true } else { $InviteList = Get-CIPPAzDataTableEntity @Table @@ -39,7 +45,7 @@ function Set-CIPPGDAPInviteGroups { $Batch = foreach ($Activation in $Activations) { if ($InviteList.RowKey -contains $Activation.id) { - Write-Host "Mapping groups for GDAP relationship: $($Activation.customer.displayName) - $($Activation.id)" + Write-Information "Mapping groups for GDAP relationship: $($Activation.customer.displayName) - $($Activation.id)" $Activation | Add-Member -NotePropertyName FunctionName -NotePropertyValue 'ExecGDAPInviteQueue' $Activation } @@ -50,9 +56,9 @@ function Set-CIPPGDAPInviteGroups { Batch = @($Batch) SkipLog = $true } - #Write-Host ($InputObject | ConvertTo-Json) + #Write-Information ($InputObject | ConvertTo-Json) $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress) - Write-Host "Started GDAP Invite orchestration with ID = '$InstanceId'" + Write-Information "Started GDAP Invite orchestration with ID = '$InstanceId'" } } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPConfig.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPConfig.ps1 index 80f5b3f2ff14..84f58505ea12 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPConfig.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPConfig.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardAPConfig { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { $APINAME = 'Standards' diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPESP.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPESP.ps1 index f279e9ba4516..5d40bdfdfaba 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPESP.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAPESP.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardAPESP { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { $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 diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardActivityBasedTimeout.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardActivityBasedTimeout.ps1 index ae2d6a6c094a..11093e73a29e 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardActivityBasedTimeout.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardActivityBasedTimeout.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardActivityBasedTimeout { param($Tenant, $Settings) $State = (New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/activityBasedTimeoutPolicies' -tenantid $tenant).id - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { try { if (!$State) { $body = @' @@ -27,7 +27,7 @@ function Invoke-CIPPStandardActivityBasedTimeout { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Activity Based Timeout is enabled' -sev Info @@ -36,8 +36,8 @@ function Invoke-CIPPStandardActivityBasedTimeout { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'ActivityBasedTimeout' -FieldValue [bool]$state -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'ActivityBasedTimeout' -FieldValue $state -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAddDKIM.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAddDKIM.ps1 index 4a980913b0f6..ec489153cf4e 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAddDKIM.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAddDKIM.ps1 @@ -5,49 +5,63 @@ function Invoke-CIPPStandardAddDKIM { #> param($Tenant, $Settings) - $AllDomains = (New-GraphGetRequest -uri 'https://graph.microsoft.com/v1.0/domains' -tenantid $Tenant | Where-Object { $_.supportedServices -contains 'Email' }).id + $AllDomains = (New-GraphGetRequest -uri 'https://graph.microsoft.com/v1.0/domains?$top=999' -tenantid $Tenant | Where-Object { $_.supportedServices -contains 'Email' }).id $DKIM = (New-ExoRequest -tenantid $tenant -cmdlet 'Get-DkimSigningConfig') | Select-Object Domain, Enabled, Status # List of domains for each way to enable DKIM $NewDomains = $AllDomains | Where-Object { $DKIM.Domain -notcontains $_ } $SetDomains = $DKIM | Where-Object { $AllDomains -contains $_.Domain -and $_.Enabled -eq $false } - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($null -eq $NewDomains -and $null -eq $SetDomains) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'DKIM is already enabled for all available domains.' -sev Info } else { $ErrorCounter = 0 # New-domains - foreach ($Domain in $NewDomains) { - try { - (New-ExoRequest -tenantid $tenant -cmdlet 'New-DkimSigningConfig' -cmdparams @{ KeySize = 2048; DomainName = $Domain; Enabled = $true } -useSystemMailbox $true) - Write-LogMessage -API 'Standards' -tenant $tenant -message "Enabled DKIM for $Domain" -sev Info - } catch { + $Request = $NewDomains | ForEach-Object { + @{ + CmdletInput = @{ + CmdletName = 'New-DkimSigningConfig' + Parameters = @{ KeySize = 2048; DomainName = $_; Enabled = $true } + } + } + } + + $BatchResults = New-ExoBulkRequest -tenantid $tenant -cmdletArray @($Request) -useSystemMailbox $true + $BatchResults | ForEach-Object { + if ($_.error) { + $ErrorCounter ++ Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to enable DKIM. Error: $($_.Exception.Message)" -sev Error - $ErrorCounter++ } } - # Set-domains - foreach ($Domain in $SetDomains) { - try { - (New-ExoRequest -tenantid $tenant -cmdlet 'Set-DkimSigningConfig' -cmdparams @{ Identity = $Domain.Domain; Enabled = $true } -useSystemMailbox $true) - Write-LogMessage -API 'Standards' -tenant $tenant -message "Enabled DKIM for $($Domain.Domain)" -sev Info - } catch { - Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to enable DKIM. Error: $($_.Exception.Message)" -sev Error - $ErrorCounter++ + $Request = $SetDomains | ForEach-Object { + @{ + CmdletInput = @{ + CmdletName = 'Set-DkimSigningConfig' + Parameters = @{ Identity = $Domain.Domain; Enabled = $true } + } } } - if ($ErrorCounter -eq 0) { - Write-LogMessage -API 'Standards' -tenant $tenant -message 'Enabled DKIM for all domains in tenant' -sev Info - } else { - Write-LogMessage -API 'Standards' -tenant $tenant -message 'Failed to enable DKIM for all domains in tenant' -sev Error + + $BatchResults = New-ExoBulkRequest -tenantid $tenant -cmdletArray @($Request) -useSystemMailbox $true + $BatchResults | ForEach-Object { + if ($_.error) { + Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to set DKIM. Error: $($_.Exception.Message)" -sev Error + $ErrorCounter ++ + } + + if ($ErrorCounter -eq 0) { + Write-LogMessage -API 'Standards' -tenant $tenant -message 'Enabled DKIM for all domains in tenant' -sev Info + } else { + Write-LogMessage -API 'Standards' -tenant $tenant -message 'Failed to enable DKIM for all domains in tenant' -sev Error + } } } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($null -eq $NewDomains -and $null -eq $SetDomains) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'DKIM is enabled for all available domains' -sev Info @@ -56,9 +70,9 @@ function Invoke-CIPPStandardAddDKIM { Write-LogMessage -API 'Standards' -tenant $tenant -message "DKIM is not enabled for: $NoDKIM" -sev Alert } } - - if ($Settings.report) { + + if ($Settings.report -eq $true) { if ($null -eq $NewDomains -and $null -eq $SetDomains) { $DKIMState = $true } else { $DKIMState = $false } - Add-CIPPBPAField -FieldName 'DKIM' -FieldValue [bool]$DKIMState -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'DKIM' -FieldValue $DKIMState -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAnonReportDisable.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAnonReportDisable.ps1 index 93f0183adf14..f703045ad91f 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAnonReportDisable.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAnonReportDisable.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardAnonReportDisable { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/admin/reportSettings' -tenantid $Tenant -AsApp $true - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($CurrentInfo.displayConcealedNames -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Anonymous Reports is already disabled.' -sev Info } else { @@ -19,7 +19,7 @@ function Invoke-CIPPStandardAnonReportDisable { } } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.displayConcealedNames -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Anonymous Reports is disabled' -sev Info @@ -27,7 +27,7 @@ function Invoke-CIPPStandardAnonReportDisable { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Anonymous Reports is not disabled' -sev Alert } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'AnonReport' -FieldValue [bool]$CurrentInfo.displayConcealedNames -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'AnonReport' -FieldValue $CurrentInfo.displayConcealedNames -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAntiPhishPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAntiPhishPolicy.ps1 index 22c6b14d82e6..fa1707346122 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAntiPhishPolicy.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAntiPhishPolicy.ps1 @@ -7,8 +7,8 @@ function Invoke-CIPPStandardAntiPhishPolicy { param($Tenant, $Settings) $PolicyName = 'Default Anti-Phishing Policy' - $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-AntiPhishPolicy' | - Where-Object -Property Name -EQ $PolicyName | + $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 = ($CurrentState.Name -eq $PolicyName) -and @@ -26,7 +26,7 @@ function Invoke-CIPPStandardAntiPhishPolicy { ($CurrentState.MailboxIntelligenceProtectionAction -eq $Settings.MailboxIntelligenceProtectionAction) -and ($CurrentState.MailboxIntelligenceQuarantineTag -eq $Settings.MailboxIntelligenceQuarantineTag) - if ($Settings.remediate) { + if ($Settings.remediate -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Anti-phishing Policy already correctly configured' -sev Info } else { @@ -63,7 +63,7 @@ function Invoke-CIPPStandardAntiPhishPolicy { } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Anti-phishing Policy is enabled' -sev Info @@ -72,8 +72,8 @@ function Invoke-CIPPStandardAntiPhishPolicy { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'AntiPhishPolicy' -FieldValue [bool]$StateIsCorrect -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'AntiPhishPolicy' -FieldValue $StateIsCorrect -StoreAs bool -Tenant $tenant } - + } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAtpPolicyForO365.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAtpPolicyForO365.ps1 index 75d78bc395b0..3db0920e1538 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAtpPolicyForO365.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAtpPolicyForO365.ps1 @@ -5,7 +5,7 @@ function Invoke-CIPPStandardAtpPolicyForO365 { #> param($Tenant, $Settings) - $AtpPolicyForO365State = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-AtpPolicyForO365' | + $AtpPolicyForO365State = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-AtpPolicyForO365' | Select-Object EnableATPForSPOTeamsODB, EnableSafeDocs, AllowSafeDocsOpen $StateIsCorrect = if ( @@ -14,7 +14,7 @@ function Invoke-CIPPStandardAtpPolicyForO365 { ($AtpPolicyForO365State.AllowSafeDocsOpen -eq $Settings.AllowSafeDocsOpen) ) { $true } else { $false } - if ($Settings.remediate) { + if ($Settings.remediate -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Atp Policy For O365 already set.' -sev Info } else { @@ -33,7 +33,7 @@ function Invoke-CIPPStandardAtpPolicyForO365 { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Atp Policy For O365 is enabled' -sev Info @@ -42,8 +42,8 @@ function Invoke-CIPPStandardAtpPolicyForO365 { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'AtpPolicyForO365' -FieldValue [bool]$StateIsCorrect -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'AtpPolicyForO365' -FieldValue $StateIsCorrect -StoreAs bool -Tenant $tenant } - + } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAuditLog.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAuditLog.ps1 index e3682928503c..80e6f0ca9a5c 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAuditLog.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAuditLog.ps1 @@ -7,7 +7,7 @@ function Invoke-CIPPStandardAuditLog { Write-Host ($Settings | ConvertTo-Json) $AuditLogEnabled = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-AdminAuditLogConfig' -Select UnifiedAuditLogIngestionEnabled).UnifiedAuditLogIngestionEnabled - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { Write-Host 'Time to remediate' $DehydratedTenant = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-OrganizationConfig' -Select IsDehydrated).IsDehydrated @@ -34,7 +34,7 @@ function Invoke-CIPPStandardAuditLog { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to apply Unified Audit Log. Error: $ErrorMessage" -sev Error } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($AuditLogEnabled) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Unified Audit Log is enabled' -sev Info @@ -42,8 +42,8 @@ function Invoke-CIPPStandardAuditLog { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Unified Audit Log is not enabled' -sev Alert } } - if ($Settings.report) { + if ($Settings.report -eq $true) { - Add-CIPPBPAField -FieldName 'AuditLog' -FieldValue [bool]$AuditLogEnabled -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'AuditLog' -FieldValue $AuditLogEnabled -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAutoExpandArchive.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAutoExpandArchive.ps1 index 0a12b3e92524..e7eb7107ee26 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAutoExpandArchive.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAutoExpandArchive.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardAutoExpandArchive { param($Tenant, $Settings) $CurrentState = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-OrganizationConfig').AutoExpandingArchiveEnabled - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($CurrentState) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Auto Expanding Archive is already enabled.' -sev Info } else { @@ -19,7 +19,7 @@ function Invoke-CIPPStandardAutoExpandArchive { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentState) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Auto Expanding Archives is enabled' -sev Info @@ -28,7 +28,7 @@ function Invoke-CIPPStandardAutoExpandArchive { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'AutoExpandingArchive' -FieldValue [bool]$CurrentState -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'AutoExpandingArchive' -FieldValue $CurrentState -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAzurePortal.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAzurePortal.ps1 index f0c5622b80e7..093ac9b31d47 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAzurePortal.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardAzurePortal.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardAzurePortal { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Azure Portal disablement is no longer functional. Please remove this standard.' -sev Error } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardConditionalAccess.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardConditionalAccess.ps1 index 838a3c0efbbc..fb7e177126b2 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardConditionalAccess.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardConditionalAccess.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardConditionalAccess { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { $APINAME = 'Standards' @@ -12,9 +12,9 @@ function Invoke-CIPPStandardConditionalAccess { foreach ($Template in $Settings.TemplateList) { try { $Table = Get-CippTable -tablename 'templates' - $Filter = "PartitionKey eq 'CATemplate' and RowKey eq '$($Template.value)'" + $Filter = "PartitionKey eq 'CATemplate' and RowKey eq '$($Template.value)'" $JSONObj = (Get-AzDataTableEntity @Table -Filter $Filter).JSON - $CAPolicy = New-CIPPCAPolicy -TenantFilter $tenant -state $request.body.NewState -RawJSON $JSONObj -Overwrite $true -APIName $APIName -ExecutingUser $request.headers.'x-ms-client-principal' + $CAPolicy = New-CIPPCAPolicy -TenantFilter $tenant -state $request.body.NewState -RawJSON $JSONObj -Overwrite $true -APIName $APIName -ExecutingUser $request.headers.'x-ms-client-principal' -ReplacePattern 'displayName' } catch { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to create or update conditional access rule $($JSONObj.displayName): $($_.exception.message)" -sev 'Error' } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDelegateSentItems.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDelegateSentItems.ps1 index 856e45625a49..c430a8d42358 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDelegateSentItems.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDelegateSentItems.ps1 @@ -4,9 +4,9 @@ function Invoke-CIPPStandardDelegateSentItems { Internal #> param($Tenant, $Settings) - $Mailboxes = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-Mailbox' -cmdParams @{ RecipientTypeDetails = @('UserMailbox', 'SharedMailbox') } | Where-Object { $_.MessageCopyForSendOnBehalfEnabled -eq $false -or $_.MessageCopyForSentAsEnabled -eq $false } + $Mailboxes = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-Mailbox' -cmdParams @{ RecipientTypeDetails = @('UserMailbox', 'SharedMailbox') } | Where-Object { $_.MessageCopyForSendOnBehalfEnabled -eq $false -or $_.MessageCopyForSentAsEnabled -eq $false } - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($Mailboxes) { try { @@ -21,7 +21,7 @@ function Invoke-CIPPStandardDelegateSentItems { $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-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 } } @@ -30,10 +30,10 @@ function Invoke-CIPPStandardDelegateSentItems { } } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Delegate Sent Items Style already enabled.' -sev Info - + } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($Mailboxes) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Delegate Sent Items Style is not enabled for $($mailboxes.count) mailboxes" -sev Alert } else { @@ -41,7 +41,7 @@ function Invoke-CIPPStandardDelegateSentItems { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $Filtered = $Mailboxes | Select-Object -Property UserPrincipalName, MessageCopyForSendOnBehalfEnabled, MessageCopyForSentAsEnabled Add-CIPPBPAField -FieldName 'DelegateSentItems' -FieldValue $Filtered -StoreAs json -Tenant $tenant } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDeletedUserRentention.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDeletedUserRentention.ps1 index ffda26966410..830b8e9d3b5d 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDeletedUserRentention.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDeletedUserRentention.ps1 @@ -7,23 +7,23 @@ function Invoke-CIPPStandardDeletedUserRentention { $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings' -tenantid $Tenant -AsApp $true $StateSetCorrectly = if ($CurrentInfo.deletedUserPersonalSiteRetentionPeriodInDays -eq 365) { $true } else { $false } - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($StateSetCorrectly -eq $false) { try { $body = '{"deletedUserPersonalSiteRetentionPeriodInDays": 365}' New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings' -AsApp $true -Type PATCH -Body $body -ContentType 'application/json' - + Write-LogMessage -API 'Standards' -tenant $tenant -message 'Set deleted user rentention of OneDrive to 1 year' -sev Info } catch { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to set deleted user rentention of OneDrive to 1 year: $($_.exception.message)" -sev Error } } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Deleted user rentention of OneDrive is already set to 1 year' -sev Info - + } } - - if ($Settings.alert) { + + if ($Settings.alert -eq $true) { if ($StateSetCorrectly) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Deleted user rentention of OneDrive is set to 1 year' -sev Info } else { @@ -31,8 +31,8 @@ function Invoke-CIPPStandardDeletedUserRentention { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { - Add-CIPPBPAField -FieldName 'DeletedUserRentention' -FieldValue [bool]$StateSetCorrectly -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'DeletedUserRentention' -FieldValue $StateSetCorrectly -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableAddShortcutsToOneDrive.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableAddShortcutsToOneDrive.ps1 index 1037a1ba6a20..2b7e9454583c 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableAddShortcutsToOneDrive.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableAddShortcutsToOneDrive.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardDisableAddShortcutsToOneDrive { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { function GetTenantRequestXml { return @' param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy?$select=defaultUserRolePermissions' -tenantid $Tenant - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($CurrentInfo.defaultUserRolePermissions.allowedToCreateApps -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are already not allowed to create App registrations.' -sev Info } else { try { $body = '{"defaultUserRolePermissions":{"allowedToCreateApps":false}}' - $null = New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -Type patch -Body $body -ContentType 'application/json' + $null = New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -Type patch -Body $body -ContentType 'application/json' Write-LogMessage -API 'Standards' -tenant $tenant -message 'Disabled users from creating App registrations.' -sev Info $CurrentInfo.defaultUserRolePermissions.allowedToCreateApps = $false } catch { @@ -20,8 +20,8 @@ function Invoke-CIPPStandardDisableAppCreation { } } } - - if ($Settings.alert) { + + if ($Settings.alert -eq $true) { if ($CurrentInfo.defaultUserRolePermissions.allowedToCreateApps -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are not allowed to create App registrations.' -sev Info @@ -30,8 +30,8 @@ function Invoke-CIPPStandardDisableAppCreation { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $State = -not $CurrentInfo.defaultUserRolePermissions.allowedToCreateApps - Add-CIPPBPAField -FieldName 'UserAppCreationDisabled' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'UserAppCreationDisabled' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableBasicAuthSMTP.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableBasicAuthSMTP.ps1 index ea9158643d86..9aa812e2bcb1 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableBasicAuthSMTP.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableBasicAuthSMTP.ps1 @@ -7,8 +7,8 @@ function Invoke-CIPPStandardDisableBasicAuthSMTP { $CurrentInfo = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-TransportConfig' $SMTPusers = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-CASMailbox' -cmdParams @{ ResultSize = 'Unlimited' } | Where-Object { ($_.SmtpClientAuthenticationDisabled -eq $false) } - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($CurrentInfo.SmtpClientAuthenticationDisabled -and $SMTPusers.Count -eq 0) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'SMTP Basic Authentication for tenant and all users is already disabled' -sev Info } else { @@ -19,7 +19,7 @@ function Invoke-CIPPStandardDisableBasicAuthSMTP { } catch { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to disable SMTP Basic Authentication: $($_.exception.message)" -sev Error } - + # Disable SMTP Basic Authentication for all users $SMTPusers | ForEach-Object { try { @@ -32,11 +32,11 @@ function Invoke-CIPPStandardDisableBasicAuthSMTP { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.SmtpClientAuthenticationDisabled -and $SMTPusers.Count -eq 0) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'SMTP Basic Authentication for tenant and all users is disabled' -sev Info } else { - + if ($CurrentInfo.SmtpClientAuthenticationDisabled) { $LogMessage = 'SMTP Basic Authentication for tenant is disabled. ' } else { @@ -51,7 +51,7 @@ function Invoke-CIPPStandardDisableBasicAuthSMTP { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableBasicAuthSMTP' -FieldValue [bool]$CurrentInfo.SmtpClientAuthenticationDisabled -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableBasicAuthSMTP' -FieldValue $CurrentInfo.SmtpClientAuthenticationDisabled -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableEmail.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableEmail.ps1 index 1bc4d0161cb0..43eb1f36db3a 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableEmail.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableEmail.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardDisableEmail { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/Email' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($State) { Set-CIPPAuthenticationPolicy -Tenant $tenant -APIName 'Standards' -AuthenticationMethodId 'Email' -Enabled $false } else { @@ -15,7 +15,7 @@ function Invoke-CIPPStandardDisableEmail { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Email authentication method is enabled' -sev Alert } else { @@ -23,7 +23,7 @@ function Invoke-CIPPStandardDisableEmail { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableEmail' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableEmail' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableExternalCalendarSharing.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableExternalCalendarSharing.ps1 index a1c29b7724c9..45b84fd3046d 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableExternalCalendarSharing.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableExternalCalendarSharing.ps1 @@ -5,8 +5,8 @@ function Invoke-CIPPStandardDisableExternalCalendarSharing { #> param($Tenant, $Settings) $CurrentInfo = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-SharingPolicy' | Where-Object { $_.Default -eq $true } - - if ($Settings.remediate) { + + if ($Settings.remediate -eq $true) { if ($CurrentInfo.Enabled) { $CurrentInfo | ForEach-Object { try { @@ -18,12 +18,12 @@ function Invoke-CIPPStandardDisableExternalCalendarSharing { } } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'External calendar sharing is already disabled' -sev Info - + } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.Enabled) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'External calendar sharing is enabled' -sev Alert } else { @@ -31,8 +31,8 @@ function Invoke-CIPPStandardDisableExternalCalendarSharing { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $CurrentInfo.Enabled = -not $CurrentInfo.Enabled - Add-CIPPBPAField -FieldName 'ExternalCalendarSharingDisabled' -FieldValue [bool]$CurrentInfo.Enabled -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'ExternalCalendarSharingDisabled' -FieldValue $CurrentInfo.Enabled -StoreAs bool -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuestDirectory.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuestDirectory.ps1 index 44d92753db8f..12d034189054 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuestDirectory.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuestDirectory.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardDisableGuestDirectory { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -tenantid $Tenant - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($CurrentInfo.guestUserRoleId -eq '2af84b1e-32c8-42b7-82bc-daa82404023b') { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Guest access to directory information is already disabled.' -sev Info } else { @@ -20,8 +20,8 @@ function Invoke-CIPPStandardDisableGuestDirectory { } } } - - if ($Settings.alert) { + + if ($Settings.alert -eq $true) { if ($CurrentInfo.guestUserRoleId -eq '2af84b1e-32c8-42b7-82bc-daa82404023b') { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Guest access to directory information is disabled.' -sev Info @@ -29,9 +29,9 @@ function Invoke-CIPPStandardDisableGuestDirectory { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Guest access to directory information is not disabled.' -sev Alert } } - - if ($Settings.report) { + + if ($Settings.report -eq $true) { if ($CurrentInfo.guestUserRoleId -eq '2af84b1e-32c8-42b7-82bc-daa82404023b') { $CurrentInfo.guestUserRoleId = $true } else { $CurrentInfo.guestUserRoleId = $false } - Add-CIPPBPAField -FieldName 'DisableGuestDirectory' -FieldValue [bool]$CurrentInfo.guestUserRoleId -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'DisableGuestDirectory' -FieldValue $CurrentInfo.guestUserRoleId -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuests.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuests.ps1 index 5b889f0c10e7..24aeb0322a7d 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuests.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableGuests.ps1 @@ -7,7 +7,7 @@ function Invoke-CIPPStandardDisableGuests { $Lookup = (Get-Date).AddDays(-90).ToUniversalTime().ToString('o') $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) { + If ($Settings.remediate -eq $true) { if ($GraphRequest) { foreach ($guest in $GraphRequest) { @@ -23,7 +23,7 @@ function Invoke-CIPPStandardDisableGuests { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($GraphRequest) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Guests accounts with a login longer than 90 days ago: $($GraphRequest.count)" -sev Alert @@ -31,7 +31,7 @@ function Invoke-CIPPStandardDisableGuests { Write-LogMessage -API 'Standards' -tenant $tenant -message 'No guests accounts with a login longer than 90 days ago.' -sev Info } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $filtered = $GraphRequest | Select-Object -Property UserPrincipalName, id, signInActivity, mail, userType, accountEnabled Add-CIPPBPAField -FieldName 'DisableGuests' -FieldValue $filtered -StoreAs json -Tenant $tenant } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableM365GroupUsers.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableM365GroupUsers.ps1 index de0c916d64b7..162762806a46 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableM365GroupUsers.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableM365GroupUsers.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardDisableM365GroupUsers { param($Tenant, $Settings) $CurrentState = (New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/settings' -tenantid $tenant) | Where-Object -Property displayname -EQ 'Group.unified' - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if (($CurrentState.values | Where-Object { $_.name -eq 'EnableGroupCreation' }).value -eq 'false') { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are already disabled from creating M365 Groups.' -sev Info } else { @@ -26,7 +26,7 @@ function Invoke-CIPPStandardDisableM365GroupUsers { } } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentState) { if (($CurrentState.values | Where-Object { $_.name -eq 'EnableGroupCreation' }).value -eq 'false') { @@ -38,7 +38,7 @@ function Invoke-CIPPStandardDisableM365GroupUsers { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are not disabled from creating M365 Groups.' -sev Alert } } - if ($Settings.report) { + if ($Settings.report -eq $true) { if ($CurrentState) { if (($CurrentState.values | Where-Object { $_.name -eq 'EnableGroupCreation' }).value -eq 'false') { $CurrentState = $true @@ -48,7 +48,7 @@ function Invoke-CIPPStandardDisableM365GroupUsers { } else { $CurrentState = $false } - Add-CIPPBPAField -FieldName 'DisableM365GroupUsers' -FieldValue [bool]$CurrentState -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'DisableM365GroupUsers' -FieldValue $CurrentState -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableOutlookAddins.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableOutlookAddins.ps1 index d352fd8b33f0..a6fa5fe84890 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableOutlookAddins.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableOutlookAddins.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardDisableOutlookAddins { Internal #> param($Tenant, $Settings) - + $CurrentInfo = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-RoleAssignmentPolicy' | Where-Object { $_.IsDefault -eq $true } $Roles = @('My Custom Apps', 'My Marketplace Apps', 'My ReadWriteMailbox Apps') $RolesToRemove = foreach ($Role in $Roles) { @@ -13,10 +13,10 @@ function Invoke-CIPPStandardDisableOutlookAddins { } } - if ($Settings.remediate) { + if ($Settings.remediate -eq $true) { if ($RolesToRemove) { $Errors = [System.Collections.Generic.List[string]]::new() - + foreach ($Role in $RolesToRemove) { try { New-ExoRequest -tenantid $Tenant -cmdlet 'Get-ManagementRoleAssignment' -cmdparams @{ RoleAssignee = $CurrentInfo.Identity; Role = $Role } | ForEach-Object { @@ -40,15 +40,15 @@ function Invoke-CIPPStandardDisableOutlookAddins { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($RolesToRemove) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are not disabled from installing Outlook add-ins.' -sev Alert } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are disabled from installing Outlook add-ins.' -sev Info } } - if ($Settings.report) { + if ($Settings.report -eq $true) { if ($RolesToRemove) { $State = $false } else { $State = $true } - Add-CIPPBPAField -FieldName 'DisabledOutlookAddins' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'DisabledOutlookAddins' -FieldValue $State -StoreAs bool -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableReshare.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableReshare.ps1 index 6f6c0b9f7f7a..c0764eec24a2 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableReshare.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableReshare.ps1 @@ -5,8 +5,8 @@ function Invoke-CIPPStandardDisableReshare { #> param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings' -tenantid $Tenant -AsApp $true - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($CurrentInfo.isResharingByExternalUsersEnabled) { try { @@ -20,7 +20,7 @@ function Invoke-CIPPStandardDisableReshare { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Guests are already disabled from resharing files' -sev Info } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.isResharingByExternalUsersEnabled) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Guests are allowed to reshare files' -sev Alert @@ -29,7 +29,7 @@ function Invoke-CIPPStandardDisableReshare { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableReshare' -FieldValue [bool]$CurrentInfo.isResharingByExternalUsersEnabled -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableReshare' -FieldValue $CurrentInfo.isResharingByExternalUsersEnabled -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSMS.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSMS.ps1 index 337dffde4b20..43dd0198d1b3 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSMS.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSMS.ps1 @@ -6,16 +6,16 @@ function Invoke-CIPPStandardDisableSMS { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/SMS' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($State) { Set-CIPPAuthenticationPolicy -Tenant $tenant -APIName 'Standards' -AuthenticationMethodId 'SMS' -Enabled $false } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'SMS authentication method is already disabled.' -sev Info } } - - if ($Settings.alert) { + + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'SMS authentication method is enabled' -sev Alert } else { @@ -23,7 +23,7 @@ function Invoke-CIPPStandardDisableSMS { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableSMS' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableSMS' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSecurityGroupUsers.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSecurityGroupUsers.ps1 index 56510a1eb758..a3330ca0253f 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSecurityGroupUsers.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSecurityGroupUsers.ps1 @@ -5,14 +5,14 @@ function Invoke-CIPPStandardDisableSecurityGroupUsers { #> param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -tenantid $Tenant - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($CurrentInfo.defaultUserRolePermissions.allowedToCreateSecurityGroups -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are already not allowed to create Security Groups.' -sev Info } else { try { $body = '{"defaultUserRolePermissions":{"allowedToCreateSecurityGroups":false}}' - $null = New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -Type patch -Body $body -ContentType 'application/json' + $null = New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -Type patch -Body $body -ContentType 'application/json' Write-LogMessage -API 'Standards' -tenant $tenant -message 'Disabled users from creating Security Groups.' -sev Info $CurrentInfo.defaultUserRolePermissions.allowedToCreateSecurityGroups = $false } catch { @@ -20,8 +20,8 @@ function Invoke-CIPPStandardDisableSecurityGroupUsers { } } } - - if ($Settings.alert) { + + if ($Settings.alert -eq $true) { if ($CurrentInfo.defaultUserRolePermissions.allowedToCreateSecurityGroups -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are not allowed to create Security Groups.' -sev Info @@ -30,7 +30,7 @@ function Invoke-CIPPStandardDisableSecurityGroupUsers { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableSecurityGroupUsers' -FieldValue [bool]$CurrentInfo.defaultUserRolePermissions.allowedToCreateSecurityGroups -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableSecurityGroupUsers' -FieldValue $CurrentInfo.defaultUserRolePermissions.allowedToCreateSecurityGroups -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSharePointLegacyAuth.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSharePointLegacyAuth.ps1 index 87178367ab5c..e9f00ea20e07 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSharePointLegacyAuth.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSharePointLegacyAuth.ps1 @@ -4,10 +4,10 @@ function Invoke-CIPPStandardDisableSharePointLegacyAuth { Internal #> param($Tenant, $Settings) - + $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings?$select=isLegacyAuthProtocolsEnabled' -tenantid $Tenant -AsApp $true - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($CurrentInfo.isLegacyAuthProtocolsEnabled) { try { @@ -22,7 +22,7 @@ function Invoke-CIPPStandardDisableSharePointLegacyAuth { Write-LogMessage -API 'Standards' -tenant $tenant -message 'SharePoint basic authentication is already disabled' -sev Info } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.isLegacyAuthProtocolsEnabled) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'SharePoint basic authentication is enabled' -sev Alert @@ -30,8 +30,8 @@ function Invoke-CIPPStandardDisableSharePointLegacyAuth { Write-LogMessage -API 'Standards' -tenant $tenant -message 'SharePoint basic authentication is disabled' -sev Info } } - if ($Settings.report) { + if ($Settings.report -eq $true) { - Add-CIPPBPAField -FieldName 'SharePointLegacyAuthEnabled' -FieldValue [bool]$CurrentInfo.isLegacyAuthProtocolsEnabled -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'SharePointLegacyAuthEnabled' -FieldValue $CurrentInfo.isLegacyAuthProtocolsEnabled -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSharedMailbox.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSharedMailbox.ps1 index 45b637dcc905..443176919630 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSharedMailbox.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableSharedMailbox.ps1 @@ -5,8 +5,8 @@ function Invoke-CIPPStandardDisableSharedMailbox { #> param($Tenant, $Settings) $SharedMailboxList = (New-GraphGetRequest -uri "https://outlook.office365.com/adminapi/beta/$($Tenant)/Mailbox?`$filter=ExchangeUserAccountControl ne 'accountdisabled'" -Tenantid $tenant -scope ExchangeOnline | Where-Object { $_.RecipientTypeDetails -EQ 'SharedMailbox' -or $_.RecipientTypeDetails -eq 'SchedulingMailbox' }) - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($SharedMailboxList) { $SharedMailboxList | ForEach-Object { try { @@ -21,7 +21,7 @@ function Invoke-CIPPStandardDisableSharedMailbox { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($SharedMailboxList) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Shared mailboxes with enabled accounts: $($SharedMailboxList.Count)" -sev Alert @@ -30,7 +30,7 @@ function Invoke-CIPPStandardDisableSharedMailbox { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { Add-CIPPBPAField -FieldName 'DisableSharedMailbox' -FieldValue $SharedMailboxList -StoreAs json -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTNEF.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTNEF.ps1 index 20de2ee78eca..edf707f9fc76 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTNEF.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTNEF.ps1 @@ -6,10 +6,10 @@ function Invoke-CIPPStandardDisableTNEF { param ($Tenant, $Settings) $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-RemoteDomain' -cmdParams @{Identity = 'Default' } - - if ($Settings.remediate) { + + if ($Settings.remediate -eq $true) { 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 @@ -23,7 +23,7 @@ function Invoke-CIPPStandardDisableTNEF { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentState.TNEFEnabled -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'TNEF is disabled for Default Remote Domain' -sev Info } else { @@ -31,9 +31,9 @@ function Invoke-CIPPStandardDisableTNEF { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $State = if ($CurrentState.TNEFEnabled -ne $false) { $false } else { $true } - Add-CIPPBPAField -FieldName 'TNEFDisabled' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'TNEFDisabled' -FieldValue $State -StoreAs bool -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTenantCreation.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTenantCreation.ps1 index d7a57014edcd..15256d067a53 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTenantCreation.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableTenantCreation.ps1 @@ -7,7 +7,7 @@ function Invoke-CIPPStandardDisableTenantCreation { $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -tenantid $Tenant $State = $CurrentInfo.defaultUserRolePermissions.allowedToCreateTenants - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($State) { try { @@ -22,7 +22,7 @@ function Invoke-CIPPStandardDisableTenantCreation { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are already disabled from creating tenants.' -sev Info } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are allowed to create tenants.' -sev Alert @@ -30,7 +30,7 @@ function Invoke-CIPPStandardDisableTenantCreation { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Users are not allowed to create tenants.' -sev Info } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableTenantCreation' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableTenantCreation' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableUserSiteCreate.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableUserSiteCreate.ps1 index da501dac7956..28af706b7b54 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableUserSiteCreate.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableUserSiteCreate.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardDisableUserSiteCreate { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings' -tenantid $Tenant -AsApp $true - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($CurrentInfo.isSiteCreationEnabled) { try { $body = '{"isSiteCreationEnabled": false}' @@ -19,10 +19,10 @@ function Invoke-CIPPStandardDisableUserSiteCreate { } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Standard users are already disabled from creating sites' -sev Info } - + } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.isSiteCreationEnabled -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Standard users are not allowed to create sites' -sev Info @@ -31,7 +31,7 @@ function Invoke-CIPPStandardDisableUserSiteCreate { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableUserSiteCreate' -FieldValue [bool]$CurrentInfo.isSiteCreationEnabled -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableUserSiteCreate' -FieldValue $CurrentInfo.isSiteCreationEnabled -StoreAs bool -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableViva.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableViva.ps1 index 788e9204328f..63be3953e14e 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableViva.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableViva.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardDisableViva { param($Tenant, $Settings) $CurrentSetting = New-GraphGetRequest -Uri "https://graph.microsoft.com/beta/organization/$tenant/settings/peopleInsights" -tenantid $Tenant -AsApp $true - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($CurrentSetting.isEnabledInOrganization -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Viva is already disabled.' -sev Info @@ -21,7 +21,7 @@ function Invoke-CIPPStandardDisableViva { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentSetting.isEnabledInOrganization -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Viva is disabled' -sev Info @@ -30,8 +30,8 @@ function Invoke-CIPPStandardDisableViva { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableViva' -FieldValue [bool]$CurrentSetting.isEnabledInOrganization -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableViva' -FieldValue $CurrentSetting.isEnabledInOrganization -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableVoice.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableVoice.ps1 index 96c52b33e37c..0c064013b444 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableVoice.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisableVoice.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardDisableVoice { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/Voice' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($State) { Set-CIPPAuthenticationPolicy -Tenant $tenant -APIName 'Standards' -AuthenticationMethodId 'Voice' -Enabled $false } else { @@ -15,7 +15,7 @@ function Invoke-CIPPStandardDisableVoice { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Voice authentication method is enabled' -sev Alert } else { @@ -23,7 +23,7 @@ function Invoke-CIPPStandardDisableVoice { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'DisableVoice' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'DisableVoice' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisablex509Certificate.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisablex509Certificate.ps1 index c2da2547c1a5..d59042f1f6c8 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisablex509Certificate.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardDisablex509Certificate.ps1 @@ -6,16 +6,16 @@ function Invoke-CIPPStandardDisablex509Certificate { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/x509Certificate' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($State) { - Set-CIPPAuthenticationPolicy -Tenant $tenant -APIName 'Standards' -AuthenticationMethodId 'x509Certificate' -Enabled $false + Set-CIPPAuthenticationPolicy -Tenant $tenant -APIName 'Standards' -AuthenticationMethodId 'x509Certificate' -Enabled $false } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'x509Certificate authentication method is already disabled.' -sev Info } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'x509Certificate authentication method is enabled' -sev Alert } else { @@ -23,8 +23,8 @@ function Invoke-CIPPStandardDisablex509Certificate { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'Disablex509Certificate' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'Disablex509Certificate' -FieldValue $State -StoreAs bool -Tenant $tenant } - + } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableAppConsentRequests.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableAppConsentRequests.ps1 index 229db4b77171..604cc6044665 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableAppConsentRequests.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableAppConsentRequests.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardEnableAppConsentRequests { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/policies/adminConsentRequestPolicy' -tenantid $Tenant - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { try { # Get current state @@ -64,7 +64,7 @@ function Invoke-CIPPStandardEnableAppConsentRequests { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to enable App consent admin requests. Error: $($_.exception.message)" -sev Error } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.isEnabled -eq 'true') { Write-LogMessage -API 'Standards' -tenant $tenant -message 'App consent admin requests are enabled.' -sev Info @@ -72,7 +72,7 @@ function Invoke-CIPPStandardEnableAppConsentRequests { Write-LogMessage -API 'Standards' -tenant $tenant -message 'App consent admin requests are disabled' -sev Alert } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'EnableAppConsentAdminRequests' -FieldValue [bool]$CurrentInfo.isEnabled -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'EnableAppConsentAdminRequests' -FieldValue $CurrentInfo.isEnabled -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableCustomerLockbox.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableCustomerLockbox.ps1 index da29718d1147..891f0b02f04c 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableCustomerLockbox.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableCustomerLockbox.ps1 @@ -4,9 +4,9 @@ function Invoke-CIPPStandardEnableCustomerLockbox { Internal #> param($Tenant, $Settings) - + $CustomerLockboxStatus = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-OrganizationConfig').CustomerLockboxEnabled - if ($Settings.remediate) { + if ($Settings.remediate -eq $true) { try { if ($CustomerLockboxStatus) { @@ -22,7 +22,7 @@ function Invoke-CIPPStandardEnableCustomerLockbox { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CustomerLockboxStatus) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Customer Lockbox is enabled' -sev Info } else { @@ -30,7 +30,7 @@ function Invoke-CIPPStandardEnableCustomerLockbox { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'CustomerLockboxEnabled' -FieldValue [bool]$CustomerLockboxStatus -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'CustomerLockboxEnabled' -FieldValue $CustomerLockboxStatus -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableFIDO2.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableFIDO2.ps1 index 8fb8ff1a0544..d5d84aa3d8e6 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableFIDO2.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableFIDO2.ps1 @@ -7,8 +7,8 @@ function Invoke-CIPPStandardEnableFIDO2 { $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/Fido2' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'FIDO2 Support is already enabled.' -sev Info } else { @@ -16,8 +16,8 @@ function Invoke-CIPPStandardEnableFIDO2 { } } - - if ($Settings.alert) { + + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'FIDO2 Support is enabled' -sev Info @@ -26,8 +26,8 @@ function Invoke-CIPPStandardEnableFIDO2 { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'EnableFIDO2' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'EnableFIDO2' -FieldValue $State -StoreAs bool -Tenant $tenant } - + } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableHardwareOAuth.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableHardwareOAuth.ps1 index 53dc0eef1798..67b0cf7e7bc4 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableHardwareOAuth.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableHardwareOAuth.ps1 @@ -7,7 +7,7 @@ function Invoke-CIPPStandardEnableHardwareOAuth { $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/HardwareOath' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'HardwareOAuth Support is already enabled.' -sev Info @@ -15,9 +15,9 @@ function Invoke-CIPPStandardEnableHardwareOAuth { Set-CIPPAuthenticationPolicy -Tenant $tenant -APIName 'Standards' -AuthenticationMethodId 'HardwareOath' -Enabled $true } } - - if ($Settings.alert) { - + + if ($Settings.alert -eq $true) { + if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'HardwareOAuth Support is enabled' -sev Info } else { @@ -25,8 +25,8 @@ function Invoke-CIPPStandardEnableHardwareOAuth { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'EnableHardwareOAuth' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'EnableHardwareOAuth' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailTips.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailTips.ps1 index 47eb5a54118f..f115d78ed483 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailTips.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailTips.ps1 @@ -8,8 +8,8 @@ function Invoke-CIPPStandardEnableMailTips { $MailTipsState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-OrganizationConfig' | Select-Object MailTipsAllTipsEnabled, MailTipsExternalRecipientsTipsEnabled, MailTipsGroupMetricsEnabled, MailTipsLargeAudienceThreshold $StateIsCorrect = if ($MailTipsState.MailTipsAllTipsEnabled -and $MailTipsState.MailTipsExternalRecipientsTipsEnabled -and $MailTipsState.MailTipsGroupMetricsEnabled -and $MailTipsState.MailTipsLargeAudienceThreshold -eq $Settings.MailTipsLargeAudienceThreshold) { $true } else { $false } - if ($Settings.remediate) { - + if ($Settings.remediate -eq $true) { + if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'All MailTips are already enabled.' -sev Info } else { @@ -22,7 +22,7 @@ function Invoke-CIPPStandardEnableMailTips { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'All MailTips are enabled' -sev Info @@ -31,9 +31,9 @@ function Invoke-CIPPStandardEnableMailTips { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { - Add-CIPPBPAField -FieldName 'MailTipsEnabled' -FieldValue [bool]$StateIsCorrect -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'MailTipsEnabled' -FieldValue $StateIsCorrect -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 da98c6ac4cc5..4e8bce44e202 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailboxAuditing.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableMailboxAuditing.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardEnableMailboxAuditing { param($Tenant, $Settings) $AuditState = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-OrganizationConfig').AuditDisabled - if ($Settings.remediate) { + if ($Settings.remediate -eq $true) { if ($AuditState) { # Enable tenant level mailbox audit try { @@ -21,7 +21,7 @@ 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 = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-Mailbox' -cmdParams @{filter = "auditenabled -eq 'False'" } -useSystemMailbox $true -Select 'AuditEnabled,UserPrincipalName' $Request = $mailboxes | ForEach-Object { @{ CmdletInput = @{ @@ -40,13 +40,13 @@ function Invoke-CIPPStandardEnableMailboxAuditing { } # 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 } $Request = $BypassMailboxes | ForEach-Object { @{ CmdletInput = @{ CmdletName = 'Set-MailboxAuditBypassAssociation' - Parameters = @{Identity = $_.Guid; AuditBypassEnabled = $false } + Parameters = @{Identity = $_.Guid; AuditBypassEnabled = $false } } } } @@ -68,23 +68,23 @@ function Invoke-CIPPStandardEnableMailboxAuditing { } if ($BypassMailboxes.Count -eq 0) { 'Mailbox audit bypass already disabled for all mailboxes' - } + } } - + Write-LogMessage -API 'Standards' -tenant $Tenant -message $LogMessage -sev Info } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($AuditState) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Tenant level mailbox audit is not enabled' -sev Alert } else { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Tenant level mailbox audit is enabled' -sev Info } } - - if ($Settings.report) { + + if ($Settings.report -eq $true) { $AuditState = -not $AuditState - Add-CIPPBPAField -FieldName 'MailboxAuditingEnabled' -FieldValue [bool]$AuditState -StoreAs bool -Tenant $Tenant + Add-CIPPBPAField -FieldName 'MailboxAuditingEnabled' -FieldValue $AuditState -StoreAs bool -Tenant $Tenant } - + } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableOnlineArchiving.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableOnlineArchiving.ps1 index d961808b230b..6bdfb84af353 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableOnlineArchiving.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardEnableOnlineArchiving.ps1 @@ -6,12 +6,12 @@ function Invoke-CIPPStandardEnableOnlineArchiving { param($Tenant, $Settings) $MailboxPlans = @( 'ExchangeOnline', 'ExchangeOnlineEnterprise' ) - $MailboxesNoArchive = $MailboxPlans | ForEach-Object { - New-ExoRequest -tenantid $Tenant -cmdlet 'Get-Mailbox' -cmdparams @{ MailboxPlan = $_; Filter = 'ArchiveGuid -Eq "00000000-0000-0000-0000-000000000000" -AND RecipientTypeDetails -Eq "UserMailbox"' } + $MailboxesNoArchive = $MailboxPlans | ForEach-Object { + New-ExoRequest -tenantid $Tenant -cmdlet 'Get-Mailbox' -cmdparams @{ MailboxPlan = $_; Filter = 'ArchiveGuid -Eq "00000000-0000-0000-0000-000000000000" -AND RecipientTypeDetails -Eq "UserMailbox"' } Write-Host "Getting mailboxes without Online Archiving for plan $_" } - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($null -eq $MailboxesNoArchive) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Online Archiving already enabled for all accounts' -sev Info @@ -29,7 +29,7 @@ function Invoke-CIPPStandardEnableOnlineArchiving { $BatchResults = New-ExoBulkRequest -tenantid $tenant -cmdletArray $Request $BatchResults | ForEach-Object { if ($_.error) { - Write-Host "Failed to Enable Online Archiving for $($_.Target). Error: $($_.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 } } @@ -40,7 +40,7 @@ function Invoke-CIPPStandardEnableOnlineArchiving { } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($MailboxesNoArchive) { Write-LogMessage -API 'Standards' -tenant $Tenant -message "Mailboxes without Online Archiving: $($MailboxesNoArchive.Count)" -sev Alert @@ -49,7 +49,7 @@ function Invoke-CIPPStandardEnableOnlineArchiving { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $filtered = $MailboxesNoArchive | Select-Object -Property UserPrincipalName, ArchiveGuid Add-CIPPBPAField -FieldName 'EnableOnlineArchiving' -FieldValue $filtered -StoreAs json -Tenant $Tenant } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExConnector.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExConnector.ps1 index 9182323cda87..c3fa08403a21 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExConnector.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExConnector.ps1 @@ -4,13 +4,13 @@ function Invoke-CIPPStandardExConnector { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + $APINAME = 'Standards' foreach ($Template in $Settings.TemplateList) { try { $Table = Get-CippTable -tablename 'templates' - $Filter = "PartitionKey eq 'ExConnectorTemplate' and RowKey eq '$($Template.value)'" + $Filter = "PartitionKey eq 'ExConnectorTemplate' and RowKey eq '$($Template.value)'" $connectorType = (Get-AzDataTableEntity @Table -Filter $Filter).direction $RequestParams = (Get-AzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json $Existing = New-ExoRequest -ErrorAction SilentlyContinue -tenantid $Tenant -cmdlet "Get-$($ConnectorType)connector" | Where-Object -Property Identity -EQ $RequestParams.name diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExcludedfileExt.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExcludedfileExt.ps1 index 902fe7301a6f..46b5a16b03dc 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExcludedfileExt.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExcludedfileExt.ps1 @@ -9,7 +9,7 @@ function Invoke-CIPPStandardExcludedfileExt { # Add a wildcard to the extensions since thats what the SP admin center does $Exts = $Exts | ForEach-Object { if ($_ -notlike '*.*') { "*.$_" } else { $_ } } - + $MissingExclutions = foreach ($Exclusion in $Exts) { if ($Exclusion -notin $CurrentInfo.excludedFileExtensionsForSyncApp) { $Exclusion @@ -19,7 +19,7 @@ function Invoke-CIPPStandardExcludedfileExt { Write-Host "MissingExclutions: $($MissingExclutions)" - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { # If the number of extensions in the settings does not match the number of extensions in the current settings, we need to update the settings $MissingExclutions = if ($Exts.Count -ne $CurrentInfo.excludedFileExtensionsForSyncApp.Count) { $true } else { $MissingExclutions } @@ -38,7 +38,7 @@ function Invoke-CIPPStandardExcludedfileExt { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($MissingExclutions) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Excluded synced files does not contain $($MissingExclutions -join ',')" -sev Alert @@ -47,7 +47,7 @@ function Invoke-CIPPStandardExcludedfileExt { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { Add-CIPPBPAField -FieldName 'ExcludedfileExt' -FieldValue $CurrentInfo.excludedFileExtensionsForSyncApp -StoreAs json -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExternalMFATrusted.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExternalMFATrusted.ps1 index 3b9df5cfb779..6b94e6084f49 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExternalMFATrusted.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardExternalMFATrusted.ps1 @@ -9,7 +9,7 @@ function Invoke-CIPPStandardExternalMFATrusted { $WantedState = if ($Settings.state -eq 'true') { $true } else { $false } $StateMessage = if ($WantedState) { 'enabled' } else { 'disabled' } - if ($Settings.remediate) { + if ($Settings.remediate -eq $true) { Write-Host 'Remediate External MFA Trusted' if ($ExternalMFATrusted.inboundTrust.isMfaAccepted -eq $WantedState ) { @@ -27,7 +27,7 @@ function Invoke-CIPPStandardExternalMFATrusted { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($ExternalMFATrusted.inboundTrust.isMfaAccepted -eq $WantedState) { Write-LogMessage -API 'Standards' -tenant $tenant -message "External MFA Trusted is $StateMessage." -sev Info @@ -37,8 +37,8 @@ function Invoke-CIPPStandardExternalMFATrusted { } - if ($Settings.report) { + if ($Settings.report -eq $true) { - Add-CIPPBPAField -FieldName 'ExternalMFATrusted' -FieldValue [bool]$ExternalMFATrusted.inboundTrust.isMfaAccepted -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'ExternalMFATrusted' -FieldValue $ExternalMFATrusted.inboundTrust.isMfaAccepted -StoreAs bool -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardFocusedInbox.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardFocusedInbox.ps1 index f0f2b9956d35..0da2ddbedc03 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardFocusedInbox.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardFocusedInbox.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardFocusedInbox { 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 @@ -12,13 +12,13 @@ function Invoke-CIPPStandardFocusedInbox { } $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) { + if ($Settings.remediate -eq $true) { 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 { @@ -32,7 +32,7 @@ function Invoke-CIPPStandardFocusedInbox { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($StateIsCorrect -eq $true) { Write-LogMessage -API 'Standards' -tenant $Tenant -message "Focused Inbox is set to $($Settings.state)." -sev Info @@ -41,7 +41,7 @@ function Invoke-CIPPStandardFocusedInbox { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'FocusedInboxCorrectState' -FieldValue [bool]$StateIsCorrect -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'FocusedInboxCorrectState' -FieldValue $StateIsCorrect -StoreAs bool -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardGroupTemplate.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardGroupTemplate.ps1 index e2809c6f4bd9..9c90f355a04c 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardGroupTemplate.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardGroupTemplate.ps1 @@ -4,18 +4,18 @@ function Invoke-CIPPStandardGroupTemplate { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + foreach ($Template in $Settings.TemplateList) { try { $Table = Get-CippTable -tablename 'templates' - $Filter = "PartitionKey eq 'GroupTemplate' and RowKey eq '$($Template.value)'" + $Filter = "PartitionKey eq 'GroupTemplate' and RowKey eq '$($Template.value)'" $groupobj = (Get-AzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json $email = if ($groupobj.domain) { "$($groupobj.username)@$($groupobj.domain)" } else { "$($groupobj.username)@$($Tenant)" } $CheckExististing = New-GraphGETRequest -uri 'https://graph.microsoft.com/beta/groups' -tenantid $tenant | Where-Object -Property displayName -EQ $groupobj.displayname if (!$CheckExististing) { if ($groupobj.groupType -in 'Generic', 'azurerole', 'dynamic') { - + $BodyToship = [pscustomobject] @{ 'displayName' = $groupobj.Displayname 'description' = $groupobj.Description @@ -24,7 +24,7 @@ function Invoke-CIPPStandardGroupTemplate { securityEnabled = [bool]$true isAssignableToRole = [bool]($groupobj | Where-Object -Property groupType -EQ 'AzureRole') - } + } if ($groupobj.membershipRules) { $BodyToship | Add-Member -NotePropertyName 'membershipRule' -NotePropertyValue ($groupobj.membershipRules) $BodyToship | Add-Member -NotePropertyName 'groupTypes' -NotePropertyValue @('DynamicMembership') @@ -33,14 +33,14 @@ function Invoke-CIPPStandardGroupTemplate { $GraphRequest = New-GraphPostRequest -uri 'https://graph.microsoft.com/beta/groups' -tenantid $tenant -type POST -body (ConvertTo-Json -InputObject $BodyToship -Depth 10) -verbose } else { if ($groupobj.groupType -eq 'dynamicdistribution') { - $Params = @{ + $Params = @{ Name = $groupobj.Displayname RecipientFilter = $groupobj.membershipRules PrimarySmtpAddress = $email } $GraphRequest = New-ExoRequest -tenantid $tenant -cmdlet 'New-DynamicDistributionGroup' -cmdParams $params } else { - $Params = @{ + $Params = @{ Name = $groupobj.Displayname Alias = $groupobj.username Description = $groupobj.Description diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardIntuneTemplate.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardIntuneTemplate.ps1 index 9b17f9dd3b6b..ac65df6ff388 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardIntuneTemplate.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardIntuneTemplate.ps1 @@ -4,15 +4,15 @@ function Invoke-CIPPStandardIntuneTemplate { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + Write-Host 'starting template deploy' $APINAME = 'Standards' foreach ($Template in $Settings.TemplateList) { Write-Host 'working on template deploy' try { $Table = Get-CippTable -tablename 'templates' - $Filter = "PartitionKey eq 'IntuneTemplate'" + $Filter = "PartitionKey eq 'IntuneTemplate'" $Request = @{body = $null } $Request.body = (Get-AzDataTableEntity @Table -Filter $Filter | Where-Object -Property RowKey -Like "$($template.value)*").JSON | ConvertFrom-Json $displayname = $request.body.Displayname @@ -34,7 +34,7 @@ function Invoke-CIPPStandardIntuneTemplate { 'deviceCompliancePolicies' { $TemplateTypeURL = 'deviceCompliancePolicies' $CheckExististing = New-GraphGETRequest -uri "https://graph.microsoft.com/beta/deviceManagement/$TemplateTypeURL" -tenantid $tenant - + $JSON = $RawJSON | ConvertFrom-Json | Select-Object * -ExcludeProperty id, createdDateTime, lastModifiedDateTime, version, 'scheduledActionsForRule@odata.context', '@odata.context' $JSON.scheduledActionsForRule = @($JSON.scheduledActionsForRule | Select-Object * -ExcludeProperty 'scheduledActionConfigurations@odata.context') $RawJSON = ConvertTo-Json -InputObject $JSON -Depth 20 -Compress @@ -42,8 +42,11 @@ function Invoke-CIPPStandardIntuneTemplate { if ($displayname -in $CheckExististing.displayName) { $ExistingID = $CheckExististing | Where-Object -Property displayName -EQ $PolicyName $CreateRequest = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/$TemplateTypeURL/$($ExistingID.Id)" -tenantid $tenant -type PATCH -body $RawJSON + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($Tenant) -message "Updated policy $($PolicyName) to template defaults" -Sev 'info' + } else { + $CreateRequest = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/$TemplateTypeURL" -tenantid $tenant -type POST -body $RawJSON + Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($Tenant) -message "Added policy $($PolicyName) via template" -Sev 'info' } - $CreateRequest = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/$TemplateTypeURL" -tenantid $tenant -type POST -body $RawJson } 'Admin' { $TemplateTypeURL = 'groupPolicyConfigurations' @@ -76,7 +79,7 @@ function Invoke-CIPPStandardIntuneTemplate { $CreateRequest = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/$TemplateTypeURL/$($ExistingID.Id)" -tenantid $tenant -type PATCH -body $RawJSON Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($Tenant) -message "Updated policy $($PolicyName) to template defaults" -Sev 'info' - } else { + } else { $CreateRequest = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/deviceManagement/$TemplateTypeURL" -tenantid $tenant -type POST -body $RawJSON Write-LogMessage -user $request.headers.'x-ms-client-principal' -API $APINAME -tenant $($Tenant) -message "Added policy $($PolicyName) via template" -Sev 'info' diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMailContacts.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMailContacts.ps1 index 09b58fe0671a..bbd3bcc18b08 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMailContacts.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMailContacts.ps1 @@ -9,11 +9,11 @@ function Invoke-CIPPStandardMailContacts { $contacts = $settings $TechAndSecurityContacts = @($Contacts.SecurityContact, $Contacts.TechContact) - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + # TODO: Make this smaller if possible if ($CurrentInfo.marketingNotificationEmails -eq $Contacts.MarketingContact -and ` - ($CurrentInfo.securityComplianceNotificationMails -in $TechAndSecurityContacts -or + ($CurrentInfo.securityComplianceNotificationMails -in $TechAndSecurityContacts -or $CurrentInfo.technicalNotificationMails -in $TechAndSecurityContacts) -and ` $CurrentInfo.privacyProfile.contactEmail -eq $Contacts.GeneralContact) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Contact emails are already set.' -sev Info @@ -34,7 +34,7 @@ function Invoke-CIPPStandardMailContacts { } } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.marketingNotificationEmails -eq $Contacts.MarketingContact) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Marketing contact email is set to $($Contacts.MarketingContact)" -sev Info @@ -58,7 +58,7 @@ function Invoke-CIPPStandardMailContacts { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { Add-CIPPBPAField -FieldName 'MailContacts' -FieldValue $CurrentInfo -StoreAs json -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 index 4cc12c448c7a..614ca0d32442 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMalwareFilterPolicy.ps1 @@ -7,12 +7,12 @@ function Invoke-CIPPStandardMalwareFilterPolicy { param($Tenant, $Settings) $PolicyName = 'Default Malware Policy' - $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-MalwareFilterPolicy' | - Where-Object -Property Name -EQ $PolicyName | + $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.EnableFileFilter -eq $true) -and ($CurrentState.FileTypeAction -eq $Settings.FileTypeAction) -and ($CurrentState.ZapEnabled -eq $true) -and ($CurrentState.QuarantineTag -eq $Settings.QuarantineTag) -and @@ -21,8 +21,8 @@ function Invoke-CIPPStandardMalwareFilterPolicy { ($CurrentState.EnableExternalSenderAdminNotifications -eq $Settings.EnableExternalSenderAdminNotifications) -and (($null -eq $Settings.ExternalSenderAdminAddress) -or ($CurrentState.ExternalSenderAdminAddress -eq $Settings.ExternalSenderAdminAddress)) - if ($Settings.remediate) { - + if ($Settings.remediate -eq $true) { + if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Malware Filter Policy already correctly configured' -sev Info } else { @@ -53,7 +53,7 @@ function Invoke-CIPPStandardMalwareFilterPolicy { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Malware Filter Policy is enabled' -sev Info @@ -62,8 +62,8 @@ function Invoke-CIPPStandardMalwareFilterPolicy { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'MalwareFilterPolicy' -FieldValue [bool]$StateIsCorrect -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'MalwareFilterPolicy' -FieldValue $StateIsCorrect -StoreAs bool -Tenant $tenant } - + } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMessageExpiration.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMessageExpiration.ps1 index 3099f7bd7dc3..820486c52ef3 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMessageExpiration.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardMessageExpiration.ps1 @@ -4,10 +4,10 @@ function Invoke-CIPPStandardMessageExpiration { Internal #> param($Tenant, $Settings) - + $MessageExpiration = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-TransportConfig').messageExpiration - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { Write-Host 'Time to remediate' if ($MessageExpiration -ne '12:00:00') { try { @@ -20,17 +20,17 @@ function Invoke-CIPPStandardMessageExpiration { } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Transport configuration message expiration is already set to 12 hours' -sev Info } - + } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($MessageExpiration -ne '12:00:00') { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Transport configuration message expiration is set to 12 hours' -sev Info } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Transport configuration message expiration is not set to 12 hours' -sev Alert } } - if ($Settings.report) { + if ($Settings.report -eq $true) { if ($MessageExpiration -ne '12:00:00') { $MessageExpiration = $false } else { $MessageExpiration = $true } - Add-CIPPBPAField -FieldName 'messageExpiration' -FieldValue [bool]$MessageExpiration -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'messageExpiration' -FieldValue $MessageExpiration -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardModernAuth.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardModernAuth.ps1 index 51c25c4da8b9..5439b0fb4ea4 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardModernAuth.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardModernAuth.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardModernAuth { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Modern Authentication is enabled by default. This standard is no longer required.' -sev Info } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardNudgeMFA.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardNudgeMFA.ps1 index a022bea6f0f6..d8ac22ff9cc1 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardNudgeMFA.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardNudgeMFA.ps1 @@ -7,7 +7,7 @@ function Invoke-CIPPStandardNudgeMFA { $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy' -tenantid $Tenant $State = if ($CurrentInfo.registrationEnforcement.authenticationMethodsRegistrationCampaign.state -eq 'enabled') { $true } else { $false } - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($Settings.state -ne $CurrentInfo.registrationEnforcement.authenticationMethodsRegistrationCampaign.state -or $Settings.snoozeDurationInDays -ne $CurrentInfo.registrationEnforcement.authenticationMethodsRegistrationCampaign.snoozeDurationInDays) { try { @@ -28,7 +28,7 @@ function Invoke-CIPPStandardNudgeMFA { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Authenticator App Nudge is enabled with a snooze duration of $($CurrentInfo.registrationEnforcement.authenticationMethodsRegistrationCampaign.snoozeDurationInDays)" -sev Info @@ -36,8 +36,8 @@ function Invoke-CIPPStandardNudgeMFA { Write-LogMessage -API 'Standards' -tenant $tenant -message "Authenticator App Nudge is not enabled with a snooze duration of $($CurrentInfo.registrationEnforcement.authenticationMethodsRegistrationCampaign.snoozeDurationInDays)" -sev Alert } } - - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'NudgeMFA' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'NudgeMFA' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOauthConsent.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOauthConsent.ps1 index e9889299cdfd..6f7f89afa33f 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOauthConsent.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOauthConsent.ps1 @@ -3,16 +3,16 @@ function Invoke-CIPPStandardOauthConsent { .FUNCTIONALITY Internal #> - param($tenant, $settings) + param($tenant, $settings) $State = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -tenantid $tenant - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { $AllowedAppIdsForTenant = $Settings.AllowedApps -split ',' try { if ($State.permissionGrantPolicyIdsAssignedToDefaultUserRole -notin @('ManagePermissionGrantsForSelf.cipp-1sent-policy')) { $Existing = (New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/permissionGrantPolicies/' -tenantid $tenant) | Where-Object -Property id -EQ 'cipp-consent-policy' if (!$Existing) { - New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/permissionGrantPolicies' -Type POST -Body '{ "id":"cipp-consent-policy", "displayName":"Application Consent Policy", "description":"This policy controls the current application consent policies."}' -ContentType 'application/json' + New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/permissionGrantPolicies' -Type POST -Body '{ "id":"cipp-consent-policy", "displayName":"Application Consent Policy", "description":"This policy controls the current application consent policies."}' -ContentType 'application/json' New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/permissionGrantPolicies/cipp-consent-policy/includes' -Type POST -Body '{"permissionClassification":"all","permissionType":"delegated","clientApplicationIds":["d414ee2d-73e5-4e5b-bb16-03ef55fea597"]}' -ContentType 'application/json' } try { @@ -34,7 +34,7 @@ function Invoke-CIPPStandardOauthConsent { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to apply Application Consent Mode Error: $($_.exception.message)" -sev Error } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State.permissionGrantPolicyIdsAssignedToDefaultUserRole -eq 'managePermissionGrantsForSelf.cipp-consent-policy') { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Application Consent Mode is enabled.' -sev Info @@ -42,8 +42,8 @@ function Invoke-CIPPStandardOauthConsent { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Application Consent Mode is not enabled.' -sev Alert } } - if ($Settings.report) { + if ($Settings.report -eq $true) { if ($State.permissionGrantPolicyIdsAssignedToDefaultUserRole -eq 'managePermissionGrantsForSelf.cipp-consent-policy') { $UserQuota = $true } else { $UserQuota = $false } - Add-CIPPBPAField -FieldName 'OauthConsent' -FieldValue [bool]$UserQuota -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'OauthConsent' -FieldValue $UserQuota -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOauthConsentLowSec.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOauthConsentLowSec.ps1 index e0f627a41ddc..f9acb24fd399 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOauthConsentLowSec.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOauthConsentLowSec.ps1 @@ -5,7 +5,7 @@ function Invoke-CIPPStandardOauthConsentLowSec { #> param($Tenant, $Settings) $State = (New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy' -tenantid $tenant) - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { try { if ($State.permissionGrantPolicyIdsAssignedToDefaultUserRole -notin @('managePermissionGrantsForSelf.microsoft-user-default-low')) { Write-Host 'Going to set' @@ -16,7 +16,7 @@ function Invoke-CIPPStandardOauthConsentLowSec { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to apply Application Consent Mode (microsoft-user-default-low) Error: $($_.exception.message)" -sev Error } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State.permissionGrantPolicyIdsAssignedToDefaultUserRole -notin @('managePermissionGrantsForSelf.microsoft-user-default-low')) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Application Consent Mode(microsoft-user-default-low) is not enabled.' -sev Alert @@ -24,12 +24,12 @@ function Invoke-CIPPStandardOauthConsentLowSec { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Application Consent Mode(microsoft-user-default-low) is enabled.' -sev Info } } - if ($Settings.report) { + if ($Settings.report -eq $true) { if ($State.permissionGrantPolicyIdsAssignedToDefaultUserRole -notin @('managePermissionGrantsForSelf.microsoft-user-default-low')) { $State.permissionGrantPolicyIdsAssignedToDefaultUserRole = $false } else { $State.permissionGrantPolicyIdsAssignedToDefaultUserRole = $true } - Add-CIPPBPAField -FieldName 'OauthConsentLowSec' -FieldValue [bool]$State.permissionGrantPolicyIdsAssignedToDefaultUserRole -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'OauthConsentLowSec' -FieldValue $State.permissionGrantPolicyIdsAssignedToDefaultUserRole -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOutBoundSpamAlert.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOutBoundSpamAlert.ps1 index 9758a8c40b76..5c2d82854118 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOutBoundSpamAlert.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardOutBoundSpamAlert.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardOutBoundSpamAlert { param($Tenant, $Settings) $CurrentInfo = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-HostedOutboundSpamFilterPolicy' -useSystemMailbox $true - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($CurrentInfo.NotifyOutboundSpam -ne $true -or $CurrentInfo.NotifyOutboundSpamRecipients -ne $settings.OutboundSpamContact) { $Contacts = $settings.OutboundSpamContact try { @@ -21,7 +21,7 @@ function Invoke-CIPPStandardOutBoundSpamAlert { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.NotifyOutboundSpam -eq $true) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Outbound spam filter alert is set to $($CurrentInfo.NotifyOutboundSpamRecipients)" -sev Info @@ -30,7 +30,7 @@ function Invoke-CIPPStandardOutBoundSpamAlert { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'OutboundSpamAlert' -FieldValue [bool]$CurrentInfo.NotifyOutboundSpam -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'OutboundSpamAlert' -FieldValue $CurrentInfo.NotifyOutboundSpam -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPWcompanionAppAllowedState.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPWcompanionAppAllowedState.ps1 index ae8dad7d31ea..02c2b337e7d0 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPWcompanionAppAllowedState.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPWcompanionAppAllowedState.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardPWcompanionAppAllowedState { param($Tenant, $Settings) $authenticatorFeaturesState = (New-GraphGetRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/microsoftAuthenticator' -Type GET) $authstate = if ($authenticatorFeaturesState.featureSettings.companionAppAllowedState.state -eq 'enabled') { $true } else { $false } - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($authenticatorFeaturesState.featureSettings.companionAppAllowedState.state -eq $Settings.state) { Write-LogMessage -API 'Standards' -tenant $tenant -message "companionAppAllowedState is already set to the desired state of $($Settings.state)." -sev Info @@ -37,7 +37,7 @@ function Invoke-CIPPStandardPWcompanionAppAllowedState { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($authstate) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'companionAppAllowedState is enabled.' -sev Info @@ -46,7 +46,7 @@ function Invoke-CIPPStandardPWcompanionAppAllowedState { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'companionAppAllowedState' -FieldValue [bool]$authstate -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'companionAppAllowedState' -FieldValue $authstate -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPWdisplayAppInformationRequiredState.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPWdisplayAppInformationRequiredState.ps1 index 78d183b10e27..5c23a6763f8f 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPWdisplayAppInformationRequiredState.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPWdisplayAppInformationRequiredState.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardPWdisplayAppInformationRequiredState { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/microsoftAuthenticator' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Passwordless with Information and Number Matching is already enabled.' -sev Info } else { @@ -15,7 +15,7 @@ function Invoke-CIPPStandardPWdisplayAppInformationRequiredState { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Passwordless with Information and Number Matching is enabled.' -sev Info } else { @@ -23,7 +23,7 @@ function Invoke-CIPPStandardPWdisplayAppInformationRequiredState { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'PWdisplayAppInformationRequiredState' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'PWdisplayAppInformationRequiredState' -FieldValue $State -StoreAs bool -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPasswordExpireDisabled.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPasswordExpireDisabled.ps1 index 47cdc60712c8..b6e28f20a7b3 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPasswordExpireDisabled.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPasswordExpireDisabled.ps1 @@ -7,7 +7,7 @@ function Invoke-CIPPStandardPasswordExpireDisabled { $GraphRequest = New-GraphGetRequest -uri 'https://graph.microsoft.com/v1.0/domains' -tenantid $Tenant $DomainswithoutPassExpire = $GraphRequest | Where-Object -Property passwordValidityPeriodInDays -NE '2147483647' - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($DomainswithoutPassExpire) { $DomainswithoutPassExpire | ForEach-Object { @@ -27,10 +27,10 @@ function Invoke-CIPPStandardPasswordExpireDisabled { } else { Write-LogMessage -API 'Standards' -tenant $tenant -message "Password Expiration is already disabled for all $($GraphRequest.Count) domains." -sev Info } - + } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($DomainswithoutPassExpire) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Password Expiration is not disabled for the following $($DomainswithoutPassExpire.Count) domains: $($DomainswithoutPassExpire.id -join ', ')" -sev Alert } else { @@ -38,7 +38,7 @@ function Invoke-CIPPStandardPasswordExpireDisabled { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { Add-CIPPBPAField -FieldName 'PasswordExpireDisabled' -FieldValue $DomainswithoutPassExpire -StoreAs json -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPhishProtection.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPhishProtection.ps1 index b406b8100a85..8e8a764c65bd 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPhishProtection.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardPhishProtection.ps1 @@ -4,7 +4,7 @@ function Invoke-CIPPStandardPhishProtection { Internal #> param($Tenant, $Settings) - $TenantId = Get-Tenants | Where-Object -Property defaultDomainName -EQ $tenant + $TenantId = Get-Tenants | Where-Object -Property defaultDomainName -EQ $tenant try { $currentBody = (New-GraphGetRequest -Uri "https://graph.microsoft.com/beta/organization/$($TenantId.customerId)/branding/localizations/0/customCSS" -tenantid $tenant) @@ -16,16 +16,16 @@ function Invoke-CIPPStandardPhishProtection { background-image: url($($Settings.URL)/api/PublicPhishingCheck?Tenantid=$($tenant)); } "@ - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + try { if (!$currentBody) { $AddedHeaders = @{'Accept-Language' = 0 } $defaultBrandingBody = '{"usernameHintText":null,"signInPageText":null,"backgroundColor":null,"customPrivacyAndCookiesText":null,"customCannotAccessYourAccountText":null,"customForgotMyPasswordText":null,"customTermsOfUseText":null,"loginPageLayoutConfiguration":{"layoutTemplateType":"default","isFooterShown":true,"isHeaderShown":false},"loginPageTextVisibilitySettings":{"hideAccountResetCredentials":false,"hideTermsOfUse":true,"hidePrivacyAndCookies":true},"contentCustomization":{"conditionalAccess":[],"attributeCollection":[]}}' try { New-GraphPostRequest -tenantid $tenant -Uri "https://graph.microsoft.com/beta/organization/$($TenantId.customerId)/branding/localizations/" -ContentType 'application/json' -asApp $true -Type POST -Body $defaultBrandingBody -AddedHeaders $AddedHeaders - } catch { - + } catch { + } } if ($currentBody -like "*$CSS*") { @@ -43,15 +43,15 @@ function Invoke-CIPPStandardPhishProtection { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($currentBody -like "*$CSS*") { Write-LogMessage -API 'Standards' -tenant $tenant -message 'PhishProtection is enabled.' -sev Info } else { Write-LogMessage -API 'Standards' -tenant $tenant -message 'PhishProtection is not enabled.' -sev Alert } } - if ($Settings.report) { + if ($Settings.report -eq $true) { if ($currentBody -like "*$CSS*") { $authstate = $true } else { $authstate = $false } - Add-CIPPBPAField -FieldName 'PhishProtection' -FieldValue [bool]$authstate -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'PhishProtection' -FieldValue $authstate -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardRotateDKIM.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardRotateDKIM.ps1 index 17236da05fdf..b6eb1bcbd322 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardRotateDKIM.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardRotateDKIM.ps1 @@ -4,9 +4,9 @@ function Invoke-CIPPStandardRotateDKIM { Internal #> param($Tenant, $Settings) - $DKIM = (New-ExoRequest -tenantid $tenant -cmdlet 'Get-DkimSigningConfig') | Where-Object { $_.Selector1KeySize -Eq 1024 -and $_.Enabled -eq $true } + $DKIM = (New-ExoRequest -tenantid $tenant -cmdlet 'Get-DkimSigningConfig') | Where-Object { $_.Selector1KeySize -Eq 1024 -and $_.Enabled -eq $true } - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($DKIM) { $DKIM | ForEach-Object { @@ -23,7 +23,7 @@ function Invoke-CIPPStandardRotateDKIM { } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($DKIM) { Write-LogMessage -API 'Standards' -tenant $tenant -message "DKIM is not rotated for $($DKIM.Identity -join ';')" -sev Alert } else { @@ -31,7 +31,7 @@ function Invoke-CIPPStandardRotateDKIM { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { Add-CIPPBPAField -FieldName 'DKIM' -FieldValue $DKIM -StoreAs json -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 index 906f027930f2..dcfea2914646 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeAttachmentPolicy.ps1 @@ -7,8 +7,8 @@ function Invoke-CIPPStandardSafeAttachmentPolicy { param($Tenant, $Settings) $PolicyName = 'Default Safe Attachment Policy' - $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-SafeAttachmentPolicy' | - Where-Object -Property Name -EQ $PolicyName | + $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 @@ -17,8 +17,8 @@ function Invoke-CIPPStandardSafeAttachmentPolicy { ($CurrentState.Redirect -eq $Settings.Redirect) -and (($null -eq $Settings.RedirectAddress) -or ($CurrentState.RedirectAddress -eq $Settings.RedirectAddress)) - if ($Settings.remediate) { - + if ($Settings.remediate -eq $true) { + if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Safe Attachment Policy already correctly configured' -sev Info } else { @@ -45,7 +45,7 @@ function Invoke-CIPPStandardSafeAttachmentPolicy { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Safe Attachment Policy is enabled' -sev Info @@ -54,8 +54,8 @@ function Invoke-CIPPStandardSafeAttachmentPolicy { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'SafeAttachmentPolicy' -FieldValue [bool]$StateIsCorrect -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'SafeAttachmentPolicy' -FieldValue $StateIsCorrect -StoreAs bool -Tenant $tenant } - + } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeLinksPolicy.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeLinksPolicy.ps1 index f3560f7a9fcc..9fb55e32e795 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeLinksPolicy.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeLinksPolicy.ps1 @@ -6,25 +6,25 @@ function Invoke-CIPPStandardSafeLinksPolicy { param($Tenant, $Settings) $PolicyName = 'Default SafeLinks Policy' - - $CurrentState = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-SafeLinksPolicy' | - Where-Object -Property Name -EQ $PolicyName | + + $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 $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.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 ($Settings.remediate -eq $true) { + if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'SafeLink Policy already correctly configured' -sev Info } else { @@ -57,7 +57,7 @@ function Invoke-CIPPStandardSafeLinksPolicy { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'SafeLink Policy is enabled' -sev Info @@ -66,8 +66,8 @@ function Invoke-CIPPStandardSafeLinksPolicy { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'SafeLinksPolicy' -FieldValue [bool]$StateIsCorrect -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'SafeLinksPolicy' -FieldValue $StateIsCorrect -StoreAs bool -Tenant $tenant } - + } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeSendersDisable.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeSendersDisable.ps1 index 5563e3d5d4e4..04a5a63543c2 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeSendersDisable.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSafeSendersDisable.ps1 @@ -5,7 +5,7 @@ function Invoke-CIPPStandardSafeSendersDisable { #> param($Tenant, $Settings) - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { try { $Mailboxes = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-Mailbox' | ForEach-Object { try { @@ -14,11 +14,11 @@ function Invoke-CIPPStandardSafeSendersDisable { } catch { Write-LogMessage -API 'Standards' -tenant $tenant -message "Could not disbale SafeSenders list for $($username): $($_.Exception.message)" -sev Warn } - } + } Write-LogMessage -API 'Standards' -tenant $tenant -message 'Safe Senders disabled' -sev Info } catch { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to disable SafeSenders. Error: $($_.exception.message)" -sev Error } } - + } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSecurityDefaults.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSecurityDefaults.ps1 index 0c92a0829b60..3b5d2acb4001 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSecurityDefaults.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSecurityDefaults.ps1 @@ -5,14 +5,14 @@ function Invoke-CIPPStandardSecurityDefaults { #> param($Tenant, $Settings) $SecureDefaultsState = (New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/identitySecurityDefaultsEnforcementPolicy' -tenantid $tenant) - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($SecureDefaultsState.IsEnabled -ne $true) { try { Write-Host "Secure Defaults is disabled. Enabling for $tenant" -ForegroundColor Yellow $body = '{ "isEnabled": true }' $null = New-GraphPostRequest -tenantid $tenant -Uri 'https://graph.microsoft.com/beta/policies/identitySecurityDefaultsEnforcementPolicy' -Type patch -Body $body -ContentType 'application/json' - + Write-LogMessage -API 'Standards' -tenant $tenant -message 'Enabled Security Defaults.' -sev Info } catch { Write-LogMessage -API 'Standards' -tenant $tenant -message "Failed to enable Security Defaults. Error: $($_.exception.message)" -sev Error @@ -22,7 +22,7 @@ function Invoke-CIPPStandardSecurityDefaults { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($SecureDefaultsState.IsEnabled -eq $true) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Security Defaults is enabled.' -sev Info } else { @@ -30,7 +30,7 @@ function Invoke-CIPPStandardSecurityDefaults { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'SecurityDefaults' -FieldValue [bool]$SecureDefaultsState.IsEnabled -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'SecurityDefaults' -FieldValue $SecureDefaultsState.IsEnabled -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSendFromAlias.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSendFromAlias.ps1 index 6d465e0b51f8..b98708679fa1 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSendFromAlias.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSendFromAlias.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardSendFromAlias { param($Tenant, $Settings) $CurrentInfo = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-OrganizationConfig').SendFromAliasEnabled - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($CurrentInfo -eq $false) { try { New-ExoRequest -tenantid $Tenant -cmdlet 'Set-OrganizationConfig' -cmdParams @{ SendFromAliasEnabled = $true } @@ -20,7 +20,7 @@ function Invoke-CIPPStandardSendFromAlias { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo -eq $true) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Send from alias is enabled.' -sev Info } else { @@ -28,7 +28,7 @@ function Invoke-CIPPStandardSendFromAlias { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'SendFromAlias' -FieldValue [bool]$CurrentInfo -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'SendFromAlias' -FieldValue $CurrentInfo -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSendReceiveLimitTenant.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSendReceiveLimitTenant.ps1 index e430e96a0f93..90924c9028bd 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSendReceiveLimitTenant.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSendReceiveLimitTenant.ps1 @@ -7,7 +7,7 @@ function Invoke-CIPPStandardSendReceiveLimitTenant { $AllMailBoxPlans = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-MailboxPlan' | Select-Object DisplayName, MaxSendSize, MaxReceiveSize, GUID $MaxSendSize = [int64]"$($Settings.SendLimit)MB" $MaxReceiveSize = [int64]"$($Settings.ReceiveLimit)MB" - + $NotSetCorrectly = foreach ($MailboxPlan in $AllMailBoxPlans) { $PlanMaxSendSize = [int64]($MailboxPlan.MaxSendSize -replace '.*\(([\d,]+).*', '$1' -replace ',', '') $PlanMaxReceiveSize = [int64]($MailboxPlan.MaxReceiveSize -replace '.*\(([\d,]+).*', '$1' -replace ',', '') @@ -16,14 +16,14 @@ function Invoke-CIPPStandardSendReceiveLimitTenant { } } - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { Write-Host "Time to remediate. Our Settings are $($Settings.SendLimit)MB and $($Settings.ReceiveLimit)MB" if ($NotSetCorrectly.Count -gt 0) { Write-Host "Found $($NotSetCorrectly.Count) Mailbox Plans that are not set correctly. Setting them to $($Settings.SendLimit)MB and $($Settings.ReceiveLimit)MB" try { - foreach ($MailboxPlan in $NotSetCorrectly) { - New-ExoRequest -tenantid $Tenant -cmdlet 'Set-MailboxPlan' -cmdParams @{Identity = $MailboxPlan.GUID; MaxSendSize = $MaxSendSize; MaxReceiveSize = $MaxReceiveSize } -useSystemMailbox $true + foreach ($MailboxPlan in $NotSetCorrectly) { + New-ExoRequest -tenantid $Tenant -cmdlet 'Set-MailboxPlan' -cmdParams @{Identity = $MailboxPlan.GUID; MaxSendSize = $MaxSendSize; MaxReceiveSize = $MaxReceiveSize } -useSystemMailbox $true } Write-LogMessage -API 'Standards' -tenant $tenant -message "Successfully set the tenant send($($Settings.SendLimit)MB) and receive($($Settings.ReceiveLimit)MB) limits" -sev Info } catch { @@ -34,7 +34,7 @@ function Invoke-CIPPStandardSendReceiveLimitTenant { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($NotSetCorrectly.Count -eq 0) { Write-LogMessage -API 'Standards' -tenant $tenant -message "The tenant send($($Settings.SendLimit)MB) and receive($($Settings.ReceiveLimit)MB) limits are set correctly" -sev Info @@ -43,7 +43,7 @@ function Invoke-CIPPStandardSendReceiveLimitTenant { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { Add-CIPPBPAField -FieldName 'SendReceiveLimit' -FieldValue $NotSetCorrectly -StoreAs json -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSpoofWarn.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSpoofWarn.ps1 index a2613c4d0f3d..f18f805ce086 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSpoofWarn.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardSpoofWarn.ps1 @@ -5,8 +5,8 @@ function Invoke-CIPPStandardSpoofWarn { #> param($Tenant, $Settings) $CurrentInfo = (New-ExoRequest -tenantid $Tenant -cmdlet 'Get-ExternalInOutlook') - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { $status = if ($Settings.enable -and $Settings.disable) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'You cannot both enable and disable the Spoof Warnings setting' -sev Error Exit @@ -24,7 +24,7 @@ function Invoke-CIPPStandardSpoofWarn { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.Enabled -eq $true) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Outlook external spoof warnings are enabled.' -sev Info } else { @@ -32,7 +32,7 @@ function Invoke-CIPPStandardSpoofWarn { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'SpoofingWarnings' -FieldValue [bool]$CurrentInfo.Enabled -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'SpoofingWarnings' -FieldValue $CurrentInfo.Enabled -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTAP.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTAP.ps1 index 178274286074..72a851a8154e 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTAP.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTAP.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardTAP { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/policies/authenticationmethodspolicy/authenticationMethodConfigurations/TemporaryAccessPass' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Temporary Access Passwords is already enabled.' -sev Info } else { @@ -15,7 +15,7 @@ function Invoke-CIPPStandardTAP { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Temporary Access Passwords is enabled.' -sev Info } else { @@ -23,7 +23,7 @@ function Invoke-CIPPStandardTAP { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'TemporaryAccessPass' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'TemporaryAccessPass' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTenantDefaultTimezone.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTenantDefaultTimezone.ps1 index 31b144efa524..2388bdaa7a85 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTenantDefaultTimezone.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTenantDefaultTimezone.ps1 @@ -8,7 +8,7 @@ function Invoke-CIPPStandardTenantDefaultTimezone { $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 ($Settings.remediate -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Tenant Default Timezone is already set to $($Settings.Timezone)" -sev Info } else { @@ -21,7 +21,7 @@ function Invoke-CIPPStandardTenantDefaultTimezone { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($StateIsCorrect) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Tenant Default Timezone is set to $($Settings.Timezone)." -sev Info @@ -29,7 +29,7 @@ function Invoke-CIPPStandardTenantDefaultTimezone { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Tenant Default Timezone is not set to the desired value.' -sev Alert } } - if ($Settings.report) { + if ($Settings.report -eq $true) { Add-CIPPBPAField -FieldName 'TenantDefaultTimezone' -FieldValue $CurrentState.tenantDefaultTimezone -StoreAs string -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTransportRuleTemplate.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTransportRuleTemplate.ps1 index 794f74f31c8f..7158f550154d 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTransportRuleTemplate.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTransportRuleTemplate.ps1 @@ -4,16 +4,16 @@ function Invoke-CIPPStandardTransportRuleTemplate { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + foreach ($Template in $Settings.TemplateList) { Write-Host "working on $($Template.value)" $Table = Get-CippTable -tablename 'templates' - $Filter = "PartitionKey eq 'TransportTemplate' and RowKey eq '$($Template.value)'" + $Filter = "PartitionKey eq 'TransportTemplate' and RowKey eq '$($Template.value)'" $RequestParams = (Get-AzDataTableEntity @Table -Filter $Filter).JSON | ConvertFrom-Json $Existing = New-ExoRequest -ErrorAction SilentlyContinue -tenantid $Tenant -cmdlet 'Get-TransportRule' -useSystemMailbox $true | Where-Object -Property Identity -EQ $RequestParams.name - - + + try { if ($Existing) { Write-Host 'Found existing' @@ -25,7 +25,7 @@ function Invoke-CIPPStandardTransportRuleTemplate { $GraphRequest = New-ExoRequest -tenantid $Tenant -cmdlet 'New-TransportRule' -cmdParams ($RequestParams | Select-Object -Property * -ExcludeProperty GUID, Comments, HasSenderOverride, ExceptIfHasSenderOverride, ExceptIfMessageContainsDataClassifications, MessageContainsDataClassifications) -useSystemMailbox $true Write-LogMessage -API 'Standards' -tenant $tenant -message "Successfully created transport rule for $tenant" -sev 'Info' } - + Write-LogMessage -API $APINAME -tenant $Tenant -message "Created transport rule for $($tenantfilter)" -sev 'Debug' } catch { Write-LogMessage -API 'Standards' -tenant $tenant -message "Could not create transport rule for $($tenantfilter): $($_.Exception.message)" -sev 'Error' diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUndoOauth.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUndoOauth.ps1 index 5eae5226cd93..6607f851d480 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUndoOauth.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUndoOauth.ps1 @@ -4,12 +4,12 @@ function Invoke-CIPPStandardUndoOauth { Internal #> param($Tenant, $Settings) - $CurrentState = New-GraphGetRequest -tenantid $Tenant -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy?$select=permissionGrantPolicyIdsAssignedToDefaultUserRole' + $CurrentState = New-GraphGetRequest -tenantid $Tenant -Uri 'https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy?$select=permissionGrantPolicyIdsAssignedToDefaultUserRole' $State = if ($CurrentState.permissionGrantPolicyIdsAssignedToDefaultUserRole -eq 'ManagePermissionGrantsForSelf.microsoft-user-default-legacy') { $true } else { $false } $State - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($State) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Application Consent Mode is already disabled.' -sev Info } else { @@ -24,7 +24,7 @@ function Invoke-CIPPStandardUndoOauth { } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'Application Consent Mode is disabled.' -sev Info } else { @@ -32,7 +32,7 @@ function Invoke-CIPPStandardUndoOauth { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'UndoOauth' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'UndoOauth' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUndoSSPR.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUndoSSPR.ps1 index 8c89559e8c23..b18a397b219a 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUndoSSPR.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUndoSSPR.ps1 @@ -4,8 +4,8 @@ function Invoke-CIPPStandardUndoSSPR { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + Write-LogMessage -API 'Standards' -tenant $tenant -message 'The standard for SSPR is no longer supported.' -sev Error } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUserSubmissions.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUserSubmissions.ps1 index 934f79995842..44401e0aba6e 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUserSubmissions.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardUserSubmissions.ps1 @@ -6,13 +6,13 @@ function Invoke-CIPPStandardUserSubmissions { param($Tenant, $Settings) $Policy = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-ReportSubmissionPolicy' - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { $Status = if ($Settings.state -eq 'enable') { $true } else { $false } # If policy is set correctly, log and skip setting the policy if ($Policy.EnableReportToMicrosoft -eq $status) { Write-LogMessage -API 'Standards' -tenant $tenant -message "User Submission policy is already set to $status." -sev Info - } else { + } else { if ($Settings.state -eq 'enable') { # Policy is not set correctly, enable the policy. Create new policy if it does not exist try { @@ -41,8 +41,8 @@ function Invoke-CIPPStandardUserSubmissions { } } } - - if ($Settings.alert) { + + if ($Settings.alert -eq $true) { if ($Policy.length -eq 0) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'User Submission policy is not set.' -sev Alert @@ -55,11 +55,11 @@ function Invoke-CIPPStandardUserSubmissions { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { if ($Policy.length -eq 0) { Add-CIPPBPAField -FieldName 'UserSubmissionPolicy' -FieldValue $false -StoreAs bool -Tenant $tenant } else { - Add-CIPPBPAField -FieldName 'UserSubmissionPolicy' -FieldValue [bool]$Policy.EnableReportToMicrosoft -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'UserSubmissionPolicy' -FieldValue $Policy.EnableReportToMicrosoft -StoreAs bool -Tenant $tenant } } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardallowOAuthTokens.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardallowOAuthTokens.ps1 index 883c23c3ca5a..c8fd2f64b9de 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardallowOAuthTokens.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardallowOAuthTokens.ps1 @@ -6,16 +6,16 @@ function Invoke-CIPPStandardallowOAuthTokens { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/softwareOath' -tenantid $Tenant $State = if ($CurrentInfo.state -eq 'enabled') { $true } else { $false } - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Software OTP/oAuth tokens is already enabled.' -sev Info } else { Set-CIPPAuthenticationPolicy -Tenant $tenant -APIName 'Standards' -AuthenticationMethodId 'softwareOath' -Enabled $true } } - - if ($Settings.alert) { + + if ($Settings.alert -eq $true) { if ($State) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Software OTP/oAuth tokens is enabled' -sev Info @@ -23,8 +23,8 @@ function Invoke-CIPPStandardallowOAuthTokens { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Software OTP/oAuth tokens is not enabled' -sev Alert } } - - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'softwareOath' -FieldValue [bool]$State -StoreAs bool -Tenant $tenant + + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'softwareOath' -FieldValue $State -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardallowOTPTokens.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardallowOTPTokens.ps1 index 8f3f6b456010..6f956358c711 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardallowOTPTokens.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardallowOTPTokens.ps1 @@ -5,8 +5,8 @@ function Invoke-CIPPStandardallowOTPTokens { #> param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/microsoftAuthenticator' -tenantid $Tenant - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { if ($CurrentInfo.isSoftwareOathEnabled) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'MS authenticator OTP/oAuth tokens is already enabled.' -sev Info } else { @@ -14,7 +14,7 @@ function Invoke-CIPPStandardallowOTPTokens { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.isSoftwareOathEnabled) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'MS authenticator OTP/oAuth tokens is enabled' -sev Info } else { @@ -22,8 +22,8 @@ function Invoke-CIPPStandardallowOTPTokens { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'MSAuthenticator' -FieldValue [bool]$CurrentInfo.isSoftwareOathEnabled -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'MSAuthenticator' -FieldValue $CurrentInfo.isSoftwareOathEnabled -StoreAs bool -Tenant $tenant } - + } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardcalDefault.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardcalDefault.ps1 index a138f72f0d7f..829a18543092 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardcalDefault.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardcalDefault.ps1 @@ -4,8 +4,8 @@ function Invoke-CIPPStandardcalDefault { Internal #> param($Tenant, $Settings, $QueueItem) - - If ($Settings.remediate) { + + If ($Settings.remediate -eq $true) { $Mailboxes = New-ExoRequest -tenantid $Tenant -cmdlet 'Get-Mailbox' | Sort-Object UserPrincipalName $TotalMailboxes = $Mailboxes.Count Write-LogMessage -API 'Standards' -tenant $Tenant -message "Started setting default calendar permissions for $($TotalMailboxes) mailboxes." -sev Info @@ -19,7 +19,7 @@ function Invoke-CIPPStandardcalDefault { if ($LastRun -and $LastRun.processedMailboxes -lt $LastRun.totalMailboxes ) { $startIndex = $LastRun.processedMailboxes } - + $SuccessCounter = if ($startIndex -eq 0) { 0 } else { [int64]$LastRun.currentSuccessCount } $processedMailboxes = $startIndex $Mailboxes = $Mailboxes[$startIndex..($TotalMailboxes - 1)] @@ -32,8 +32,8 @@ function Invoke-CIPPStandardcalDefault { New-ExoRequest -tenantid $Tenant -cmdlet 'Get-MailboxFolderStatistics' -cmdParams @{identity = $Mailbox.UserPrincipalName; FolderScope = 'Calendar' } -Anchor $Mailbox.UserPrincipalName | Where-Object { $_.FolderType -eq 'Calendar' } | ForEach-Object { try { - New-ExoRequest -tenantid $Tenant -cmdlet 'Set-MailboxFolderPermission' -cmdparams @{Identity = "$($Mailbox.UserPrincipalName):$($_.FolderId)"; User = 'Default'; AccessRights = $Settings.permissionlevel } -Anchor $Mailbox.UserPrincipalName - Write-LogMessage -API 'Standards' -tenant $Tenant -message "Set default folder permission for $($Mailbox.UserPrincipalName):\$($_.Name) to $($Settings.permissionlevel)" -sev Debug + New-ExoRequest -tenantid $Tenant -cmdlet 'Set-MailboxFolderPermission' -cmdparams @{Identity = "$($Mailbox.UserPrincipalName):$($_.FolderId)"; User = 'Default'; AccessRights = $Settings.permissionlevel } -Anchor $Mailbox.UserPrincipalName + Write-LogMessage -API 'Standards' -tenant $Tenant -message "Set default folder permission for $($Mailbox.UserPrincipalName):\$($_.Name) to $($Settings.permissionlevel)" -sev Debug $SuccessCounter++ } catch { Write-Host "Setting cal failed: $($_.exception.message)" diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandarddisableMacSync.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandarddisableMacSync.ps1 index b273dbcb9fdd..6f93e4160d97 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandarddisableMacSync.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandarddisableMacSync.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandarddisableMacSync { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings' -tenantid $Tenant -AsApp $true - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($CurrentInfo.isMacSyncAppEnabled -eq $true) { try { $body = '{"isMacSyncAppEnabled": false}' @@ -21,7 +21,7 @@ function Invoke-CIPPStandarddisableMacSync { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.isMacSyncAppEnabled -eq $false) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Mac OneDrive Sync is disabled' -sev Info @@ -30,8 +30,8 @@ function Invoke-CIPPStandarddisableMacSync { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $CurrentInfo.isMacSyncAppEnabled = -not $CurrentInfo.isMacSyncAppEnabled - Add-CIPPBPAField -FieldName 'MacSync' -FieldValue [bool]$CurrentInfo.isMacSyncAppEnabled -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'MacSync' -FieldValue $CurrentInfo.isMacSyncAppEnabled -StoreAs bool -Tenant $tenant } } \ No newline at end of file diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardfwdAdminAlerts.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardfwdAdminAlerts.ps1 index 3ccf767f2525..c3bfc78d2819 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardfwdAdminAlerts.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardfwdAdminAlerts.ps1 @@ -4,8 +4,8 @@ function Invoke-CIPPStandardfwdAdminAlerts { Internal #> param($Tenant, $Settings) - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + #This isn't done yet. } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneDeviceReg.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneDeviceReg.ps1 index 713fe5e8ff41..446dd5036cd0 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneDeviceReg.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneDeviceReg.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardintuneDeviceReg { param($Tenant, $Settings) $PreviousSetting = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/policies/deviceRegistrationPolicy' -tenantid $Tenant - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($PreviousSetting.userDeviceQuota -eq $Settings.max) { Write-LogMessage -API 'Standards' -tenant $tenant -message "User device quota is already set to $($Settings.max)" -sev Info } else { @@ -20,7 +20,7 @@ function Invoke-CIPPStandardintuneDeviceReg { } } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($PreviousSetting.userDeviceQuota -eq $Settings.max) { Write-LogMessage -API 'Standards' -tenant $tenant -message "User device quota is set to $($Settings.max)" -sev Info @@ -28,8 +28,8 @@ function Invoke-CIPPStandardintuneDeviceReg { Write-LogMessage -API 'Standards' -tenant $tenant -message "User device quota is not set to $($Settings.max)" -sev Alert } } - if ($Settings.report) { + if ($Settings.report -eq $true) { if ($PreviousSetting.userDeviceQuota -eq $Settings.max) { $UserQuota = $true } else { $UserQuota = $false } - Add-CIPPBPAField -FieldName 'intuneDeviceReg' -FieldValue [bool]$UserQuota -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'intuneDeviceReg' -FieldValue $UserQuota -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneDeviceRetirementDays.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneDeviceRetirementDays.ps1 index 8ab48cf6efb9..b0b188aac679 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneDeviceRetirementDays.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneDeviceRetirementDays.ps1 @@ -5,9 +5,9 @@ function Invoke-CIPPStandardintuneDeviceRetirementDays { #> param($Tenant, $Settings) $CurrentInfo = (New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/deviceManagement/managedDeviceCleanupSettings' -tenantid $Tenant) - - If ($Settings.remediate) { - + + If ($Settings.remediate -eq $true) { + if ($CurrentInfo.DeviceInactivityBeforeRetirementInDays -eq $Settings.days) { Write-LogMessage -API 'Standards' -tenant $tenant -message "DeviceInactivityBeforeRetirementInDays for $($Settings.days) days is already enabled." -sev Info } else { @@ -21,7 +21,7 @@ function Invoke-CIPPStandardintuneDeviceRetirementDays { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.DeviceInactivityBeforeRetirementInDays -eq $Settings.days) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'DeviceInactivityBeforeRetirementInDays is enabled.' -sev Info @@ -30,9 +30,9 @@ function Invoke-CIPPStandardintuneDeviceRetirementDays { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $UserQuota = if ($PreviousSetting.DeviceInactivityBeforeRetirementInDays -eq $Settings.days) { $true } else { $false } - Add-CIPPBPAField -FieldName 'intuneDeviceRetirementDays' -FieldValue [bool]$UserQuota -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'intuneDeviceRetirementDays' -FieldValue $UserQuota -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneRequireMFA.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneRequireMFA.ps1 index f2cc643746e9..4fb519f8ffe2 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneRequireMFA.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardintuneRequireMFA.ps1 @@ -6,7 +6,7 @@ function Invoke-CIPPStandardintuneRequireMFA { param($Tenant, $Settings) $PreviousSetting = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/policies/deviceRegistrationPolicy' -tenantid $Tenant - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($PreviousSetting.multiFactorAuthConfiguration -eq 'required') { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Require to use MFA when joining/registering Entra Devices is already enabled.' -sev Info } else { @@ -22,7 +22,7 @@ function Invoke-CIPPStandardintuneRequireMFA { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($PreviousSetting.multiFactorAuthConfiguration -eq 'required') { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Require to use MFA when joining/registering Entra Devices is enabled.' -sev Info @@ -31,8 +31,8 @@ function Invoke-CIPPStandardintuneRequireMFA { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { $RequireMFA = if ($PreviousSetting.multiFactorAuthConfiguration -eq 'required') { $true } else { $false } - Add-CIPPBPAField -FieldName 'intuneRequireMFA' -FieldValue [bool]$RequireMFA -StoreAs bool -Tenant $tenant + Add-CIPPBPAField -FieldName 'intuneRequireMFA' -FieldValue $RequireMFA -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardlaps.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardlaps.ps1 index 5732995e01ca..ee3a5e14611c 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardlaps.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardlaps.ps1 @@ -6,31 +6,32 @@ function Invoke-CIPPStandardlaps { param($Tenant, $Settings) $PreviousSetting = New-GraphGetRequest -uri 'https://graph.microsoft.com/beta/policies/deviceRegistrationPolicy' -tenantid $Tenant - If ($Settings.remediate) { - if ($PreviousSetting.localadminpassword.isEnabled) { + If ($Settings.remediate -eq $true) { + Write-Host 'Time to remediate!' + if ($PreviousSetting.localAdminPassword.isEnabled) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'LAPS is already enabled.' -sev Info } else { try { - $previoussetting.localadminpassword.isEnabled = $true - $Newbody = ConvertTo-Json -Compress -InputObject $PreviousSetting + $PreviousSetting.localAdminPassword.isEnabled = $true + $Newbody = ConvertTo-Json -Compress -InputObject $PreviousSetting -Depth 10 New-GraphPostRequest -tenantid $Tenant -Uri 'https://graph.microsoft.com/beta/policies/deviceRegistrationPolicy' -Type PUT -Body $NewBody -ContentType 'application/json' Write-LogMessage -API 'Standards' -tenant $Tenant -message 'LAPS has been enabled.' -sev Info } catch { - $previoussetting.localadminpassword.isEnabled = $false - Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to set LAPS: $($_.exception.message)" -sev Error + $PreviousSetting.localAdminPassword.isEnabled = $false + Write-LogMessage -API 'Standards' -tenant $Tenant -message "Failed to enable LAPS: $($_.exception.message)" -sev Error } } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { - if ($PreviousSetting.localadminpassword.isEnabled) { + if ($PreviousSetting.localAdminPassword.isEnabled) { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'LAPS is enabled.' -sev Info } else { Write-LogMessage -API 'Standards' -tenant $Tenant -message 'LAPS is not enabled.' -sev Alert } } - - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'laps' -FieldValue [bool]$PreviousSetting.localadminpassword.isEnabled -StoreAs bool -Tenant $tenant + + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'laps' -FieldValue $PreviousSetting.localAdminPassword.isEnabled -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardsharingCapability.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardsharingCapability.ps1 index ee36e115f5b0..9dc1dac6e9fa 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardsharingCapability.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardsharingCapability.ps1 @@ -9,7 +9,7 @@ function Invoke-CIPPStandardsharingCapability { $Settings.Level $CurrentInfo.sharingCapability - If ($Settings.remediate) { + If ($Settings.remediate -eq $true) { if ($CurrentInfo.sharingCapability -eq $Settings.Level) { Write-Host "Sharing level is already set to $($Settings.Level)" @@ -25,7 +25,7 @@ function Invoke-CIPPStandardsharingCapability { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.sharingCapability -eq $Settings.Level) { Write-LogMessage -API 'Standards' -tenant $tenant -message "Sharing level is set to $($Settings.Level)" -sev Info @@ -34,7 +34,7 @@ function Invoke-CIPPStandardsharingCapability { } } - if ($Settings.report) { + if ($Settings.report -eq $true) { Add-CIPPBPAField -FieldName 'sharingCapability' -FieldValue $CurrentInfo.sharingCapability -StoreAs string -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardunmanagedSync.ps1 b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardunmanagedSync.ps1 index 185fd53610f0..48df11eb0840 100644 --- a/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardunmanagedSync.ps1 +++ b/Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardunmanagedSync.ps1 @@ -6,8 +6,8 @@ function Invoke-CIPPStandardunmanagedSync { param($Tenant, $Settings) $CurrentInfo = New-GraphGetRequest -Uri 'https://graph.microsoft.com/beta/admin/sharepoint/settings' -tenantid $Tenant -AsApp $true - If ($Settings.remediate) { - + If ($Settings.remediate -eq $true) { + if ($CurrentInfo.isUnmanagedSyncAppForTenantRestricted -eq $false) { try { #$body = '{"isUnmanagedSyncAppForTenantRestricted": true}' @@ -21,7 +21,7 @@ function Invoke-CIPPStandardunmanagedSync { } } - if ($Settings.alert) { + if ($Settings.alert -eq $true) { if ($CurrentInfo.isUnmanagedSyncAppForTenantRestricted -eq $true) { Write-LogMessage -API 'Standards' -tenant $tenant -message 'Sync for unmanaged devices is disabled' -sev Info @@ -30,7 +30,7 @@ function Invoke-CIPPStandardunmanagedSync { } } - if ($Settings.report) { - Add-CIPPBPAField -FieldName 'unmanagedSync' -FieldValue [bool]$CurrentInfo.isUnmanagedSyncAppForTenantRestricted -StoreAs bool -Tenant $tenant + if ($Settings.report -eq $true) { + Add-CIPPBPAField -FieldName 'unmanagedSync' -FieldValue $CurrentInfo.isUnmanagedSyncAppForTenantRestricted -StoreAs bool -Tenant $tenant } } diff --git a/Modules/CIPPCore/Public/f283eed0-78b4-4499-b857-0fc33631089a-TransportTemplate.json b/Modules/CIPPCore/Public/f283eed0-78b4-4499-b857-0fc33631089a-TransportTemplate.json deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/Modules/CippEntrypoints/CippEntrypoints.psm1 b/Modules/CippEntrypoints/CippEntrypoints.psm1 index ac3da58594a1..800fd3618526 100644 --- a/Modules/CippEntrypoints/CippEntrypoints.psm1 +++ b/Modules/CippEntrypoints/CippEntrypoints.psm1 @@ -4,7 +4,7 @@ function Receive-CippHttpTrigger { Param($Request, $TriggerMetadata) #force path to CIPP-API Set-Location (Get-Item $PSScriptRoot).Parent.Parent.FullName - Write-Host (Get-Item $PSScriptRoot).Parent.Parent.FullName + Write-Information (Get-Item $PSScriptRoot).Parent.Parent.FullName $APIName = $TriggerMetadata.FunctionName $FunctionName = 'Invoke-{0}' -f $APIName @@ -22,7 +22,7 @@ function Receive-CippQueueTrigger { Set-Location (Get-Item $PSScriptRoot).Parent.Parent.FullName $Start = (Get-Date).ToUniversalTime() $APIName = $TriggerMetadata.FunctionName - Write-Host "#### Running $APINAME" + Write-Information "#### Running $APINAME" Set-Location (Get-Item $PSScriptRoot).Parent.Parent.FullName $FunctionName = 'Push-{0}' -f $APIName $QueueTrigger = @{ @@ -57,7 +57,7 @@ function Receive-CippOrchestrationTrigger { } else { $OrchestratorInput = $Context.Input } - Write-Host "Orchestrator started $($OrchestratorInput.OrchestratorName)" + Write-Information "Orchestrator started $($OrchestratorInput.OrchestratorName)" $DurableRetryOptions = @{ FirstRetryInterval = (New-TimeSpan -Seconds 5) @@ -79,7 +79,7 @@ function Receive-CippOrchestrationTrigger { $NoWait = $true } } - Write-Host "Durable Mode: $DurableMode" + Write-Information "Durable Mode: $DurableMode" $RetryOptions = New-DurableRetryOptions @DurableRetryOptions @@ -113,69 +113,78 @@ function Receive-CippOrchestrationTrigger { Write-LogMessage -API $OrchestratorInput.OrchestratorName -tenant $tenant -message "Finished $($OrchestratorInput.OrchestratorName)" -sev Info } } catch { - Write-Host "Orchestrator error $($_.Exception.Message) line $($_.InvocationInfo.ScriptLineNumber)" + Write-Information "Orchestrator error $($_.Exception.Message) line $($_.InvocationInfo.ScriptLineNumber)" } } function Receive-CippActivityTrigger { Param($Item) - - $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' + try { + $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 } - $TaskStatus = Set-CippQueueTask @QueueTask - $QueueTask.TaskId = $TaskStatus.RowKey - } - if ($Item.FunctionName) { - $FunctionName = 'Push-{0}' -f $Item.FunctionName - try { - & $FunctionName -Item $Item + if ($Item.FunctionName) { + $FunctionName = 'Push-{0}' -f $Item.FunctionName + try { + & $FunctionName -Item $Item - if ($TaskStatus) { - $QueueTask.Status = 'Completed' - $null = Set-CippQueueTask @QueueTask + if ($TaskStatus) { + $QueueTask.Status = 'Completed' + $null = Set-CippQueueTask @QueueTask + } + } catch { + $ErrorMsg = $_.Exception.Message + if ($TaskStatus) { + $QueueTask.Status = 'Failed' + $null = Set-CippQueueTask @QueueTask + } } - } catch { - $ErrorMsg = $_.Exception.Message + } else { + $ErrorMsg = 'Function not provided' if ($TaskStatus) { $QueueTask.Status = 'Failed' $null = Set-CippQueueTask @QueueTask } } - } else { - $ErrorMsg = 'Function not provided' + + $End = (Get-Date).ToUniversalTime() + + try { + $Stats = @{ + FunctionType = 'Durable' + Entity = $Item + Start = $Start + End = $End + ErrorMsg = $ErrorMsg + } + Write-CippFunctionStats @Stats + } catch { + Write-Information "Error adding activity stats: $($_.Exception.Message)" + } + } catch { + Write-Information "Error in Receive-CippActivityTrigger: $($_.Exception.Message)" if ($TaskStatus) { $QueueTask.Status = 'Failed' $null = Set-CippQueueTask @QueueTask } } - - $End = (Get-Date).ToUniversalTime() - - $Stats = @{ - FunctionType = 'Durable' - Entity = $Item - Start = $Start - End = $End - ErrorMsg = $ErrorMsg - } - - #Write-Information '####### Adding stats' - Write-CippFunctionStats @Stats } Export-ModuleMember -Function @('Receive-CippHttpTrigger', 'Receive-CippQueueTrigger', 'Receive-CippOrchestrationTrigger', 'Receive-CippActivityTrigger') diff --git a/Scheduler_GetQueue/run.ps1 b/Scheduler_GetQueue/run.ps1 index 4aac0455307e..eed2fb079169 100644 --- a/Scheduler_GetQueue/run.ps1 +++ b/Scheduler_GetQueue/run.ps1 @@ -12,7 +12,7 @@ $Tasks = foreach ($Tenant in $Tenants) { Type = $Tenant.type } } else { - Write-Host 'All tenants, doing them all' + Write-Information 'All tenants, doing them all' $TenantList = Get-Tenants foreach ($t in $TenantList) { [pscustomobject]@{ @@ -25,20 +25,25 @@ $Tasks = foreach ($Tenant in $Tenants) { } } +$Queue = New-CippQueueEntry -Name 'Scheduler' -TotalTasks ($Tasks | Measure-Object).Count + $Batch = foreach ($Task in $Tasks) { [pscustomobject]@{ Tenant = $task.tenant Tenantid = $task.tenantid Tag = $task.tag Type = $task.type + QueueId = $Queue.RowKey + QueueName = '{0} - {1}' -f $Task.Type, $task.tenant FunctionName = "Scheduler$($Task.Type)" } } $InputObject = [PSCustomObject]@{ OrchestratorName = 'SchedulerOrchestrator' Batch = @($Batch) + SkipLog = $true } -#Write-Host ($InputObject | ConvertTo-Json) +#Write-Information ($InputObject | ConvertTo-Json) $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 5 -Compress) -Write-Host "Started orchestration with ID = '$InstanceId'" +Write-Information "Started orchestration with ID = '$InstanceId'" #$Orchestrator = New-OrchestrationCheckStatusResponse -Request $Request -InstanceId $InstanceId \ No newline at end of file diff --git a/bin/Azure.Core.dll b/bin/Azure.Core.dll deleted file mode 100644 index 229788545a57..000000000000 Binary files a/bin/Azure.Core.dll and /dev/null differ diff --git a/bin/Azure.Data.Tables.dll b/bin/Azure.Data.Tables.dll deleted file mode 100644 index ae549629d430..000000000000 Binary files a/bin/Azure.Data.Tables.dll and /dev/null differ diff --git a/bin/Azure.Identity.dll b/bin/Azure.Identity.dll deleted file mode 100644 index fe75e5461be6..000000000000 Binary files a/bin/Azure.Identity.dll and /dev/null differ diff --git a/bin/Azure.Storage.Blobs.dll b/bin/Azure.Storage.Blobs.dll deleted file mode 100644 index 7f7b739d0203..000000000000 Binary files a/bin/Azure.Storage.Blobs.dll and /dev/null differ diff --git a/bin/Azure.Storage.Common.dll b/bin/Azure.Storage.Common.dll deleted file mode 100644 index 70cd1b2ddf8e..000000000000 Binary files a/bin/Azure.Storage.Common.dll and /dev/null differ diff --git a/bin/Azure.Storage.Queues.dll b/bin/Azure.Storage.Queues.dll deleted file mode 100644 index c43f1ae38533..000000000000 Binary files a/bin/Azure.Storage.Queues.dll and /dev/null differ diff --git a/bin/Castle.Core.dll b/bin/Castle.Core.dll deleted file mode 100644 index 9ca9548a744f..000000000000 Binary files a/bin/Castle.Core.dll and /dev/null differ diff --git a/bin/DurableTask.ApplicationInsights.dll b/bin/DurableTask.ApplicationInsights.dll deleted file mode 100644 index 10c2cbc82d3e..000000000000 Binary files a/bin/DurableTask.ApplicationInsights.dll and /dev/null differ diff --git a/bin/DurableTask.AzureStorage.dll b/bin/DurableTask.AzureStorage.dll deleted file mode 100644 index 58abdf9714b3..000000000000 Binary files a/bin/DurableTask.AzureStorage.dll and /dev/null differ diff --git a/bin/DurableTask.Core.dll b/bin/DurableTask.Core.dll deleted file mode 100644 index 2dce75205caa..000000000000 Binary files a/bin/DurableTask.Core.dll and /dev/null differ diff --git a/bin/Google.Protobuf.dll b/bin/Google.Protobuf.dll deleted file mode 100644 index 0e52e7199d66..000000000000 Binary files a/bin/Google.Protobuf.dll and /dev/null differ diff --git a/bin/Grpc.Core.Api.dll b/bin/Grpc.Core.Api.dll deleted file mode 100644 index bf90aea2e053..000000000000 Binary files a/bin/Grpc.Core.Api.dll and /dev/null differ diff --git a/bin/Grpc.Core.dll b/bin/Grpc.Core.dll deleted file mode 100644 index 019af046bb75..000000000000 Binary files a/bin/Grpc.Core.dll and /dev/null differ diff --git a/bin/Microsoft.ApplicationInsights.dll b/bin/Microsoft.ApplicationInsights.dll deleted file mode 100644 index 0cbaf18efc4b..000000000000 Binary files a/bin/Microsoft.ApplicationInsights.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll b/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll deleted file mode 100644 index 5ca9acdad05d..000000000000 Binary files a/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Authentication.Core.dll b/bin/Microsoft.AspNetCore.Authentication.Core.dll deleted file mode 100644 index 484ad0d1616d..000000000000 Binary files a/bin/Microsoft.AspNetCore.Authentication.Core.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Authorization.Policy.dll b/bin/Microsoft.AspNetCore.Authorization.Policy.dll deleted file mode 100644 index d63f6cbe3dd0..000000000000 Binary files a/bin/Microsoft.AspNetCore.Authorization.Policy.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Authorization.dll b/bin/Microsoft.AspNetCore.Authorization.dll deleted file mode 100644 index 83bf39d662bb..000000000000 Binary files a/bin/Microsoft.AspNetCore.Authorization.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Connections.Abstractions.dll b/bin/Microsoft.AspNetCore.Connections.Abstractions.dll deleted file mode 100644 index acd88bec8e86..000000000000 Binary files a/bin/Microsoft.AspNetCore.Connections.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll b/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll deleted file mode 100644 index 2fa7ecb37619..000000000000 Binary files a/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll deleted file mode 100644 index 26922584f4b8..000000000000 Binary files a/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Hosting.dll b/bin/Microsoft.AspNetCore.Hosting.dll deleted file mode 100644 index 781589269f30..000000000000 Binary files a/bin/Microsoft.AspNetCore.Hosting.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Http.Abstractions.dll b/bin/Microsoft.AspNetCore.Http.Abstractions.dll deleted file mode 100644 index c8177821b76c..000000000000 Binary files a/bin/Microsoft.AspNetCore.Http.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Http.Extensions.dll b/bin/Microsoft.AspNetCore.Http.Extensions.dll deleted file mode 100644 index 3dfb5e0d9e31..000000000000 Binary files a/bin/Microsoft.AspNetCore.Http.Extensions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Http.Features.dll b/bin/Microsoft.AspNetCore.Http.Features.dll deleted file mode 100644 index c5f6f866063a..000000000000 Binary files a/bin/Microsoft.AspNetCore.Http.Features.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Http.dll b/bin/Microsoft.AspNetCore.Http.dll deleted file mode 100644 index c2c59cff508f..000000000000 Binary files a/bin/Microsoft.AspNetCore.Http.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.JsonPatch.dll b/bin/Microsoft.AspNetCore.JsonPatch.dll deleted file mode 100644 index 2ddd11386e33..000000000000 Binary files a/bin/Microsoft.AspNetCore.JsonPatch.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Mvc.Abstractions.dll b/bin/Microsoft.AspNetCore.Mvc.Abstractions.dll deleted file mode 100644 index f05a157a8ef6..000000000000 Binary files a/bin/Microsoft.AspNetCore.Mvc.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Mvc.Core.dll b/bin/Microsoft.AspNetCore.Mvc.Core.dll deleted file mode 100644 index 7c64bf1d9247..000000000000 Binary files a/bin/Microsoft.AspNetCore.Mvc.Core.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/bin/Microsoft.AspNetCore.Mvc.Formatters.Json.dll deleted file mode 100644 index 7abeb96f0989..000000000000 Binary files a/bin/Microsoft.AspNetCore.Mvc.Formatters.Json.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll b/bin/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll deleted file mode 100644 index dd1d8bf8b5ce..000000000000 Binary files a/bin/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/bin/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll deleted file mode 100644 index 9ff80bf49ec3..000000000000 Binary files a/bin/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Routing.Abstractions.dll b/bin/Microsoft.AspNetCore.Routing.Abstractions.dll deleted file mode 100644 index 458cdd3be041..000000000000 Binary files a/bin/Microsoft.AspNetCore.Routing.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Routing.dll b/bin/Microsoft.AspNetCore.Routing.dll deleted file mode 100644 index 8e3ab2d4a704..000000000000 Binary files a/bin/Microsoft.AspNetCore.Routing.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.Core.dll deleted file mode 100644 index f91b85d1e4c0..000000000000 Binary files a/bin/Microsoft.AspNetCore.Server.Kestrel.Core.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.Https.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.Https.dll deleted file mode 100644 index 6f232b22da72..000000000000 Binary files a/bin/Microsoft.AspNetCore.Server.Kestrel.Https.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll deleted file mode 100644 index 049899c4d03e..000000000000 Binary files a/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll deleted file mode 100644 index 6a3040996662..000000000000 Binary files a/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.Server.Kestrel.dll b/bin/Microsoft.AspNetCore.Server.Kestrel.dll deleted file mode 100644 index 320471ee3b56..000000000000 Binary files a/bin/Microsoft.AspNetCore.Server.Kestrel.dll and /dev/null differ diff --git a/bin/Microsoft.AspNetCore.WebUtilities.dll b/bin/Microsoft.AspNetCore.WebUtilities.dll deleted file mode 100644 index dc1e804ce611..000000000000 Binary files a/bin/Microsoft.AspNetCore.WebUtilities.dll and /dev/null differ diff --git a/bin/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll b/bin/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll deleted file mode 100644 index fba97a87b065..000000000000 Binary files a/bin/Microsoft.Azure.WebJobs.Extensions.DurableTask.dll and /dev/null differ diff --git a/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll b/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll deleted file mode 100644 index 2b936b30a95e..000000000000 Binary files a/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.dll and /dev/null differ diff --git a/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll b/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll deleted file mode 100644 index a566f59248e6..000000000000 Binary files a/bin/Microsoft.Azure.WebJobs.Extensions.Storage.Queues.dll and /dev/null differ diff --git a/bin/Microsoft.Azure.WebJobs.Host.dll b/bin/Microsoft.Azure.WebJobs.Host.dll deleted file mode 100644 index cda12d37b141..000000000000 Binary files a/bin/Microsoft.Azure.WebJobs.Host.dll and /dev/null differ diff --git a/bin/Microsoft.Azure.WebJobs.dll b/bin/Microsoft.Azure.WebJobs.dll deleted file mode 100644 index 548543d1e651..000000000000 Binary files a/bin/Microsoft.Azure.WebJobs.dll and /dev/null differ diff --git a/bin/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c549bc..000000000000 Binary files a/bin/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/bin/Microsoft.Build.Framework.dll b/bin/Microsoft.Build.Framework.dll deleted file mode 100644 index e4c7030fe0b5..000000000000 Binary files a/bin/Microsoft.Build.Framework.dll and /dev/null differ diff --git a/bin/Microsoft.Build.Utilities.Core.dll b/bin/Microsoft.Build.Utilities.Core.dll deleted file mode 100644 index 6a4455e0203b..000000000000 Binary files a/bin/Microsoft.Build.Utilities.Core.dll and /dev/null differ diff --git a/bin/Microsoft.DotNet.PlatformAbstractions.dll b/bin/Microsoft.DotNet.PlatformAbstractions.dll deleted file mode 100644 index 7d12a4323383..000000000000 Binary files a/bin/Microsoft.DotNet.PlatformAbstractions.dll and /dev/null differ diff --git a/bin/Microsoft.DurableTask.Sidecar.Protobuf.dll b/bin/Microsoft.DurableTask.Sidecar.Protobuf.dll deleted file mode 100644 index f5b1af4875c9..000000000000 Binary files a/bin/Microsoft.DurableTask.Sidecar.Protobuf.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Azure.dll b/bin/Microsoft.Extensions.Azure.dll deleted file mode 100644 index 7696f68c1464..000000000000 Binary files a/bin/Microsoft.Extensions.Azure.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 540e09431e0e..000000000000 Binary files a/bin/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Configuration.Binder.dll b/bin/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index f05e2d84be06..000000000000 Binary files a/bin/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll deleted file mode 100644 index e482d42a60f4..000000000000 Binary files a/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Configuration.FileExtensions.dll b/bin/Microsoft.Extensions.Configuration.FileExtensions.dll deleted file mode 100644 index 15126f98d3b7..000000000000 Binary files a/bin/Microsoft.Extensions.Configuration.FileExtensions.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Configuration.Json.dll b/bin/Microsoft.Extensions.Configuration.Json.dll deleted file mode 100644 index 89ec1307d245..000000000000 Binary files a/bin/Microsoft.Extensions.Configuration.Json.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Configuration.dll b/bin/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 50f78a0afdea..000000000000 Binary files a/bin/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index be10eccde271..000000000000 Binary files a/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.DependencyInjection.dll b/bin/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 7fa7c1f3ff5b..000000000000 Binary files a/bin/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.DependencyModel.dll b/bin/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index 1f35cfce53f6..000000000000 Binary files a/bin/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.FileProviders.Abstractions.dll b/bin/Microsoft.Extensions.FileProviders.Abstractions.dll deleted file mode 100644 index bca33155e914..000000000000 Binary files a/bin/Microsoft.Extensions.FileProviders.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.FileProviders.Physical.dll b/bin/Microsoft.Extensions.FileProviders.Physical.dll deleted file mode 100644 index 54c1a83483b6..000000000000 Binary files a/bin/Microsoft.Extensions.FileProviders.Physical.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.FileSystemGlobbing.dll b/bin/Microsoft.Extensions.FileSystemGlobbing.dll deleted file mode 100644 index 0459c635a4a9..000000000000 Binary files a/bin/Microsoft.Extensions.FileSystemGlobbing.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Hosting.Abstractions.dll b/bin/Microsoft.Extensions.Hosting.Abstractions.dll deleted file mode 100644 index 8f4da6fbdef7..000000000000 Binary files a/bin/Microsoft.Extensions.Hosting.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Hosting.dll b/bin/Microsoft.Extensions.Hosting.dll deleted file mode 100644 index c3b2a7dfb676..000000000000 Binary files a/bin/Microsoft.Extensions.Hosting.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Http.dll b/bin/Microsoft.Extensions.Http.dll deleted file mode 100644 index 963d8ec6dcf4..000000000000 Binary files a/bin/Microsoft.Extensions.Http.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 4e8e3f2b4f41..000000000000 Binary files a/bin/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Logging.Configuration.dll b/bin/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index ed9105c6a8f5..000000000000 Binary files a/bin/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Logging.dll b/bin/Microsoft.Extensions.Logging.dll deleted file mode 100644 index ceb74624042f..000000000000 Binary files a/bin/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.ObjectPool.dll b/bin/Microsoft.Extensions.ObjectPool.dll deleted file mode 100644 index 5330caf675a0..000000000000 Binary files a/bin/Microsoft.Extensions.ObjectPool.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/bin/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index abf32e44c338..000000000000 Binary files a/bin/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Options.dll b/bin/Microsoft.Extensions.Options.dll deleted file mode 100644 index b4017e0adafb..000000000000 Binary files a/bin/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/bin/Microsoft.Extensions.Primitives.dll b/bin/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 62324a7a1b15..000000000000 Binary files a/bin/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/bin/Microsoft.Identity.Client.Extensions.Msal.dll b/bin/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 6cfc83c5af96..000000000000 Binary files a/bin/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/bin/Microsoft.Identity.Client.dll b/bin/Microsoft.Identity.Client.dll deleted file mode 100644 index 531abde6c79f..000000000000 Binary files a/bin/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/bin/Microsoft.IdentityModel.Abstractions.dll b/bin/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 96db40f55703..000000000000 Binary files a/bin/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/bin/Microsoft.Net.Http.Headers.dll b/bin/Microsoft.Net.Http.Headers.dll deleted file mode 100644 index 01dec16aa5d1..000000000000 Binary files a/bin/Microsoft.Net.Http.Headers.dll and /dev/null differ diff --git a/bin/Newtonsoft.Json.Bson.dll b/bin/Newtonsoft.Json.Bson.dll deleted file mode 100644 index 22d4c123b6a6..000000000000 Binary files a/bin/Newtonsoft.Json.Bson.dll and /dev/null differ diff --git a/bin/Newtonsoft.Json.dll b/bin/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe658ac..000000000000 Binary files a/bin/Newtonsoft.Json.dll and /dev/null differ diff --git a/bin/System.ClientModel.dll b/bin/System.ClientModel.dll deleted file mode 100644 index 1363faf66562..000000000000 Binary files a/bin/System.ClientModel.dll and /dev/null differ diff --git a/bin/System.Diagnostics.DiagnosticSource.dll b/bin/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index aacf2c145fa0..000000000000 Binary files a/bin/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/bin/System.Diagnostics.EventLog.dll b/bin/System.Diagnostics.EventLog.dll deleted file mode 100644 index cf314541d1e7..000000000000 Binary files a/bin/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/bin/System.IO.FileSystem.AccessControl.dll b/bin/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 27a8fdf76830..000000000000 Binary files a/bin/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/bin/System.IO.Hashing.dll b/bin/System.IO.Hashing.dll deleted file mode 100644 index 122d5973b18b..000000000000 Binary files a/bin/System.IO.Hashing.dll and /dev/null differ diff --git a/bin/System.IO.Pipelines.dll b/bin/System.IO.Pipelines.dll deleted file mode 100644 index 673612e971d9..000000000000 Binary files a/bin/System.IO.Pipelines.dll and /dev/null differ diff --git a/bin/System.Linq.Async.dll b/bin/System.Linq.Async.dll deleted file mode 100644 index f0309faac6fa..000000000000 Binary files a/bin/System.Linq.Async.dll and /dev/null differ diff --git a/bin/System.Memory.Data.dll b/bin/System.Memory.Data.dll deleted file mode 100644 index 6f2a3e0ad07f..000000000000 Binary files a/bin/System.Memory.Data.dll and /dev/null differ diff --git a/bin/System.Net.Http.Formatting.dll b/bin/System.Net.Http.Formatting.dll deleted file mode 100644 index a394052732fc..000000000000 Binary files a/bin/System.Net.Http.Formatting.dll and /dev/null differ diff --git a/bin/System.Reactive.Core.dll b/bin/System.Reactive.Core.dll deleted file mode 100644 index a3b43b6279c4..000000000000 Binary files a/bin/System.Reactive.Core.dll and /dev/null differ diff --git a/bin/System.Reactive.Interfaces.dll b/bin/System.Reactive.Interfaces.dll deleted file mode 100644 index 690f6d2344cc..000000000000 Binary files a/bin/System.Reactive.Interfaces.dll and /dev/null differ diff --git a/bin/System.Reactive.Linq.dll b/bin/System.Reactive.Linq.dll deleted file mode 100644 index 9d91f71eb09c..000000000000 Binary files a/bin/System.Reactive.Linq.dll and /dev/null differ diff --git a/bin/System.Reactive.PlatformServices.dll b/bin/System.Reactive.PlatformServices.dll deleted file mode 100644 index 4ded127379bd..000000000000 Binary files a/bin/System.Reactive.PlatformServices.dll and /dev/null differ diff --git a/bin/System.Reactive.Providers.dll b/bin/System.Reactive.Providers.dll deleted file mode 100644 index 612587dad973..000000000000 Binary files a/bin/System.Reactive.Providers.dll and /dev/null differ diff --git a/bin/System.Reactive.dll b/bin/System.Reactive.dll deleted file mode 100644 index abaf211395a6..000000000000 Binary files a/bin/System.Reactive.dll and /dev/null differ diff --git a/bin/System.Reactive.xml b/bin/System.Reactive.xml deleted file mode 100644 index a637827eae01..000000000000 --- a/bin/System.Reactive.xml +++ /dev/null @@ -1,26653 +0,0 @@ - - - - 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 deleted file mode 100644 index 103462b3e96c..000000000000 Binary files a/bin/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/bin/System.Security.AccessControl.dll b/bin/System.Security.AccessControl.dll deleted file mode 100644 index 7a8365546831..000000000000 Binary files a/bin/System.Security.AccessControl.dll and /dev/null differ diff --git a/bin/System.Security.Cryptography.ProtectedData.dll b/bin/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index a60b95b78061..000000000000 Binary files a/bin/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/bin/System.Security.Principal.Windows.dll b/bin/System.Security.Principal.Windows.dll deleted file mode 100644 index 0c7819bd81aa..000000000000 Binary files a/bin/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/bin/System.Text.Encodings.Web.dll b/bin/System.Text.Encodings.Web.dll deleted file mode 100644 index 41e59b281f19..000000000000 Binary files a/bin/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/bin/System.Text.Json.dll b/bin/System.Text.Json.dll deleted file mode 100644 index 799c1efb2b99..000000000000 Binary files a/bin/System.Text.Json.dll and /dev/null differ diff --git a/bin/extensions.deps.json b/bin/extensions.deps.json deleted file mode 100644 index d732b6616fa3..000000000000 --- a/bin/extensions.deps.json +++ /dev/null @@ -1,3636 +0,0 @@ -{ - "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 deleted file mode 100644 index 20523c697aaa..000000000000 Binary files a/bin/extensions.dll and /dev/null differ diff --git a/bin/extensions.json b/bin/extensions.json deleted file mode 100644 index 84ea4af20398..000000000000 --- a/bin/extensions.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "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 deleted file mode 100644 index 209259d6227f..000000000000 Binary files a/bin/extensions.pdb and /dev/null 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 deleted file mode 100644 index 7d53002d6c91..000000000000 Binary files a/bin/runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so and /dev/null 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 deleted file mode 100644 index e3b68513579e..000000000000 Binary files a/bin/runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so and /dev/null 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 deleted file mode 100644 index edb7445cac3f..000000000000 Binary files a/bin/runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib and /dev/null 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 deleted file mode 100644 index 59bf0e341a2e..000000000000 Binary files a/bin/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll and /dev/null 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 deleted file mode 100644 index fb64b8a2ecd2..000000000000 Binary files a/bin/runtimes/win-x64/native/grpc_csharp_ext.x64.dll and /dev/null 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 deleted file mode 100644 index fdaf9df12284..000000000000 Binary files a/bin/runtimes/win-x86/native/grpc_csharp_ext.x86.dll and /dev/null 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 deleted file mode 100644 index 536bdd484c4e..000000000000 Binary files a/bin/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll and /dev/null 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 deleted file mode 100644 index 72fd7e7e3771..000000000000 Binary files a/bin/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll and /dev/null 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 deleted file mode 100644 index 0f6dabca4f81..000000000000 Binary files a/bin/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll and /dev/null 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 deleted file mode 100644 index 471ce5c2928f..000000000000 Binary files a/bin/runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll and /dev/null 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 deleted file mode 100644 index d8f2f458960a..000000000000 Binary files a/bin/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/extensions.csproj b/extensions.csproj deleted file mode 100644 index 6d08e6095748..000000000000 --- a/extensions.csproj +++ /dev/null @@ -1,13 +0,0 @@ - - - netcoreapp3.1 - - ** - - - - - - - - \ No newline at end of file diff --git a/host.json b/host.json index 57517e598bcf..ca55c68073d2 100644 --- a/host.json +++ b/host.json @@ -3,6 +3,10 @@ "managedDependency": { "enabled": false }, + "extensionBundle": { + "id": "Microsoft.Azure.Functions.ExtensionBundle", + "version": "[4.*, 5.0.0)" + }, "functionTimeout": "00:10:00", "extensions": { "queues": { diff --git a/obj/Debug/netcoreapp3.1/extensions.AssemblyInfo.cs b/obj/Debug/netcoreapp3.1/extensions.AssemblyInfo.cs deleted file mode 100644 index e480719c75bf..000000000000 --- a/obj/Debug/netcoreapp3.1/extensions.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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 deleted file mode 100644 index cb0720f115be..000000000000 --- a/obj/Debug/netcoreapp3.1/extensions.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -1f97fd2ada00dffd0798c9141ab6336f7095293b diff --git a/obj/Debug/netcoreapp3.1/extensions.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netcoreapp3.1/extensions.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1dd5da003177..000000000000 --- a/obj/Debug/netcoreapp3.1/extensions.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -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 deleted file mode 100644 index fbf77775e8fe..000000000000 Binary files a/obj/Debug/netcoreapp3.1/extensions.assets.cache and /dev/null differ diff --git a/obj/Debug/netcoreapp3.1/extensions.csproj.AssemblyReference.cache b/obj/Debug/netcoreapp3.1/extensions.csproj.AssemblyReference.cache deleted file mode 100644 index f6a66d6ea63c..000000000000 Binary files a/obj/Debug/netcoreapp3.1/extensions.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Debug/netcoreapp3.1/extensions.csproj.CopyComplete b/obj/Debug/netcoreapp3.1/extensions.csproj.CopyComplete deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/obj/Debug/netcoreapp3.1/extensions.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp3.1/extensions.csproj.CoreCompileInputs.cache deleted file mode 100644 index f54ea146a69f..000000000000 --- a/obj/Debug/netcoreapp3.1/extensions.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -07d88c3d1c60313037d034577314633e201095fd diff --git a/obj/Debug/netcoreapp3.1/extensions.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp3.1/extensions.csproj.FileListAbsolute.txt deleted file mode 100644 index e5f80ed3e65c..000000000000 --- a/obj/Debug/netcoreapp3.1/extensions.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,123 +0,0 @@ -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 deleted file mode 100644 index 20523c697aaa..000000000000 Binary files a/obj/Debug/netcoreapp3.1/extensions.dll and /dev/null differ diff --git a/obj/Debug/netcoreapp3.1/extensions.pdb b/obj/Debug/netcoreapp3.1/extensions.pdb deleted file mode 100644 index 209259d6227f..000000000000 Binary files a/obj/Debug/netcoreapp3.1/extensions.pdb and /dev/null differ diff --git a/obj/extensions.csproj.nuget.dgspec.json b/obj/extensions.csproj.nuget.dgspec.json deleted file mode 100644 index 1cac37ee323e..000000000000 --- a/obj/extensions.csproj.nuget.dgspec.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "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 deleted file mode 100644 index 5d77bcecbe5f..000000000000 --- a/obj/extensions.csproj.nuget.g.props +++ /dev/null @@ -1,22 +0,0 @@ - - - - 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 deleted file mode 100644 index a8388dffb1cb..000000000000 --- a/obj/extensions.csproj.nuget.g.targets +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json deleted file mode 100644 index bbe04914c722..000000000000 --- a/obj/project.assets.json +++ /dev/null @@ -1,9270 +0,0 @@ -{ - "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 deleted file mode 100644 index 1d3229f05173..000000000000 --- a/obj/project.nuget.cache +++ /dev/null @@ -1,206 +0,0 @@ -{ - "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/version_latest.txt b/version_latest.txt index d6a86bf436c0..25c1b355a168 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -5.6.2 +5.6.3 \ No newline at end of file