We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d2902 commit e495cd7Copy full SHA for e495cd7
examples/IBM.Watson.VisualRecognition.v4.Examples/ServiceExample.cs
@@ -47,7 +47,7 @@ static void Main(string[] args)
47
ServiceExample example = new ServiceExample();
48
49
example.Analyze();
50
-
+
51
52
Console.WriteLine("Examples complete. Press any key to close the application.");
53
Console.ReadKey();
@@ -78,8 +78,8 @@ public void Analyze()
78
imagesFile.Add(fileWithMetadata);
79
80
result = service.Analyze(
81
- collectionIds: "{collectionId}",
82
- features: "objects",
+ collectionIds: new List<string>() { "{collectionId}" },
+ features: new List<string>() { "objects" },
83
imagesFile: imagesFile);
84
85
Console.WriteLine(result.Response);
0 commit comments