SuperMap.Web.OGC.GetWFSCapabilities.ProcessAsync C# (CSharp) Méthode

ProcessAsync() public méthode

${mapping_GetCapabilitiesService_method_ProcessAsync_D}
public ProcessAsync ( ) : void
Résultat void
        public void ProcessAsync()
        {
            this.ProcessAsync(null);
        }

Usage Example

 private void getWFS_Click(object sender, RoutedEventArgs e)
 {
     GetWFSCapabilities getCapabilities = new GetWFSCapabilities(url);
     getCapabilities.ProcessCompleted += new EventHandler<ResultEventArgs<List<WFSFeatureType>>>(getCapabilities_ProcessCompleted);
     getCapabilities.ProcessAsync();
     getCapabilities.Failed += new EventHandler<FailedEventArgs>(ServiceError_Failed);
 }
All Usage Examples Of SuperMap.Web.OGC.GetWFSCapabilities::ProcessAsync