Function Parse is not available in structure FIPv4Address

Hello, I have a problem with the structure FIPv4Address. I can not write:

FIPv4Address::Parse(Ip, Address);

Why does the compiler not see:

public static NETWORKING_API bool Parse(const FString& AddressString, FIPv4Address& OutAddress);

How to access this function?

You need to add “Networking” module in your build.cs file and add “Networking/Public/Interfaces/IPv4/IPv4Address.h” where you use parse function.

I did this, but the problem is that I can write:

FIPv4Address::FIPv4Address(IpAddres.A, IpAddres.B, IpAddres.C, IpAddres.D);

But I can not write:

FIPv4Address::Parse(Ip, Address);

Because only this function is not visible (and others with definition NETWORKING_API).

I am facing the same problem, did you find any solution?