6 instantiations of InstallResponseMessage
dotnet (6)
Commands\Workload\Install\NetSdkMsiInstallerServer.cs (2)
125
Dispatcher.Reply(new
InstallResponseMessage
()
155
Dispatcher.Reply(new
InstallResponseMessage
());
Installer\Windows\InstallMessageDispatcher.cs (3)
41
Reply(new
InstallResponseMessage
{ HResult = e.HResult, Message = e.Message });
50
Reply(new
InstallResponseMessage
{ Error = error });
56
Reply(new
InstallResponseMessage
{ Message = message, HResult = S_OK, Error = SUCCESS });
Installer\Windows\InstallResponseMessage.cs (1)
68
return new
InstallResponseMessage
34 references to InstallResponseMessage
dotnet (32)
Commands\Workload\Install\MsiInstallerBase.cs (10)
180
InstallResponseMessage
response = Dispatcher.SendMsiRequest(InstallRequestType.RepairMsi,
217
InstallResponseMessage
response = Dispatcher.SendUpdateWorkloadModeRequest(sdkFeatureBand, newMode);
246
InstallResponseMessage
response = Dispatcher.SendUpdateWorkloadSetRequest(sdkFeatureBand, workloadVersion);
268
InstallResponseMessage
response = Dispatcher.SendRecordWorkloadSetInGlobalJsonRequest(sdkFeatureBand, globalJsonPath, workloadSetVersion);
296
InstallResponseMessage
response = Dispatcher.SendGetGlobalJsonWorkloadSetVersionsRequest(sdkFeatureBand);
332
InstallResponseMessage
response = Dispatcher.SendMsiRequest(InstallRequestType.InstallMsi,
365
InstallResponseMessage
response = Dispatcher.SendMsiRequest(InstallRequestType.UninstallMsi,
535
InstallResponseMessage
response = Dispatcher.SendDependentRequest(requestType, providerKeyName, dependent);
571
InstallResponseMessage
response = Dispatcher.SendRemoveManifestsFromInstallStateFileRequest(sdkFeatureBand);
602
InstallResponseMessage
respone = Dispatcher.SendSaveInstallStateManifestVersions(sdkFeatureBand, manifestContents);
Commands\Workload\Install\WorkloadInstallRecords\RegistryWorkloadInstallationRecordRepository.cs (2)
62
InstallResponseMessage
response = Dispatcher.SendWorkloadRecordRequest(InstallRequestType.DeleteWorkloadInstallationRecord,
111
InstallResponseMessage
response = Dispatcher.SendWorkloadRecordRequest(InstallRequestType.WriteWorkloadInstallationRecord,
Installer\Windows\IInstallMessageDispatcher.cs (2)
18
InstallResponseMessage
Send(InstallRequestMessage message);
24
void Reply(
InstallResponseMessage
message);
Installer\Windows\InstallerBase.cs (1)
158
protected static void ExitOnFailure(
InstallResponseMessage
response, string message)
Installer\Windows\InstallMessageDispatcher.cs (14)
28
public
InstallResponseMessage
Send(InstallRequestMessage message)
31
return
InstallResponseMessage
.Create(ReadMessage());
34
public void Reply(
InstallResponseMessage
message)
73
public
InstallResponseMessage
SendCacheRequest(InstallRequestType requestType, string manifestPath,
93
public
InstallResponseMessage
SendDependentRequest(InstallRequestType requestType, string providerKeyName, string dependent)
112
public
InstallResponseMessage
SendMsiRequest(InstallRequestType requestType, string logFile, string packagePath = null, string productCode = null)
127
public
InstallResponseMessage
SendShutdownRequest()
139
public
InstallResponseMessage
SendWorkloadRecordRequest(InstallRequestType requestType, WorkloadId workloadId, SdkFeatureBand sdkFeatureBand)
154
public
InstallResponseMessage
SendRemoveManifestsFromInstallStateFileRequest(SdkFeatureBand sdkFeatureBand)
169
public
InstallResponseMessage
SendSaveInstallStateManifestVersions(SdkFeatureBand sdkFeatureBand, Dictionary<string, string> manifestContents)
185
public
InstallResponseMessage
SendUpdateWorkloadModeRequest(SdkFeatureBand sdkFeatureBand, bool? newMode)
201
public
InstallResponseMessage
SendUpdateWorkloadSetRequest(SdkFeatureBand sdkFeatureBand, string newVersion)
211
public
InstallResponseMessage
SendRecordWorkloadSetInGlobalJsonRequest(SdkFeatureBand sdkFeatureBand, string globalJsonPath, string workloadSetVersion)
222
public
InstallResponseMessage
SendGetGlobalJsonWorkloadSetVersionsRequest(SdkFeatureBand sdkFeatureBand)
Installer\Windows\InstallResponseMessage.cs (3)
59
public static
InstallResponseMessage
Create(byte[] bytes)
63
return JsonConvert.DeserializeObject<
InstallResponseMessage
>(json, DefaultSerializerSettings);
66
public static
InstallResponseMessage
Create(Exception e)
dotnet.Tests (2)
WindowsInstallerTests.cs (2)
75
InstallResponseMessage
r1 = cd.SendMsiRequest(InstallRequestType.UninstallMsi, "");
76
InstallResponseMessage
r2 = cd.SendShutdownRequest();