CodeTransparencyClient.CreateEntryV09 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 |
|---|---|
| CreateEntryV09(RequestContent, Nullable<Boolean>, RequestContext) |
[Protocol Method] Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft
|
| CreateEntryV09(BinaryData, Nullable<Boolean>, CancellationToken) |
Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft. |
CreateEntryV09(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 Azure.Response CreateEntryV09(Azure.Core.RequestContent content, bool? waitForCommit = default, Azure.RequestContext context = default);
abstract member CreateEntryV09 : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> Azure.Response
override this.CreateEntryV09 : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> Azure.Response
Public Overridable Function CreateEntryV09 (content As RequestContent, Optional waitForCommit As Nullable(Of Boolean) = Nothing, Optional context As RequestContext = Nothing) As 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
CreateEntryV09(BinaryData, Nullable<Boolean>, CancellationToken)
- Source:
- CodeTransparencyClient.cs
Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft.
public virtual Azure.Response<BinaryData> CreateEntryV09(BinaryData body, bool? waitForCommit = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateEntryV09 : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> Azure.Response<BinaryData>
override this.CreateEntryV09 : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> Azure.Response<BinaryData>
Public Overridable Function CreateEntryV09 (body As BinaryData, Optional waitForCommit As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As 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.