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 HierarchySystemObject
SystemAttribute
Ozeki.CommonInvokerParameterNameAttribute
Namespace: Ozeki.CommonAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.54.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
Examplepublic void Foo(string param) {
if (param == null)
throw new ArgumentNullException("par");
}
See Also