Skip to main content

Constructor

C#
1
2
3
public Location(double lat, double lon) { }

Properties

Examples

C#
1
2
3
4
5
// Get the field value as a Location instance. Location filmingLocation = movieEntry.Get<Location>("filmingLocation"); // Get the field value as a dynamic (ExpandoObject) instance. dynamic filmingLocation = movieEntry.Get("filmingLocation");
C#
1
2
3
4
5
// Create a Location object. var filmingLocation = new Location(52.415936, -2.6417701); // Set the film value. movieEntry.Set("filmingLocation", filmingLocation);

Still need help?

New support request