Exemple #1
0
 /// <summary>
 ///     Attempts to locate a dac via the symbol server.  This function will then copy the file
 ///     locally to the symbol cache and return the location of the local file on disk.  Note that
 ///     the dac should not validate if the properties of the file match the one it was indexed under.
 /// </summary>
 /// <param name="dac">The dac to locate.</param>
 /// <returns>A full path on disk (local) of where the binary was copied to, null if it was not found.</returns>
 /// <inheritdoc />
 public string FindBinary(IDacInfo dac) => Locator.FindBinary((dac as DacInfoAdapter)?.DacInfo);
Exemple #2
0
 /// <summary>
 ///     Attempts to locate a dac via the symbol server.  This function will then copy the file
 ///     locally to the symbol cache and return the location of the local file on disk.  Note that
 ///     the dac should not validate if the properties of the file match the one it was indexed under.
 /// </summary>
 /// <param name="dac">The dac to locate.</param>
 /// <returns>A full path on disk (local) of where the binary was copied to, null if it was not found.</returns>
 /// <inheritdoc />
 public Task <string> FindBinaryAsync(IDacInfo dac) => Locator.FindBinaryAsync((dac as DacInfoAdapter)?.DacInfo);