// Copyright (c) Microsoft Corporation.// Licensed under the MIT License.using System.Diagnostics.CodeAnalysis;using System.Management.Automation.Internal;using System.Runtime.Serialization;namespace System.Management.Automation{/// <summary>/// Defines the exception thrown for all Metadata errors./// </summary>[Serializable]public class MetadataException : RuntimeException{internal const string MetadataMemberInitialization = "MetadataMemberInitialization";internal const string BaseName = "Metadata";/// <summary>/// Initializes a new instance of MetadataException with serialization parameters./// </summary>/// <param name="info">Serialization information.</param>/// <param name="context">Streaming context.</param>protected MetadataException(SerializationInfo info, StreamingContext context) : base(info, context){SetErrorCategory(ErrorCategory.MetadataError);}/// <summary>/// Initializes a new instance of MetadataException with the message set/// to typeof(MetadataException).FullName./// </summary>public MetadataException() : base(typeof(MetadataException).FullName){SetErrorCategory(ErrorCategory.MetadataError);}/// <summary>/// Initializes a new instance of MetadataException setting the message./// </summary>/// <param name="message">The exception's message.</param>public MetadataException(string message) : base(message){SetErrorCategory(ErrorCategory.MetadataError);}/// <summary>/// Initializes a new instance of MetadataException setting the message and innerException./// </summary>/// <param name="message">The exception's message.</param>/// <param name="innerException">The exceptions's inner exception.</param>public MetadataException(string message, Exception innerException) : base(message, innerException){SetErrorCategory(ErrorCategory.MetadataError);}internal MetadataException(string errorId, Exception innerException, string resourceStr, params object[] arguments) :base(StringUtil.Format(resourceStr, arguments), innerException){SetErrorCategory(ErrorCategory.MetadataError);SetErrorId(errorId);}}/// <summary>/// Defines the exception thrown for all Validate attributes./// </summary>[Serializable][SuppressMessage("Microsoft.Usage", "CA2240:ImplementISerializableCorrectly")]public class ValidationMetadataException : MetadataException{internal const string ValidateRangeElementType = "ValidateRangeElementType";internal const string ValidateRangePositiveFailure = "ValidateRangePositiveFailure";internal const string ValidateRangeNonNegativeFailure = "ValidateRangeNonNegativeFailure";internal const string ValidateRangeNegativeFailure = "ValidateRangeNegativeFailure";internal const string ValidateRangeNonPositiveFailure = "ValidateRangeNonPositiveFailure";internal const string ValidateRangeMinRangeMaxRangeType = "ValidateRangeMinRangeMaxRangeType";internal const string ValidateRangeNotIComparable = "ValidateRangeNotIComparable";internal const string ValidateRangeMaxRangeSmallerThanMinRange = "ValidateRangeMaxRangeSmallerThanMinRange";internal const string ValidateRangeGreaterThanMaxRangeFailure = "ValidateRangeGreaterThanMaxRangeFailure";internal const string ValidateRangeSmallerThanMinRangeFailure = "ValidateRangeSmallerThanMinRangeFailure";internal const string ValidateFailureResult = "ValidateFailureResult";internal const string ValidatePatternFailure = "ValidatePatternFailure";internal const string ValidateScriptFailure = "ValidateScriptFailure";internal const string ValidateCountNotInArray = "ValidateCountNotInArray";internal const string ValidateCountMaxLengthSmallerThanMinLength = "ValidateCountMaxLengthSmallerThanMinLength";internal const string ValidateCountMinLengthFailure = "ValidateCountMinLengthFailure";internal const string ValidateCountMaxLengthFailure = "ValidateCountMaxLengthFailure";internal const string ValidateLengthMaxLengthSmallerThanMinLength = "ValidateLengthMaxLengthSmallerThanMinLength";internal const string ValidateLengthNotString = "ValidateLengthNotString";internal const string ValidateLengthMinLengthFailure = "ValidateLengthMinLengthFailure";internal const string ValidateLengthMaxLengthFailure = "ValidateLengthMaxLengthFailure";internal const string ValidateSetFailure = "ValidateSetFailure";internal const string ValidateVersionFailure = "ValidateVersionFailure";internal const string InvalidValueFailure = "InvalidValueFailure";/// <summary>/// Initializes a new instance of ValidationMetadataException with serialization parameters./// </summary>/// <param name="info">Serialization information.</param>/// <param name="context">Streaming context.</param>protected ValidationMetadataException(SerializationInfo info, StreamingContext context) : base(info, context) { }/// <summary>/// Initializes a new instance of ValidationMetadataException with the message set/// to typeof(ValidationMetadataException).FullName./// </summary>public ValidationMetadataException() : base(typeof(ValidationMetadataException).FullName) { }/// <summary>/// Initializes a new instance of ValidationMetadataException setting the message./// </summary>/// <param name="message">The exception's message.</param>public ValidationMetadataException(string message) : this(message, false) { }/// <summary>/// Initializes a new instance of ValidationMetadataException setting the message and innerException./// </summary>/// <param name="message">The exception's message.</param>/// <param name="innerException">The exceptions's inner exception.</param>public ValidationMetadataException(string message, Exception innerException) : base(message, innerException) { }internal ValidationMetadataException(string errorId, Exception innerException, string resourceStr, params object[] arguments) :base(errorId, innerException, resourceStr, arguments){}/// <summary>/// Initialize a new instance of ValidationMetadataException. This validation exception could be/// ignored in positional binding phase if the <para>swallowException</para> is set to be true./// </summary>/// <param name="message">/// The error message</param>/// <param name="swallowException">/// Indicate whether to swallow this exception in positional binding phase/// </param>internal ValidationMetadataException(string message, bool swallowException) : base(message){_swallowException = swallowException;}/// <summary>/// Make the positional binding swallow this exception when it's set to true./// </summary>/// <remarks>/// This property is only used internally in the positional binding phase/// </remarks>internal bool SwallowException{get { return _swallowException; }}private bool _swallowException = false;}/// <summary>/// Defines the exception thrown for all ArgumentTransformation attributes./// </summary>[Serializable]public class ArgumentTransformationMetadataException : MetadataException{internal const string ArgumentTransformationArgumentsShouldBeStrings = "ArgumentTransformationArgumentsShouldBeStrings";/// <summary>/// Initializes a new instance of ArgumentTransformationMetadataException with serialization parameters./// </summary>/// <param name="info">Serialization information.</param>/// <param name="context">Streaming context.</param>protected ArgumentTransformationMetadataException(SerializationInfo info, StreamingContext context) : base(info, context) { }/// <summary>/// Initializes a new instance of ArgumentTransformationMetadataException with the message set/// to typeof(ArgumentTransformationMetadataException).FullName./// </summary>public ArgumentTransformationMetadataException() : base(typeof(ArgumentTransformationMetadataException).FullName) { }/// <summary>/// Initializes a new instance of ArgumentTransformationMetadataException setting the message./// </summary>/// <param name="message">The exception's message.</param>public ArgumentTransformationMetadataException(string message) : base(message) { }/// <summary>/// Initializes a new instance of ArgumentTransformationMetadataException setting the message and innerException./// </summary>/// <param name="message">The exception's message.</param>/// <param name="innerException">The exceptions's inner exception.</param>public ArgumentTransformationMetadataException(string message, Exception innerException) : base(message, innerException) { }internal ArgumentTransformationMetadataException(string errorId, Exception innerException, string resourceStr, params object[] arguments) :base(errorId, innerException, resourceStr, arguments){}}/// <summary>/// Defines the exception thrown for all parameter binding exceptions related to metadata attributes./// </summary>[Serializable]public class ParsingMetadataException : MetadataException{internal const string ParsingTooManyParameterSets = "ParsingTooManyParameterSets";/// <summary>/// Initializes a new instance of ParsingMetadataException with serialization parameters./// </summary>/// <param name="info">Serialization information.</param>/// <param name="context">Streaming context.</param>protected ParsingMetadataException(SerializationInfo info, StreamingContext context) : base(info, context) { }/// <summary>/// Initializes a new instance of ParsingMetadataException with the message set/// to typeof(ParsingMetadataException).FullName./// </summary>public ParsingMetadataException() : base(typeof(ParsingMetadataException).FullName) { }/// <summary>/// Initializes a new instance of ParsingMetadataException setting the message./// </summary>/// <param name="message">The exception's message.</param>public ParsingMetadataException(string message) : base(message) { }/// <summary>/// Initializes a new instance of ParsingMetadataException setting the message and innerException./// </summary>/// <param name="message">The exception's message.</param>/// <param name="innerException">The exceptions's inner exception.</param>public ParsingMetadataException(string message, Exception innerException) : base(message, innerException) { }internal ParsingMetadataException(string errorId, Exception innerException, string resourceStr, params object[] arguments) :base(errorId, innerException, resourceStr, arguments){}}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。