Class RequestingDataWfsFeatureSourceEventArgs
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
stringThis parameter specified the serviceUrl for the WfsFeatureSource.
overrideResponse
boolThis parameter specified if we need to override Response if we changed the response string.
xmlResponse
stringThis 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
ServiceUrl
This property gets or sets the serviceUrl for the WfsFeatureSource.
public string ServiceUrl { 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; }