System.Linq.Expressions.Strings.ExtensionNodeMustOverrideProperty C# (CSharp) Method

ExtensionNodeMustOverrideProperty() static private method

A string like "Extension node must override the property {0}."
static private ExtensionNodeMustOverrideProperty ( object p0 ) : string
p0 object
return string
        internal static string ExtensionNodeMustOverrideProperty(object p0) => SR.Format(SR.ExtensionNodeMustOverrideProperty, p0);

Usage Example

 internal static Exception ExtensionNodeMustOverrideProperty(object p0)
 {
     return(new InvalidOperationException(Strings.ExtensionNodeMustOverrideProperty(p0)));
 }
Strings