Table of Contents

Class RequestingDataWfsFeatureSourceEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

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

public class RequestingDataWfsFeatureSourceEventArgs : EventArgs
Inheritance
RequestingDataWfsFeatureSourceEventArgs
Inherited Members

Remarks

None

Constructors

RequestingDataWfsFeatureSourceEventArgs()

This is a default constructor for the class.

public RequestingDataWfsFeatureSourceEventArgs()

Remarks

None

RequestingDataWfsFeatureSourceEventArgs(string, bool, 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 bool

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

Properties

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

bool

ServiceUrl

This property gets or sets the serviceUrl for the WfsFeatureSource.

public string ServiceUrl { get; set; }

Property Value

string

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