Show / Hide Table of Contents

Class BundleEntryRequest

Additional information about how this entry should be processed as part of a transaction.

Inheritance
System.Object
Element
BackboneElement
BundleEntryRequest
Implements
IFhirJsonSerializable
Inherited Members
BackboneElement.ModifierExtension
Element.Extension
Element.Fhir_comments
Element._Fhir_comments
Element.Id
Element._Id
Namespace: fhirCsR2.Models
Assembly: fhirCsR2.dll
Syntax
public class BundleEntryRequest : BackboneElement, IFhirJsonSerializable

Properties

| Improve this Doc View Source

_IfMatch

Extension container element for IfMatch

Declaration
public Element _IfMatch { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

_IfModifiedSince

Extension container element for IfModifiedSince

Declaration
public Element _IfModifiedSince { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

_IfNoneExist

Extension container element for IfNoneExist

Declaration
public Element _IfNoneExist { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

_IfNoneMatch

Extension container element for IfNoneMatch

Declaration
public Element _IfNoneMatch { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

_Method

Extension container element for Method

Declaration
public Element _Method { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

_Url

Extension container element for Url

Declaration
public Element _Url { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

IfMatch

Only perform the operation if the Etag value matches. For more information, see the API section "Managing Resource Contention".

Declaration
public string IfMatch { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IfModifiedSince

Only perform the operation if the last updated date matches. See the API documentation for "Conditional Read".

Declaration
public string IfModifiedSince { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IfNoneExist

Instruct the server not to perform the create if a specified resource already exists. For further information, see the API documentation for "Conditional Create". This is just the query portion of the URL - what follows the "?" (not including the "?").

Declaration
public string IfNoneExist { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IfNoneMatch

If the ETag values match, return a 304 Not modified status. See the API documentation for "Conditional Read".

Declaration
public string IfNoneMatch { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Method

The HTTP verb for this entry in either a update history, or a transaction/ transaction response.

Declaration
public string Method { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Url

The URL for this entry, relative to the root (the address to which the request is posted).

Declaration
public string Url { get; set; }
Property Value
Type Description
System.String

Methods

| Improve this Doc View Source

DeserializeJson(ref Utf8JsonReader, JsonSerializerOptions)

Deserialize a JSON object

Declaration
public void DeserializeJson(ref Utf8JsonReader reader, JsonSerializerOptions options)
Parameters
Type Name Description
Utf8JsonReader reader
JsonSerializerOptions options
| Improve this Doc View Source

DeserializeJsonProperty(ref Utf8JsonReader, JsonSerializerOptions, String)

Deserialize a JSON property

Declaration
public void DeserializeJsonProperty(ref Utf8JsonReader reader, JsonSerializerOptions options, string propertyName)
Parameters
Type Name Description
Utf8JsonReader reader
JsonSerializerOptions options
System.String propertyName
| Improve this Doc View Source

SerializeJson(Utf8JsonWriter, JsonSerializerOptions, Boolean)

Serialize to a JSON object

Declaration
public void SerializeJson(Utf8JsonWriter writer, JsonSerializerOptions options, bool includeStartObject = true)
Parameters
Type Name Description
Utf8JsonWriter writer
JsonSerializerOptions options
System.Boolean includeStartObject

Implements

IFhirJsonSerializable
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX