/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/ComInterop/Errors.cs
118 строк
5 KB
Dongbo Wang
Refresh and enable the `ComInterop` code in PowerShell (#13304)
08 авг 2020, 02:24
Не верифицирован
08 авг 2020, 02:24
4214800
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Management.Automation.Internal; namespace System.Management.Automation.ComInterop { /// <summary> /// Strongly-typed and parameterized exception factory. /// </summary> internal static partial class Error { /// <summary> /// InvalidOperationException with message like "Marshal.SetComObjectData failed." /// </summary> internal static Exception SetComObjectDataFailed() { return new InvalidOperationException(ParserStrings.SetComObjectDataFailed); } /// <summary> /// InvalidOperationException with message like "Unexpected VarEnum {0}." /// </summary> internal static Exception UnexpectedVarEnum(object p0) { return new InvalidOperationException(StringUtil.Format(ParserStrings.UnexpectedVarEnum, p0)); } /// <summary> /// System.Reflection.TargetParameterCountException with message like "Error while invoking {0}." /// </summary> internal static Exception DispBadParamCount(object p0, int parameterCount) { return new System.Reflection.TargetParameterCountException(StringUtil.Format(ParserStrings.DispBadParamCount, p0, parameterCount)); } /// <summary> /// MissingMemberException with message like "Error while invoking {0}." /// </summary> internal static Exception DispMemberNotFound(object p0) { return new MissingMemberException(StringUtil.Format(ParserStrings.DispMemberNotFound, p0)); } /// <summary> /// ArgumentException with message like "Error while invoking {0}. Named arguments are not supported." /// </summary> internal static Exception DispNoNamedArgs(object p0) { return new ArgumentException(StringUtil.Format(ParserStrings.DispNoNamedArgs, p0)); } /// <summary> /// OverflowException with message like "Error while invoking {0}." /// </summary> internal static Exception DispOverflow(object p0) { return new OverflowException(StringUtil.Format(ParserStrings.DispOverflow, p0)); } /// <summary> /// ArgumentException with message like "Could not convert argument {0} for call to {1}." /// </summary> internal static Exception DispTypeMismatch(object method, string value, string originalTypeName, string destinationTypeName) { return new ArgumentException(StringUtil.Format(ParserStrings.DispTypeMismatch, method, value, originalTypeName, destinationTypeName)); } /// <summary> /// ArgumentException with message like "Error while invoking {0}. A required parameter was omitted." /// </summary> internal static Exception DispParamNotOptional(object p0) { return new ArgumentException(StringUtil.Format(ParserStrings.DispParamNotOptional, p0)); } /// <summary> /// InvalidOperationException with message like "Cannot retrieve type information." /// </summary> internal static Exception CannotRetrieveTypeInformation() { return new InvalidOperationException(ParserStrings.CannotRetrieveTypeInformation); } /// <summary> /// ArgumentException with message like "IDispatch::GetIDsOfNames behaved unexpectedly for {0}." /// </summary> internal static Exception GetIDsOfNamesInvalid(object p0) { return new ArgumentException(StringUtil.Format(ParserStrings.GetIDsOfNamesInvalid, p0)); } /// <summary> /// InvalidOperationException with message like "Attempting to pass an event handler of an unsupported type." /// </summary> internal static Exception UnsupportedHandlerType() { return new InvalidOperationException(ParserStrings.UnsupportedHandlerType); } /// <summary> /// MissingMemberException with message like "Could not get dispatch ID for {0} (error: {1})." /// </summary> internal static Exception CouldNotGetDispId(object p0, object p1) { return new MissingMemberException(StringUtil.Format(ParserStrings.CouldNotGetDispId, p0, p1)); } /// <summary> /// System.Reflection.AmbiguousMatchException with message like "There are valid conversions from {0} to {1}." /// </summary> internal static Exception AmbiguousConversion(object p0, object p1) { return new System.Reflection.AmbiguousMatchException(StringUtil.Format(ParserStrings.AmbiguousConversion, p0, p1)); } } }