public SoapRfcPreparedFunction(FunctionMetadata function, SoapRfcStructureMapper structureMapper, SoapRfcWebClient webClient)
     : base(function.Name)
 {
     this.function = function;
     this.webClient = webClient;
     this.structureMapper = structureMapper;
 }
 public SoapSapRfcConnection(string name)
 {
     this.Destination = SapSoapRfcConfigurationSection.GetConfiguration(name);
     this._webClient = new SoapRfcWebClient(this.Destination);
     this.metadataCache = new SoapRfcMetadataCache(this._webClient);
     this.structureMapper = new SoapRfcStructureMapper(new SoapRfcValueMapper());
 }