Share via


CodeTransparencyClient.GetEntryReceipt Method

Definition

Overloads

GetEntryReceipt(String, RequestContext)

[Protocol Method] Get the receipt of an entry given a specific entry id.

GetEntryReceipt(String, CancellationToken)

Get the receipt of an entry given a specific entry id.

GetEntryReceipt(String, RequestContext)

Source:
CodeTransparencyClient.cs

[Protocol Method] Get the receipt of an entry given a specific entry id.

public virtual Azure.Response GetEntryReceipt (string entryId, Azure.RequestContext context);
abstract member GetEntryReceipt : string * Azure.RequestContext -> Azure.Response
override this.GetEntryReceipt : string * Azure.RequestContext -> Azure.Response
Public Overridable Function GetEntryReceipt (entryId As String, context As RequestContext) As Response

Parameters

entryId
String

ID of the entry to retrieve.

context
RequestContext

The request context, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

entryId is null.

entryId is an empty string, and was expected to be non-empty.

Service returned a non-success status code.

Examples

This sample shows how to call GetEntryReceipt and parse the result.

Uri endpoint = new Uri("<https://my-service.azure.com>");
AzureKeyCredential credential = new AzureKeyCredential("<key>");
CodeTransparencyClient client = new CodeTransparencyClient(endpoint, credential);

Response response = client.GetEntryReceipt("<entryId>", null);

JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;
Console.WriteLine(result.ToString());

This sample shows how to call GetEntryReceipt with all parameters and parse the result.

Uri endpoint = new Uri("<https://my-service.azure.com>");
AzureKeyCredential credential = new AzureKeyCredential("<key>");
CodeTransparencyClient client = new CodeTransparencyClient(endpoint, credential);

Response response = client.GetEntryReceipt("<entryId>", null);

JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;
Console.WriteLine(result.ToString());

Applies to

GetEntryReceipt(String, CancellationToken)

Source:
CodeTransparencyClient.cs

Get the receipt of an entry given a specific entry id.

public virtual Azure.Response<BinaryData> GetEntryReceipt (string entryId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetEntryReceipt : string * System.Threading.CancellationToken -> Azure.Response<BinaryData>
override this.GetEntryReceipt : string * System.Threading.CancellationToken -> Azure.Response<BinaryData>
Public Overridable Function GetEntryReceipt (entryId As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of BinaryData)

Parameters

entryId
String

ID of the entry to retrieve.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

entryId is null.

entryId is an empty string, and was expected to be non-empty.

Examples

This sample shows how to call GetEntryReceipt.

Uri endpoint = new Uri("<https://my-service.azure.com>");
AzureKeyCredential credential = new AzureKeyCredential("<key>");
CodeTransparencyClient client = new CodeTransparencyClient(endpoint, credential);

Response<BinaryData> response = client.GetEntryReceipt("<entryId>");

This sample shows how to call GetEntryReceipt with all parameters.

Uri endpoint = new Uri("<https://my-service.azure.com>");
AzureKeyCredential credential = new AzureKeyCredential("<key>");
CodeTransparencyClient client = new CodeTransparencyClient(endpoint, credential);

Response<BinaryData> response = client.GetEntryReceipt("<entryId>");

Applies to