Skip to content

RequestingDataWfsFeatureSourceEventArgs

Namespace: ThinkGeo.Core

This class represents the parameters passed in through the RequestingData event in WfsFeatureSource.

public class RequestingDataWfsFeatureSourceEventArgs : System.EventArgs

Inheritance ObjectEventArgsRequestingDataWfsFeatureSourceEventArgs

Remarks:

None

Properties

ServiceUrl

This property gets or sets the serviceUrl for the WfsFeatureSource.

public string ServiceUrl { get; set; }

Property Value

String

OverrideResponse

This property gets or sets the override mode. If set it ture, we will replace the response with new XmlResponse String passed in.

public bool OverrideResponse { get; set; }

Property Value

Boolean

XmlResponse

This property gets or sets the xml response string back from for the WfsFeatureSource service url.

public string XmlResponse { get; set; }

Property Value

String

Constructors

RequestingDataWfsFeatureSourceEventArgs()

This is a default constructor for the class.

public RequestingDataWfsFeatureSourceEventArgs()

Remarks:

None

RequestingDataWfsFeatureSourceEventArgs(String, Boolean, String)

This is a constructor for the class.

public RequestingDataWfsFeatureSourceEventArgs(string serviceUrl, bool overrideResponse, string xmlResponse)

Parameters

serviceUrl String
This parameter specified the serviceUrl for the WfsFeatureSource.

overrideResponse Boolean
This parameter specified if we need to override Response if we changed the response string.

xmlResponse String
This parameter specified the xmlResponse string get back from the service Url.

Remarks:

None