InvokerParameterNameAttribute Class |
Indicates that the function argument should be string literal and match one
of the parameters of the caller function. For example, ReSharper annotates
the parameter of
ArgumentNullException
Inheritance Hierarchy Namespace: Ozeki.CommonAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.98
Syntaxpublic sealed class InvokerParameterNameAttribute : Attribute
Public NotInheritable Class InvokerParameterNameAttribute
Inherits Attribute
public ref class InvokerParameterNameAttribute sealed : public Attribute
[<SealedAttribute>]
type InvokerParameterNameAttribute =
class
inherit Attribute
endThe InvokerParameterNameAttribute type exposes the following members.
Constructors
Example
public void Foo(string param) {
if (param == null)
throw new ArgumentNullException("par"); // Warning: Cannot resolve symbol
}
See Also