Home
last modified time | relevance | path

Searched refs:PropertyTypeCannotBeVoid (Results 1 – 5 of 5) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Core/corefx/
H A DSR.cs25 public const string PropertyTypeCannotBeVoid = "Property cannot have a void type."; field in SR
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Linq/Expressions/
H A DStrings.cs105 internal static string PropertyTypeCannotBeVoid => SR.PropertyTypeCannotBeVoid; field in System.Linq.Expressions.Strings
H A DError.cs267 internal static Exception PropertyTypeCannotBeVoid(string paramName) in PropertyTypeCannotBeVoid() method in System.Linq.Expressions.Error
269 return new ArgumentException(Strings.PropertyTypeCannotBeVoid, paramName); in PropertyTypeCannotBeVoid()
H A DIndexExpression.cs380 throw Error.PropertyTypeCannotBeVoid(paramName); in ValidateIndexedProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/Microsoft/Scripting/Ast/
H A DIndexExpression.cs363 if (property.PropertyType == typeof(void)) throw Error.PropertyTypeCannotBeVoid(); in ValidateIndexedProperty()