Changeset 4722
- Timestamp:
- 06/16/08 16:25:26 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/nuxleus/Source/CodeSamples/AwsSdbSOAP_Test/Program.cs
r4715 r4722 28 28 stopwatch.Start(); 29 29 agent.Initialize(); 30 agent.Invoke<XElement>( );30 agent.Invoke<XElement>(args[0]); 31 31 stopwatch.Stop(); 32 32 trunk/nuxleus/Source/Nuxleus.Extension.Aws/Agent.cs
r4721 r4722 35 35 } 36 36 37 public void Invoke<T>( ) {37 public void Invoke<T>(string fileName) { 38 38 Scope scope = new Scope(); 39 39 scope += profiler.Scope; … … 46 46 using (WorkerQueue q = new WorkerQueue(m_workers)) { 47 47 List<string> lines = new List<string>(); 48 using (StreamReader csvReader = new StreamReader( "AD.txt", Encoding.UTF8, true)) {48 using (StreamReader csvReader = new StreamReader(fileName, Encoding.UTF8, true)) { 49 49 string inputLine; 50 50 while ((inputLine = csvReader.ReadLine()) != null) {
