CodeTransparencyClient.CreateEntryV09Async Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| CreateEntryV09Async(RequestContent, Nullable<Boolean>, RequestContext) |
[Protocol Method] Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft
|
| CreateEntryV09Async(BinaryData, Nullable<Boolean>, CancellationToken) |
Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft. |
CreateEntryV09Async(RequestContent, Nullable<Boolean>, RequestContext)
- Source:
- CodeTransparencyClient.cs
[Protocol Method] Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<Azure.Response> CreateEntryV09Async(Azure.Core.RequestContent content, bool? waitForCommit = default, Azure.RequestContext context = default);
abstract member CreateEntryV09Async : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.CreateEntryV09Async : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function CreateEntryV09Async (content As RequestContent, Optional waitForCommit As Nullable(Of Boolean) = Nothing, Optional context As RequestContext = Nothing) As Task(Of Response)
Parameters
- content
- RequestContent
The content to send as the body of the request.
If true, waits for the entry to be committed before returning. Returns 201 with receipt or 503 on rollback.
- 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
content is null.
Service returned a non-success status code.
Applies to
CreateEntryV09Async(BinaryData, Nullable<Boolean>, CancellationToken)
- Source:
- CodeTransparencyClient.cs
Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft.
public virtual System.Threading.Tasks.Task<Azure.Response<BinaryData>> CreateEntryV09Async(BinaryData body, bool? waitForCommit = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateEntryV09Async : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<BinaryData>>
override this.CreateEntryV09Async : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<BinaryData>>
Public Overridable Function CreateEntryV09Async (body As BinaryData, Optional waitForCommit As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of BinaryData))
Parameters
- body
- BinaryData
CoseSign1 signature envelope.
If true, waits for the entry to be committed before returning. Returns 201 with receipt or 503 on rollback.
- cancellationToken
- CancellationToken
The cancellation token that can be used to cancel the operation.
Returns
Exceptions
body is null.
Service returned a non-success status code.