Struct DataStoreTypes.ItemDescriptor
A versioned item (or placeholder) storeable in a data store.
Assembly: LaunchDarkly.ClientSdk.dll
Syntax
public struct DataStoreTypes.ItemDescriptor : IEquatable<DataStoreTypes.ItemDescriptor>
Constructors
|
Edit this page
View Source
ItemDescriptor(int, FeatureFlag)
Declaration
public ItemDescriptor(int version, DataModel.FeatureFlag item)
Parameters
Type |
Name |
Description |
int |
version |
the version number
|
DataModel.FeatureFlag |
item |
the data item, or null if this is a deleted item placeholder
|
Properties
|
Edit this page
View Source
Item
The data item, or null if this is a deleted item placeholder.
Declaration
public readonly DataModel.FeatureFlag Item { get; }
Property Value
|
Edit this page
View Source
Version
The version number of this data, provided by the SDK.
Declaration
public readonly int Version { get; }
Property Value
Methods
|
Edit this page
View Source
Equals(ItemDescriptor)
Declaration
public bool Equals(DataStoreTypes.ItemDescriptor other)
Parameters
Returns
|
Edit this page
View Source
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
object |
obj |
|
Returns
Overrides
|
Edit this page
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Edit this page
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Implements