7 references to ExternalAccessExtensionsResources
Microsoft.CodeAnalysis.ExternalAccess.Extensions (7)
Internal\ExtensionMessageHandlerFactory.cs (2)
59
throw new InvalidOperationException(string.Format(
ExternalAccessExtensionsResources
.Type_0_implements_interface_1_more_than_once, candidateType.FullName, unboundInterfaceType.Name));
69
?? throw new InvalidOperationException(string.Format(
ExternalAccessExtensionsResources
.Cannot_create_0, candidateType.FullName));
Internal\ExtensionMessageHandlerWrapper.cs (4)
24
Name = handler.GetType().FullName ?? throw new ArgumentException(string.Format(
ExternalAccessExtensionsResources
.The_handler_of_type_0_must_have_a_full_name, handler.GetType().Name), nameof(handler));
29
_executeAsyncMethod = customMessageHandlerInterface.GetMethod(nameof(ExecuteAsync)) ?? throw new ArgumentException(string.Format(
ExternalAccessExtensionsResources
.The_interface_0_does_not_contain_a_method_named_1, customMessageHandlerInterface.FullName, nameof(ExecuteAsync)), nameof(customMessageHandlerInterface));
45
throw new InvalidOperationException(string.Format(
ExternalAccessExtensionsResources
.The_message_type_0_is_not_assignable_to_1, message?.GetType().FullName ?? "null", MessageType.FullName));
54
throw new InvalidOperationException(string.Format(
ExternalAccessExtensionsResources
.The_message_type_0_is_not_assignable_to_1, response?.GetType().FullName ?? "null", ResponseType.FullName));
src\17e17525bd2479b0\Microsoft.CodeAnalysis.ExternalAccess.Extensions.ExternalAccessExtensionsResources.cs (1)
10
internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(
ExternalAccessExtensionsResources
)));