CodeTransparencyClient.CreateEntryAsync 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 |
|---|---|
| CreateEntryAsync(RequestContent, Nullable<Boolean>, RequestContext) |
[Protocol Method] Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft
|
| CreateEntryAsync(WaitUntil, BinaryData, CancellationToken) |
Obsolete.
Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft. |
| CreateEntryAsync(BinaryData, Nullable<Boolean>, CancellationToken) |
Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft. |
CreateEntryAsync(RequestContent, Nullable<Boolean>, RequestContext)
- Source:
- CodeTransparencyClient.cs
- 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> CreateEntryAsync(Azure.Core.RequestContent content, bool? waitForCommit = default, Azure.RequestContext context = default);
abstract member CreateEntryAsync : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.CreateEntryAsync : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function CreateEntryAsync (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
CreateEntryAsync(WaitUntil, BinaryData, CancellationToken)
- Source:
- CodeTransparencyClient.cs
Caution
Use CreateEntryAsync(BinaryData, bool, CancellationToken) instead.
Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft.
[System.Obsolete("Use CreateEntryAsync(BinaryData, bool, CancellationToken) instead.")]
public virtual System.Threading.Tasks.Task<Azure.Operation<BinaryData>> CreateEntryAsync(Azure.WaitUntil waitUntil, BinaryData body, System.Threading.CancellationToken cancellationToken = default);
[<System.Obsolete("Use CreateEntryAsync(BinaryData, bool, CancellationToken) instead.")>]
abstract member CreateEntryAsync : Azure.WaitUntil * BinaryData * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Operation<BinaryData>>
override this.CreateEntryAsync : Azure.WaitUntil * BinaryData * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Operation<BinaryData>>
Public Overridable Function CreateEntryAsync (waitUntil As WaitUntil, body As BinaryData, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Operation(Of BinaryData))
Parameters
- waitUntil
- WaitUntil
Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.
- body
- BinaryData
CoseSign1 signature envelope.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
- Attributes
Exceptions
body is null.
Applies to
CreateEntryAsync(BinaryData, Nullable<Boolean>, CancellationToken)
- Source:
- CodeTransparencyClient.cs
- 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.NullableResponse<BinaryData>> CreateEntryAsync(BinaryData body, bool? waitForCommit = default, System.Threading.CancellationToken cancellationToken = default);
public virtual System.Threading.Tasks.Task<Azure.Response<BinaryData>> CreateEntryAsync(BinaryData body, bool? waitForCommit = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateEntryAsync : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.NullableResponse<BinaryData>>
override this.CreateEntryAsync : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.NullableResponse<BinaryData>>
abstract member CreateEntryAsync : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<BinaryData>>
override this.CreateEntryAsync : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<BinaryData>>
Public Overridable Function CreateEntryAsync (body As BinaryData, Optional waitForCommit As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of NullableResponse(Of BinaryData))
Public Overridable Function CreateEntryAsync (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.