Is there a way to retrieve the values of variables defined in my settings.cs class using JavaScript?
Here are the variables I have defined in settings.cs:
public static class BinaryPosition
{
public const string ParentIDQueryStringVariable = "test";
public const string PlacementQueryStringVariable = "testing";
}
Can someone please explain how to access the values of ParentIDQueryStringVariable and PlacementQueryStringVariable in a .js file? Thanks in advance!