RequestingDataWfsFeatureSourceEventArgs¶
Namespace: ThinkGeo.Core
This class represents the parameters passed in through the RequestingData event in WfsFeatureSource.
public class RequestingDataWfsFeatureSourceEventArgs : System.EventArgs
Inheritance Object → EventArgs → RequestingDataWfsFeatureSourceEventArgs
Remarks:
None
Properties¶
ServiceUrl¶
This property gets or sets the serviceUrl for the WfsFeatureSource.
public string ServiceUrl { get; set; }
Property Value¶
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¶
XmlResponse¶
This property gets or sets the xml response string back from for the WfsFeatureSource service url.
public string XmlResponse { get; set; }
Property Value¶
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