JSError Enumeration
This API supports the product infrastructure and is not intended to be used directly from your code.
Specifies the JScript error messages. This class belongs to the compilation and run-time state category.
Assembly: Microsoft.JScript (in Microsoft.JScript.dll)
| Member name | Description | |
|---|---|---|
| AbstractCannotBePrivate | This API supports the product infrastructure and is not intended to be used directly from your code. An abstract method cannot be private. | |
| AbstractCannotBeStatic | This API supports the product infrastructure and is not intended to be used directly from your code. Static methods cannot be abstract. | |
| AbstractWithBody | This API supports the product infrastructure and is not intended to be used directly from your code. An abstract function cannot have a body. | |
| ActionNotSupported | This API supports the product infrastructure and is not intended to be used directly from your code. The object does not support this action. | |
| AmbiguousBindingBecauseOfEval | This API supports the product infrastructure and is not intended to be used directly from your code. The presence of Eval has made the use of this name ambiguous. | |
| AmbiguousBindingBecauseOfWith | This API supports the product infrastructure and is not intended to be used directly from your code. The With statement has made the use of this name ambiguous. | |
| AmbiguousConstructorCall | This API supports the product infrastructure and is not intended to be used directly from your code. More than one constructor matches this parameter list. | |
| AmbiguousMatch | This API supports the product infrastructure and is not intended to be used directly from your code. More than one method or property matches this parameter list. | |
| ArrayLengthAssignIncorrect | This API supports the product infrastructure and is not intended to be used directly from your code. Array length must be assigned a finite positive number. | |
| ArrayLengthConstructIncorrect | This API supports the product infrastructure and is not intended to be used directly from your code. Array length must be a finite positive integer. | |
| ArrayMayBeCopied | This API supports the product infrastructure and is not intended to be used directly from your code. Assigning a JScript array to a System::Array may cause the array to be copied. | |
| AssemblyAttributesMustBeGlobal | This API supports the product infrastructure and is not intended to be used directly from your code. Assembly custom attributes cannot be part of another construct. | |
| AssignmentToReadOnly | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot assign to read-only field or property. | |
| BadBreak | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot have break outside the loop. | |
| BadContinue | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot have continue outside the loop. | |
| BadFunctionDeclaration | This API supports the product infrastructure and is not intended to be used directly from your code. Possible invalid function declaration, function missing, or unrecognized syntax error. | |
| BadHexDigit | This API supports the product infrastructure and is not intended to be used directly from your code. Expected hexadecimal digit. | |
| BadLabel | This API supports the product infrastructure and is not intended to be used directly from your code. There is already a label that has that name. | |
| BadModifierInInterface | This API supports the product infrastructure and is not intended to be used directly from your code. This modifier cannot be used on an interface member. | |
| BadOctalLiteral | This API supports the product infrastructure and is not intended to be used directly from your code. Malformed octal literal treated as decimal literal. | |
| BadPropertyDeclaration | This API supports the product infrastructure and is not intended to be used directly from your code. Invalid property declaration. The get accessor must not have arguments and the set accessor must have one argument. | |
| BadReturn | This API supports the product infrastructure and is not intended to be used directly from your code. Return statement cannot appear outside the function. | |
| BadSwitch | This API supports the product infrastructure and is not intended to be used directly from your code. Missing case or default statement. | |
| BadThrow | This API supports the product infrastructure and is not intended to be used directly from your code. A throw statement must have an argument unless it is inside the catch block of a try statement. | |
| BadVariableDeclaration | This API supports the product infrastructure and is not intended to be used directly from your code. Possible invalid variable declaration, var missing, or unrecognized syntax error. | |
| BadWayToLeaveFinally | This API supports the product infrastructure and is not intended to be used directly from your code. It is slow and potentially confusing to leave a finally block this way. | |
| BaseClassIsExpandoAlready | This API supports the product infrastructure and is not intended to be used directly from your code. A base class is already marked Expando; current specification will be ignored. | |
| BooleanExpected | This API supports the product infrastructure and is not intended to be used directly from your code. No Boolean value found. | |
| CannotAssignToFunctionResult | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot assign to a function result. | |
| CannotBeAbstract | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot be abstract unless class is marked as abstract. | |
| CannotCallSecurityMethodLateBound | This API supports the product infrastructure and is not intended to be used directly from your code. The Deny, PermitOnly, and Assert security methods cannot be called using late binding. | |
| CannotChangeVisibility | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot change visibility specification of a base method. | |
| CannotInstantiateAbstractClass | This API supports the product infrastructure and is not intended to be used directly from your code. It is not possible to construct an instance of an abstract class. | |
| CannotNestPositionDirective | This API supports the product infrastructure and is not intended to be used directly from your code. Position directive must be ended before a new one can be started. | |
| CannotReturnValueFromVoidFunction | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot return a value from a void function or constructor. | |
| CannotUseNameOfClass | This API supports the product infrastructure and is not intended to be used directly from your code. Only a constructor function can have the same name as the class it appears in. | |
| CannotUseStaticSecurityAttribute | This API supports the product infrastructure and is not intended to be used directly from your code. JScript does not support static security attributes. | |
| CantAssignThis | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot assign to this. | |
| CantCreateObject | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot create object. | |
| CcInvalidElif | This API supports the product infrastructure and is not intended to be used directly from your code. Unmatched @elif; no @if defined. | |
| CcInvalidElse | This API supports the product infrastructure and is not intended to be used directly from your code. Unmatched @else; no @if defined. | |
| CcInvalidEnd | This API supports the product infrastructure and is not intended to be used directly from your code. Unmatched @end; no @if defined. | |
| CcInvalidInDebugger | This API supports the product infrastructure and is not intended to be used directly from your code. Conditional compilation directives and variables cannot be used in the debugger. | |
| CcOff | This API supports the product infrastructure and is not intended to be used directly from your code. Conditional compilation is turned off. | |
| CircularDefinition | This API supports the product infrastructure and is not intended to be used directly from your code. Circular definition. | |
| ClashWithProperty | This API supports the product infrastructure and is not intended to be used directly from your code. The name of the field conflicts with the name of the property. | |
| ClassNotAllowed | This API supports the product infrastructure and is not intended to be used directly from your code. Class definition not allowed in this context. | |
| ConstructorMayNotHaveReturnType | This API supports the product infrastructure and is not intended to be used directly from your code. A constructor cannot have a return type. | |
| CustomAttributeUsedMoreThanOnce | This API supports the product infrastructure and is not intended to be used directly from your code. This type of attribute must be unique. | |
| DateExpected | This API supports the product infrastructure and is not intended to be used directly from your code. Date object expected. | |
| DelegatesShouldNotBeExplicitlyConstructed | This API supports the product infrastructure and is not intended to be used directly from your code. Delegates should not be explicitly constructed; simply use the method name. | |
| Deprecated | This API supports the product infrastructure and is not intended to be used directly from your code. The specified type is deprecated. | |
| DifferentReturnTypeFromBase | This API supports the product infrastructure and is not intended to be used directly from your code. Method in base has a different return type. | |
| DoesNotHaveAnAddress | This API supports the product infrastructure and is not intended to be used directly from your code. Expression does not have an address. | |
| DupDefault | This API supports the product infrastructure and is not intended to be used directly from your code. default can appear only once in a switch statement. | |
| DuplicateMethod | This API supports the product infrastructure and is not intended to be used directly from your code. This method has the same name, parameter types, and return type as another method in this class. | |
| DuplicateName | This API supports the product infrastructure and is not intended to be used directly from your code. Identifier already in use. | |
| DuplicateNamedParameter | This API supports the product infrastructure and is not intended to be used directly from your code. Duplicate named parameter. | |
| DupVisibility | This API supports the product infrastructure and is not intended to be used directly from your code. Visibility modifier already defined. | |
| EnumeratorExpected | This API supports the product infrastructure and is not intended to be used directly from your code. Enumerator object expected. | |
| EnumNotAllowed | This API supports the product infrastructure and is not intended to be used directly from your code. enum definition not allowed in this context. | |
| ErrEOF | This API supports the product infrastructure and is not intended to be used directly from your code. Expecting more source characters. | |
| ExceptionFromHResult | This API supports the product infrastructure and is not intended to be used directly from your code. Exception from HRESULT. | |
| ExecutablesCannotBeLocalized | This API supports the product infrastructure and is not intended to be used directly from your code. Executables cannot be localized; Culture should always be empty. | |
| ExpandoClassShouldNotImpleEnumerable | This API supports the product infrastructure and is not intended to be used directly from your code. Expando classes should not implement IEnumerable. The interface is implicitly defined on Expando classes. | |
| ExpandoMustBePublic | This API supports the product infrastructure and is not intended to be used directly from your code. Expando methods must be public. | |
| ExpandoPrecludesAbstract | This API supports the product infrastructure and is not intended to be used directly from your code. Expando methods cannot be abstract. | |
| ExpandoPrecludesOverride | This API supports the product infrastructure and is not intended to be used directly from your code. Expando methods cannot override base class methods. | |
| ExpandoPrecludesStatic | This API supports the product infrastructure and is not intended to be used directly from your code. Expando methods cannot be static. | |
| ExpectedAssembly | This API supports the product infrastructure and is not intended to be used directly from your code. Expected assembly. | |
| ExpressionExpected | This API supports the product infrastructure and is not intended to be used directly from your code. Expected expression. | |
| FileNotFound | This API supports the product infrastructure and is not intended to be used directly from your code. File not found. | |
| FinalPrecludesAbstract | This API supports the product infrastructure and is not intended to be used directly from your code. final and abstract cannot be used together. | |
| FractionOutOfRange | This API supports the product infrastructure and is not intended to be used directly from your code. The number of fractional digits is out of range. | |
| FuncEvalAborted | This API supports the product infrastructure and is not intended to be used directly from your code. Function evaluation was aborted. | |
| FuncEvalBadLocation | This API supports the product infrastructure and is not intended to be used directly from your code. Function evaluation cannot be done when stopped at this point in the program. | |
| FuncEvalBadThreadNotStarted | This API supports the product infrastructure and is not intended to be used directly from your code. Function evaluation failed and the thread has not started. | |
| FuncEvalBadThreadState | This API supports the product infrastructure and is not intended to be used directly from your code. Function evaluation failed. The thread can contain incorrect data. | |
| FuncEvalThreadSleepWaitJoin | This API supports the product infrastructure and is not intended to be used directly from your code. Function evaluation failed. The thread is sleeping, waiting for an object, or waiting for another thread to finish. | |
| FuncEvalThreadSuspended | This API supports the product infrastructure and is not intended to be used directly from your code. Function evaluation failed. The thread is suspended. | |
| FuncEvalTimedout | This API supports the product infrastructure and is not intended to be used directly from your code. Function evaluation timed out. | |
| FuncEvalWebMethod | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot call a Web method in the debugger. | |
| FunctionExpected | This API supports the product infrastructure and is not intended to be used directly from your code. A function was expected. | |
| GetAndSetAreInconsistent | This API supports the product infrastructure and is not intended to be used directly from your code. The get and set methods of this property do not match each other. | |
| HidesAbstractInBase | This API supports the product infrastructure and is not intended to be used directly from your code. Method hides abstract in a base class. | |
| HidesParentMember | This API supports the product infrastructure and is not intended to be used directly from your code. base class already contains a member by this name. | |
| IllegalAssignment | This API supports the product infrastructure and is not intended to be used directly from your code. Invalid assignment. | |
| IllegalChar | This API supports the product infrastructure and is not intended to be used directly from your code. Invalid character. | |
| IllegalEval | This API supports the product infrastructure and is not intended to be used directly from your code. An Eval cannot be called by an alias. | |
| IllegalParamArrayAttribute | This API supports the product infrastructure and is not intended to be used directly from your code. A variable argument list must be of an array type. | |
| IllegalUseOfSuper | This API supports the product infrastructure and is not intended to be used directly from your code. It is not valid to use the base class in this way. | |
| IllegalUseOfThis | This API supports the product infrastructure and is not intended to be used directly from your code. It is not valid to use this in the current context. | |
| IllegalVisibility | This API supports the product infrastructure and is not intended to be used directly from your code. Invalid visibility modifier. | |
| ImplicitlyReferencedAssemblyNotFound | This API supports the product infrastructure and is not intended to be used directly from your code. A referenced assembly depends on another assembly that is not referenced or could not be found. | |
| ImpossibleConversion | This API supports the product infrastructure and is not intended to be used directly from your code. The specified conversion or coercion is not possible. | |
| IncompatibleAssemblyReference | This API supports the product infrastructure and is not intended to be used directly from your code. The assembly referenced is incompatible. | |
| IncompatibleVisibility | This API supports the product infrastructure and is not intended to be used directly from your code. Incompatible visibility modifier. | |
| IncorrectNumberOfIndices | This API supports the product infrastructure and is not intended to be used directly from your code. The number of indices does not match the dimension of the array. | |
| InstanceNotAccessibleFromStatic | This API supports the product infrastructure and is not intended to be used directly from your code. A non-static member is not accessible from a static scope. | |
| InterfaceIllegalInInterface | This API supports the product infrastructure and is not intended to be used directly from your code. Interfaces cannot be declared in an interface. | |
| InternalError | This API supports the product infrastructure and is not intended to be used directly from your code. An internal error has been thrown. | |
| InvalidAssemblyKeyFile | This API supports the product infrastructure and is not intended to be used directly from your code. An invalid assembly key file has been used. | |
| InvalidBaseTypeForEnum | This API supports the product infrastructure and is not intended to be used directly from your code. enum base type must be a primitive integral type. | |
| InvalidCall | This API supports the product infrastructure and is not intended to be used directly from your code. Invalid procedure call or argument. | |
| InvalidCustomAttribute | This API supports the product infrastructure and is not intended to be used directly from your code. A custom attribute class must derive from Attribute. | |
| InvalidCustomAttributeArgument | This API supports the product infrastructure and is not intended to be used directly from your code. Only primitive types are allowed in a custom attribute constructor arguments list. | |
| InvalidCustomAttributeClassOrCtor | This API supports the product infrastructure and is not intended to be used directly from your code. Unknown custom attribute class or constructor. | |
| InvalidCustomAttributeTarget | This API supports the product infrastructure and is not intended to be used directly from your code. This attribute is not valid for this type of declaration. | |
| InvalidDebugDirective | This API supports the product infrastructure and is not intended to be used directly from your code. Invalid debug directive. | |
| InvalidElse | This API supports the product infrastructure and is not intended to be used directly from your code. Unmatched else; no if defined. | |
| InvalidImport | This API supports the product infrastructure and is not intended to be used directly from your code. The import statement is not valid in this context. | |
| InvalidLanguageOption | This API supports the product infrastructure and is not intended to be used directly from your code. Must specify either "fast" or "versionSafe" language option. | |
| InvalidPositionDirective | This API supports the product infrastructure and is not intended to be used directly from your code. An unknown position directive was discovered. | |
| InvalidPrototype | This API supports the product infrastructure and is not intended to be used directly from your code. This function does not have a valid prototype object. | |
| InvalidResource | This API supports the product infrastructure and is not intended to be used directly from your code. This is not a valid .resources file. | |
| ItemNotAllowedOnExpandoClass | ||
| KeywordUsedAsIdentifier | This API supports the product infrastructure and is not intended to be used directly from your code. You cannot use a reserved word as an identifier. | |
| MemberInitializerCannotContainFuncExpr | This API supports the product infrastructure and is not intended to be used directly from your code. A member initializer cannot contain a function expression. | |
| MemberTypeCLSCompliantMismatch | This API supports the product infrastructure and is not intended to be used directly from your code. Class member cannot be marked Common Language Specification (CLS) compliant because the class is not marked CLS compliant. | |
| MethodClashOnExpandoSuperClass | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot create the Expando class because a property named Item is already defined in the class hierarchy. | |
| MethodInBaseIsNotVirtual | This API supports the product infrastructure and is not intended to be used directly from your code. A method in a base class that is final or not virtualoverride is ignored. Specify hide. | |
| MethodNotAllowedOnExpandoClass | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot define a property named Item on an Expando class. | |
| MissingConstructForAttributes | This API supports the product infrastructure and is not intended to be used directly from your code. The list of attributes does not apply to the current context. | |
| MissingNameParameter | This API supports the product infrastructure and is not intended to be used directly from your code. The specified named parameter name is not one of the formal parameters. | |
| MoreNamedParametersThanArguments | This API supports the product infrastructure and is not intended to be used directly from your code. Too few arguments specified. The number of named parameter names cannot exceed the number of arguments passed in. | |
| MustBeEOL | This API supports the product infrastructure and is not intended to be used directly from your code. Directive cannot be followed by other code on the same line. | |
| MustImplementMethod | This API supports the product infrastructure and is not intended to be used directly from your code. The class must provide an implementation of the method. | |
| MustProvideNameForNamedParameter | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot provide null or empty named parameter name. | |
| NeedArrayObject | This API supports the product infrastructure and is not intended to be used directly from your code. A "|" is not an array object. Array object expected. | |
| NeedCompileTimeConstant | This API supports the product infrastructure and is not intended to be used directly from your code. An expression must be a compile-time constant. | |
| NeedInstance | This API supports the product infrastructure and is not intended to be used directly from your code. An instance is expected. | |
| NeedInterface | This API supports the product infrastructure and is not intended to be used directly from your code. An interface name is expected. | |
| NeedObject | This API supports the product infrastructure and is not intended to be used directly from your code. An object is required. | |
| NeedType | This API supports the product infrastructure and is not intended to be used directly from your code. A type name is expected. | |
| NestedInstanceTypeCannotBeExtendedByStatic | This API supports the product infrastructure and is not intended to be used directly from your code. A non-static nested type can be extended only by a non-static type nested in the same class. | |
| NewNotSpecifiedInMethodDeclaration | This API supports the product infrastructure and is not intended to be used directly from your code. A method matches a method in a base class. Must specify override or hide. | |
| NoAt | This API supports the product infrastructure and is not intended to be used directly from your code. Expected @. | |
| NoCatch | This API supports the product infrastructure and is not intended to be used directly from your code. Expected catch. | |
| NoCcEnd | This API supports the product infrastructure and is not intended to be used directly from your code. Expected @end. | |
| NoColon | This API supports the product infrastructure and is not intended to be used directly from your code. Expected ":". | |
| NoComma | This API supports the product infrastructure and is not intended to be used directly from your code. Expected ",". | |
| NoCommaOrTypeDefinitionError | This API supports the product infrastructure and is not intended to be used directly from your code. Expected "," or invalid type declaration; write "<Identifier> : <Type>" not "<Type> <Identifier>". | |
| NoCommentEnd | This API supports the product infrastructure and is not intended to be used directly from your code. Comment not terminated. | |
| NoConstructor | This API supports the product infrastructure and is not intended to be used directly from your code. No such constructor. | |
| NoEqual | This API supports the product infrastructure and is not intended to be used directly from your code. Expected "=". | |
| NoError | This API supports the product infrastructure and is not intended to be used directly from your code. No error. This is the default (0) value for the enumeration. | |
| NoFuncEvalAllowed | This API supports the product infrastructure and is not intended to be used directly from your code. Function evaluation aborted. To turn on property evaluation, click Options on the Tools menu and then select the Debugging in the tree view. | |
| NoIdentifier | This API supports the product infrastructure and is not intended to be used directly from your code. Expected identifier. | |
| NoLabel | This API supports the product infrastructure and is not intended to be used directly from your code. Label not found. | |
| NoLeftCurly | This API supports the product infrastructure and is not intended to be used directly from your code. Expected "{". | |
| NoLeftParen | This API supports the product infrastructure and is not intended to be used directly from your code. Expected "(". | |
| NoMemberIdentifier | This API supports the product infrastructure and is not intended to be used directly from your code. Expected identifier or string. | |
| NoMethodInBaseToNew | This API supports the product infrastructure and is not intended to be used directly from your code. There is no member in a base class to hide. | |
| NoMethodInBaseToOverride | This API supports the product infrastructure and is not intended to be used directly from your code. There is no member in a base class to override. | |
| NonCLSCompliantMember | This API supports the product infrastructure and is not intended to be used directly from your code. The specified member is not CLS compliant. | |
| NonCLSCompliantType | This API supports the product infrastructure and is not intended to be used directly from your code. The specified type is not CLS compliant. | |
| NonClsException | This API supports the product infrastructure and is not intended to be used directly from your code. A target threw a non-CLS exception. | |
| NonStaticWithTypeName | This API supports the product infrastructure and is not intended to be used directly from your code. A non-static member cannot be accessed with the class name. | |
| NonSupportedInDebugger | This API supports the product infrastructure and is not intended to be used directly from your code. The expression cannot be evaluated in the debugger. | |
| NoRightBracket | This API supports the product infrastructure and is not intended to be used directly from your code. Expected "]". | |
| NoRightBracketOrComma | This API supports the product infrastructure and is not intended to be used directly from your code. Expected "," or "]". | |
| NoRightCurly | This API supports the product infrastructure and is not intended to be used directly from your code. Expected "}". | |
| NoRightParen | This API supports the product infrastructure and is not intended to be used directly from your code. Expected ")". | |
| NoRightParenOrComma | This API supports the product infrastructure and is not intended to be used directly from your code. Expected "," or ")". | |
| NoSemicolon | This API supports the product infrastructure and is not intended to be used directly from your code. Expected ";". | |
| NoSuchMember | This API supports the product infrastructure and is not intended to be used directly from your code. Objects of this type do not have such a member. | |
| NoSuchStaticMember | This API supports the product infrastructure and is not intended to be used directly from your code. Type does not have such a static member. | |
| NoSuchType | This API supports the product infrastructure and is not intended to be used directly from your code. Type could not be found. An assembly reference might be missing. | |
| NotAccessible | This API supports the product infrastructure and is not intended to be used directly from your code. The object or member is not accessible from this scope. | |
| NotAllowedInSuperConstructorCall | This API supports the product infrastructure and is not intended to be used directly from your code. Object or member is not allowed in a call to the base class constructor. | |
| NotAnExpandoFunction | This API supports the product infrastructure and is not intended to be used directly from your code. Class members used as constructors should be marked as Expando functions. | |
| NotCollection | This API supports the product infrastructure and is not intended to be used directly from your code. This object is not a collection. | |
| NotConst | This API supports the product infrastructure and is not intended to be used directly from your code. Expected constant. | |
| NotDeletable | This API supports the product infrastructure and is not intended to be used directly from your code. The object or member cannot be deleted. | |
| NotIndexable | This API supports the product infrastructure and is not intended to be used directly from your code. Objects of this type are not indexable. | |
| NotInsideClass | This API supports the product infrastructure and is not intended to be used directly from your code. Valid only inside a class definition. | |
| NotMeantToBeCalledDirectly | This API supports the product infrastructure and is not intended to be used directly from your code. You cannot call this method directly. If possible, use property accessors instead. | |
| NotOKToCallSuper | This API supports the product infrastructure and is not intended to be used directly from your code. It is not valid to call a base class constructor from this location. | |
| NotValidForConstructor | This API supports the product infrastructure and is not intended to be used directly from your code. Not valid for a constructor. | |
| NotValidVersionString | This API supports the product infrastructure and is not intended to be used directly from your code. Not a valid version string. | |
| NotYetImplemented | This API supports the product infrastructure and is not intended to be used directly from your code. Not yet implemented. | |
| NoVarInEnum | This API supports the product infrastructure and is not intended to be used directly from your code. enum member declarations should not use the var keyword. | |
| NoWhile | This API supports the product infrastructure and is not intended to be used directly from your code. Expected while. | |
| NumberExpected | This API supports the product infrastructure and is not intended to be used directly from your code. Expected a number. | |
| ObjectExpected | This API supports the product infrastructure and is not intended to be used directly from your code. Expected an object. | |
| OctalLiteralsAreDeprecated | This API supports the product infrastructure and is not intended to be used directly from your code. Octal literals are deprecated. | |
| OLENoPropOrMethod | This API supports the product infrastructure and is not intended to be used directly from your code. Object does not support this property or method. | |
| OnlyClassesAllowed | This API supports the product infrastructure and is not intended to be used directly from your code. Only classes are allowed inside a package. | |
| OnlyClassesAndPackagesAllowed | This API supports the product infrastructure and is not intended to be used directly from your code. Only classes and packages are allowed inside a library. | |
| OutOfMemory | This API supports the product infrastructure and is not intended to be used directly from your code. Out of memory. | |
| OutOfStack | This API supports the product infrastructure and is not intended to be used directly from your code. Out of stack space. | |
| OverrideAndHideUsedTogether | This API supports the product infrastructure and is not intended to be used directly from your code. Cannot use override and hide together in a member declaration. | |
| PackageExpected | This API supports the product infrastructure and is not intended to be used directly from your code. Package name expected. | |
| PackageInWrongContext | This API supports the product infrastructure and is not intended to be used directly from your code. Package definition is not allowed in this context. | |
| ParamListNotLast | This API supports the product infrastructure and is not intended to be used directly from your code. A variable argument list must be the last argument. | |
| PossibleBadConversion | This API supports the product infrastructure and is not intended to be used directly from your code. This conversion may fail at runtime. | |
| PossibleBadConversionFromString | This API supports the product infrastructure and is not intended to be used directly from your code. Converting a string to a number or Boolean is slow and may fail at run time. | |
| PrecisionOutOfRange | This API supports the product infrastructure and is not intended to be used directly from your code. The precision is out of range. | |
| PropertyLevelAttributesMustBeOnGetter | This API supports the product infrastructure and is not intended to be used directly from your code. An attribute that targets the property must be specified on the get accessor, if the get accessor is present. | |
| RefParamsNonSupportedInDebugger | This API supports the product infrastructure and is not intended to be used directly from your code. Methods with ref parameters cannot be called in the debugger. | |
| RegExpExpected | This API supports the product infrastructure and is not intended to be used directly from your code. RegExpObject object expected. | |
| RegExpSyntax | This API supports the product infrastructure and is not intended to be used directly from your code. Syntax error in regular expression. | |
| ShouldBeAbstract | This API supports the product infrastructure and is not intended to be used directly from your code. A function without a body should be abstract. | |
| SideEffectsDisallowed | This API supports the product infrastructure and is not intended to be used directly from your code. The expression causes side effects and will not be evaluated. | |
| StaticIsAlreadyFinal | This API supports the product infrastructure and is not intended to be used directly from your code. Static methods cannot be final. | |
| StaticMethodsCannotHide | This API supports the product infrastructure and is not intended to be used directly from your code. Static methods cannot hide base class methods. | |
| StaticMethodsCannotOverride | This API supports the product infrastructure and is not intended to be used directly from your code. Static methods cannot override base class methods. | |
| StaticMissingInStaticInit | This API supports the product infrastructure and is not intended to be used directly from your code. Static initializer must specify the static keyword. | |
| StaticRequiresTypeName | This API supports the product infrastructure and is not intended to be used directly from your code. A static member must be accessed by the class name. | |
| StaticVarNotAvailable | This API supports the product infrastructure and is not intended to be used directly from your code. A static variable is not available. | |
| StringConcatIsSlow | This API supports the product infrastructure and is not intended to be used directly from your code. The plus operator is a slow way to concatenate strings. Consider using System.Text::StringBuilder instead. | |
| StringExpected | This API supports the product infrastructure and is not intended to be used directly from your code. String expected. | |
| SuperClassConstructorNotAccessible | This API supports the product infrastructure and is not intended to be used directly from your code. Base class constructor is not accessible from this scope. | |
| SuspectAssignment | This API supports the product infrastructure and is not intended to be used directly from your code. If condition cannot contain an assignment. | |
| SuspectLoopCondition | This API supports the product infrastructure and is not intended to be used directly from your code. Loop condition cannot contain a function call. | |
| SuspectSemicolon | This API supports the product infrastructure and is not intended to be used directly from your code. Empty statement found in if statement. | |
| SyntaxError | This API supports the product infrastructure and is not intended to be used directly from your code. Discovered syntax error. | |
| TooFewParameters | This API supports the product infrastructure and is not intended to be used directly from your code. Not all required parameters have been supplied. | |
| TooManyParameters | This API supports the product infrastructure and is not intended to be used directly from your code. There are too many actual parameters. The excess parameters will be ignored. | |
| TooManyTokensSkipped | This API supports the product infrastructure and is not intended to be used directly from your code. Too many errors. The file might not be a JScript file. | |
| TypeAssemblyCLSCompliantMismatch | This API supports the product infrastructure and is not intended to be used directly from your code. Type cannot be marked CLS compliant because the assembly is not marked as CLS compliant. | |
| TypeCannotBeExtended | This API supports the product infrastructure and is not intended to be used directly from your code. Type cannot be extended. | |
| TypeMismatch | This API supports the product infrastructure and is not intended to be used directly from your code. Type mismatch. | |
| TypeNameTooLong | This API supports the product infrastructure and is not intended to be used directly from your code. The fully qualified type name is too long. It must be less than 1,024 characters. | |
| TypeObjectNotAvailable | This API supports the product infrastructure and is not intended to be used directly from your code. The type object for this type is not available. | |
| UncaughtException | This API supports the product infrastructure and is not intended to be used directly from your code. Exception thrown and not caught. | |
| UndeclaredVariable | This API supports the product infrastructure and is not intended to be used directly from your code. Variable has not been declared. | |
| UndefinedIdentifier | This API supports the product infrastructure and is not intended to be used directly from your code. Undefined identifier. | |
| UnexpectedSemicolon | This API supports the product infrastructure and is not intended to be used directly from your code. Unexpected ";". | |
| UnreachableCatch | This API supports the product infrastructure and is not intended to be used directly from your code. Catch clause will never be reached. | |
| UnterminatedString | This API supports the product infrastructure and is not intended to be used directly from your code. String constant not terminated. | |
| URIDecodeError | This API supports the product infrastructure and is not intended to be used directly from your code. The URI to be decoded is not a valid encoding. | |
| URIEncodeError | This API supports the product infrastructure and is not intended to be used directly from your code. The URI to be encoded contains an invalid character. | |
| UselessAssignment | This API supports the product infrastructure and is not intended to be used directly from your code. An assignment creates an Expando property that is immediately thrown away. | |
| UselessExpression | This API supports the product infrastructure and is not intended to be used directly from your code. Expression has no effect. | |
| VariableLeftUninitialized | This API supports the product infrastructure and is not intended to be used directly from your code. Uninitialized variables are dangerous and slow to use. Did you intend to leave it uninitialized? | |
| VariableMightBeUnitialized | This API supports the product infrastructure and is not intended to be used directly from your code. Variable might not be initialized. | |
| VarIllegalInInterface | This API supports the product infrastructure and is not intended to be used directly from your code. Variables cannot be declared in an interface. | |
| VBArrayExpected | This API supports the product infrastructure and is not intended to be used directly from your code. A VBArray is expected. | |
| WriteOnlyProperty | This API supports the product infrastructure and is not intended to be used directly from your code. The property is write-only. | |
| WrongDirective | This API supports the product infrastructure and is not intended to be used directly from your code. Wrong debugger directive or wrong position for the directive. | |
| WrongUseOfAddressOf | This API supports the product infrastructure and is not intended to be used directly from your code. The address of operator can be used only in a list of arguments. |
Available since 1.1