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.Common
Assembly:
OzekiSDK (in OzekiSDK.dll) Version: 10.3.199.0
Syntaxpublic sealed class InvokerParameterNameAttribute : Attribute
Public NotInheritable Class InvokerParameterNameAttribute
Inherits Attribute
public ref class InvokerParameterNameAttribute sealed : public Attribute
[<SealedAttribute>]
type InvokerParameterNameAttribute =
class
inherit Attribute
end
The InvokerParameterNameAttribute type exposes the following members.
Constructors
Examplespublic void Foo(string param) {
if (param == null)
throw new ArgumentNullException("par");
}
See Also