CodeTransparencyClient.GetEntryV09 Method

Definition

Overloads

Name Description
GetEntryV09(String, RequestContext)

[Protocol Method] Get receipt

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
GetEntryV09(String, CancellationToken)

Get receipt.

GetEntryV09(String, RequestContext)

Source:
CodeTransparencyClient.cs

[Protocol Method] Get receipt

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response GetEntryV09(string entryId, Azure.RequestContext context);
abstract member GetEntryV09 : string * Azure.RequestContext -> Azure.Response
override this.GetEntryV09 : string * Azure.RequestContext -> Azure.Response
Public Overridable Function GetEntryV09 (entryId As String, context As RequestContext) As Response

Parameters

entryId
String

ID of the entry to retrieve.

context
RequestContext

The request options, 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.

Applies to

GetEntryV09(String, CancellationToken)

Source:
CodeTransparencyClient.cs

Get receipt.

public virtual Azure.Response<BinaryData> GetEntryV09(string entryId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetEntryV09 : string * System.Threading.CancellationToken -> Azure.Response<BinaryData>
override this.GetEntryV09 : string * System.Threading.CancellationToken -> Azure.Response<BinaryData>
Public Overridable Function GetEntryV09 (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 that can be used to cancel the operation.

Returns

Exceptions

entryId is null.

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

Service returned a non-success status code.

Applies to