windowsforms-devexpress-dot-xtramap-dot-mapwebrequesteventargs-c8dda139.md
Gets or sets the Referer field of the HTTP header.
Namespace : DevExpress.XtraMap
Assembly : DevExpress.XtraMap.v25.2.dll
NuGet Package : DevExpress.Win.Map
public string Referer { get; set; }
Public Property Referer As String
| Type | Description |
|---|---|
| String |
A String value.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Referer property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-map-connect-to-openstreetmap/CS/ConnectToOpenStreet/Form1.cs#L39
e.UserAgent = "Sample app with OSM tiles";
e.Referer = "https://www.mycompanysite.com/";
}
winforms-map-create-different-map-shapes/CS/MapItemsExample/Form1.cs#L113
e.UserAgent = "Sample OSM map example";
e.Referer = "https://www.mycompanysite.com/";
}
winforms-map-use-openstreetmap-search-service/CS/OsmSearchSample/MainForm.cs#L31
e.UserAgent = "Sample app with OSM tiles and search";
e.Referer = "https://www.mycompanysite.com/";
}
winforms-map-connect-to-openstreetmap/VB/ConnectToOpenStreet/Form1.vb#L36
e.UserAgent = "Sample app with OSM tiles"
e.Referer = "https://www.mycompanysite.com/"
End Sub
winforms-map-create-different-map-shapes/VB/MapItemsExample/Form1.vb#L91
e.UserAgent = "Sample OSM map example"
e.Referer = "https://www.mycompanysite.com/"
End Sub
See Also