Exemplo n.º 1
0
 private static dynamic GetMetadata(string urn)
 {
     try {
         Console.WriteLine("**** Getting Metadata of: " + urn);
         dynamic response = DerivativesAPI.GetMetadata(urn);
         return(response);
     } catch (Exception) {
         Console.WriteLine("**** Failed getting Metadata of: " + urn);
         return(null);
     }
 }