InvokeMethod – Invoking a method via reflection

InvokeMethod – Invoking a method via reflection

' Invoke a method via reflection and return its result - return null if method ' doesn't exist or throws' Note: requires Imports System.Reflection'' Example:'    Function GetCompleteName(ByVal firstName As String,'  ByVal lastName As String)'       Return lastName & ", " & firstName'    End Function'    ...'    MessageBox.Show(InvokeMethod(Me, "GetCompleteName", False, "Marco",'  "Bellinaso"))Function InvokeMethod(ByVal obj As Object, ByVal methodName As String, _    ByVal throwIfError As Boolean, ByVal ParamArray args() As Object) As Object    Try        Return obj.GetType().InvokeMember(methodName, BindingFlags.Instance Or _            BindingFlags.InvokeMethod Or BindingFlags.Public, Nothing, obj, _            args)    Catch ex As Exception        If throwIfError Then Throw ex    End Try    ' if method doesn't exists or throws    Return NothingEnd Function

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved