DynamicScriptObject.TryInvokeMember Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Calls a method on the script object.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
override bool TryInvokeMember(System::Dynamic::InvokeMemberBinder ^ binder, cli::array <System::Object ^> ^ args, [Runtime::InteropServices::Out] System::Object ^ % result);
public override bool TryInvokeMember (System.Dynamic.InvokeMemberBinder binder, object[] args, out object result);
override this.TryInvokeMember : System.Dynamic.InvokeMemberBinder * obj[] * obj -> bool
Public Overrides Function TryInvokeMember (binder As InvokeMemberBinder, args As Object(), ByRef result As Object) As Boolean
Parameters
- binder
- InvokeMemberBinder
The binder provided by the call site.
- args
- Object[]
The arguments to pass to the default method.
- result
- Object
The method result.
Returns
Always return true
.
Exceptions
binder
is null
.
The method does not exist.
Remarks
The TryInvokeMember method throws an exception if an invalid access is attempted.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.