${mapping_GetWFSDescribeFeatureType_Tile}

${mapping_GetWFSDescribeFeatureType_Description}

Inheritance: WFSServiceBase
 private void getCapabilities_ProcessCompleted(object sender, ResultEventArgs<List<WFSFeatureType>> e)
 {
     if (e.Result != null && e.Result.Count > 9)
     {
         GetWFSDescribeFeatureType featureType = new GetWFSDescribeFeatureType(url);
         featureType.TypeNames.Add("World:Countries");
         featureType.ProcessAsync();
         featureType.ProcessCompleted += new EventHandler<ResultEventArgs<Dictionary<string, List<WFSFeatureDescription>>>>(featureType_ProcessCompleted);
         featureType.Failed += new EventHandler<FailedEventArgs>(ServiceError_Failed);
     }
 }
 private void getType_Click(object sender, RoutedEventArgs e)
 {
     GetWFSDescribeFeatureType getType = new GetWFSDescribeFeatureType("http://localhost:8090/iserver/services/data-world/wfs100");
     getType.TypeNames.Add("World:Ocean");
     getType.TypeNames.Add("World:Capitals");
     getType.ProcessAsync();
     getType.ProcessCompleted += new EventHandler<ResultEventArgs<Dictionary<string, List<WFSFeatureDescription>>>>(getType_ProcessCompleted);
     getType.Failed += new EventHandler<FailedEventArgs>(getType_Failed);
 }