A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.aws.amazon.com/sdkfornet/v3/apidocs/items/DynamoDBv2/TDocument.html below:

Document Class | AWS SDK for .NET V3

Name Description Add(string, DynamoDBEntry)

Add value to Doucment.

Add(KeyValuePair<String, DynamoDBEntry>)

Add attributes to Document.

AsArrayOfDynamoDBEntry() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsArrayOfPrimitive() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsArrayOfString() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsBoolean() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsByte() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsByteArray() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsChar() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsDateTime() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsDateTimeUtc() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsDecimal() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsDocument() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsDouble() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsDynamoDBBool() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsDynamoDBList() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsDynamoDBNull() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsGuid() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsHashSetOfByteArray() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsHashSetOfDynamoDBEntry() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsHashSetOfMemoryStream() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsHashSetOfPrimitive() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsHashSetOfString() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsInt() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsListOfByteArray() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsListOfDocument() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsListOfDynamoDBEntry() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsListOfMemoryStream() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsListOfPrimitive() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsListOfString() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsLong() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsMemoryStream() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsPrimitive() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsPrimitiveList() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsSByte() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsShort() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsSingle() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsString() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsUInt() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsULong() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. AsUShort() Inherited from Amazon.DynamoDBv2.DocumentModel.DynamoDBEntry. Clear()

Clear attributes from document.

Clone()

Clones the Document

Contains(string)

Determines if a specific attribute is set on the Document.

Contains(KeyValuePair<String, DynamoDBEntry>)

Check to see if the attributes are in the Document.

ContainsKey(string)

Check to see if the value is set on the document.

CopyTo(KeyValuePair`2[], int) DecodeBase64Attributes(String[])

Decodes root-level Base64-encoded strings to their binary representations. Use this method if the Document was constructed from JSON that contains base64-encoded binary values, which result from calling ToJson on a Document with binary data.

Individual strings become binary data. List and sets of Base64-encoded strings become lists and sets of binary data.

ForceConversion(DynamoDBEntryConversion)

Returns a new instance of Document where all unconverted .NET types are converted to DynamoDBEntry types using a specific conversion.

FromAttributeMap(Dictionary<String, AttributeValue>)

Creates a Document from an attribute map.

FromJson(string)

Creates a document from a JSON string. The conversion is as follows: Objects are converted to DynamoDB M types. Arrays are converted to DynamoDB L types. Boolean types are converted to DynamoDB BOOL types. Null values are converted to DynamoDB NULL types. Numerics are converted to DynamoDB N types. Strings are converted to DynamoDB S types.

FromJsonArray(string)

Parses JSON text to produce an array of Amazon.DynamoDBv2.DocumentModel.Document.

GetAttributeNames()

Returns the names of all the attributes.

GetEnumerator()

Gets the enumerator for the attributes.

IsAttributeChanged(string)

Returns true if the attribute has been changed.

IsDirty()

Returns true if the document contains attributes that have not been saved.

Remove(string)

Remove the attribute from the Document.

Remove(KeyValuePair<String, DynamoDBEntry>)

Removes the attributes from the document.

ToAttributeMap()

Creates a map of attribute names mapped to AttributeValue objects. Converts .NET types using the conversion specified by AWSConfigs.DynamoDBConfig.ConversionSchema

ToAttributeMap(DynamoDBEntryConversion)

Creates a map of attribute names mapped to AttributeValue objects.

ToAttributeMap(DynamoDBEntryConversion, bool)

Creates a map of attribute names mapped to AttributeValue objects.

ToAttributeUpdateMap(bool)

Creates a map of attribute names mapped to AttributeValueUpdate objects.

ToAttributeUpdateMap(DynamoDBEntryConversion, bool)

Creates a map of attribute names mapped to AttributeValueUpdate objects.

ToAttributeUpdateMap(DynamoDBEntryConversion, bool, bool)

Creates a map of attribute names mapped to AttributeValueUpdate objects.

ToExpectedAttributeMap()

Creates a map of attribute names mapped to ExpectedAttributeValue objects.

ToExpectedAttributeMap(DynamoDBEntryConversion)

Creates a map of attribute names mapped to ExpectedAttributeValue objects.

ToExpectedAttributeMap(DynamoDBEntryConversion, bool)

Creates a map of attribute names mapped to ExpectedAttributeValue objects.

ToJson()

Converts the current Document into a matching JSON string.

DynamoDB types are a superset of JSON types, thus the following DynamoDB cannot be properly represented as JSON data: PrimitiveList (SS, NS, BS types) - these sets will be converted to JSON arrays Binary Primitive (B type) - binary data will be converted to Base64 strings

If the resultant JSON is passed to Document.FromJson, the binary values will be treated as Base64 strings. Invoke Document.DecodeBase64Attributes to decode these strings into binary data.

ToJsonPretty()

Converts the current Document into a matching pretty JSON string.

DynamoDB types are a superset of JSON types, thus the following DynamoDB cannot be properly represented as JSON data: PrimitiveList (SS, NS, BS types) - these sets will be converted to JSON arrays Binary Primitive (B type) - binary data will be converted to Base64 strings

If the resultant JSON is passed to Document.FromJson, the binary values will be treated as Base64 strings. Invoke Document.DecodeBase64Attributes to decode these strings into binary data.

TryGetValue(string, out DynamoDBEntry)

Gets the value associated with the specified attribute value.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4