No items found.

Invoking private methods outside declaring class in AX 2012

In short, public allows for  unrestricted use by any classes, protected – only by derived and declaring, private narrows access to declaring class. So, by theory, we shouldn’t be able to access private method outside declaring class. In X++ this is true and false at the same time. How is it possible? Surprisingly, it is very simple. We only need to cast an instance of our class to the object type – base class from which all other classes are derived. Please apply and run following (pseudo) code and you will see.

‍

class TestClass1

{

public void publicMethod()

{

   info("Hey, I'm public!");

}

protected void protectedMethod()

{

   info("Hey, I'm protected!");

}

private void privateMethod()

{

   info("Hey, I'm private!");

}

}

class TestClass2

{

public static void main(Args args)

{

   TestClass1 class1;

   Object objectClass1;

   class1 = new TestClass1();

   objectClass1 = class1;

   objectClass1.publicMethod();

   objectClass1.protectedMethod();

   objectClass1.privateMethod();

}

}

I personally see this functionality as a bug, but quite useful one. It happened to me already few times, that I had to invoke some private methods. Normally I would overwrite interested object and change its access modifier. But this approach is definitely not elegant. Firstly, having copy in upper layer can cause some problems when upgrading. Secondly, we globally and explicitly change developer’s will.

Summarizing, both solutions should be deeply considered before use, but one of them seems to be much easier to implement.

There is more. Similarly, we can also invoke private table methods. Of course instead of object type a common must be used.

‍

See more

AGA pomaga – poznaj inteligentnego asystenta do przetwarzania zapytań ofertowych: ANEGIS Generative Assistant

Read article
Text Link

Jak z pomocą narzędzi Power Platform, Microsoft Fabric i AI zrealizować plan na cyfrową transformację? ANEGIS Power Center

Read article
Text Link

Obowiązkowy KSeF startuje za 4 miesiące! Umów się na bezpłatne konsultacje i przygotuj swój system na zmiany

Read article
Text Link
Back to all

Looking for a Microsoft partner? Let's talk about your project

Work with a team that has delivered implementations and projects for dozens of companies. Schedule an introductory call and see:

How to tailor Dynamics 365 to your company's processes, rather than the other way around

Which areas are worth automating to save time and reduce costs

Here is the step-by-step implementation process with Anegis: from analysis to post-launch support

Select a meeting time
Dziękujemy za wiadomość!
Oops! Something went wrong while submitting the form.
Microsoft AI Builder
Microsoft Copilot Studio
No items found.
No items found.
No items found.