diff --git a/api/LaunchDarkly.Sdk.ApplicationInfo.html b/api/LaunchDarkly.Sdk.ApplicationInfo.html
new file mode 100644
index 00000000..a14cecf5
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.ApplicationInfo.html
@@ -0,0 +1,267 @@
+
+
+
+
+
+
+
+ Class ApplicationInfo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class ApplicationInfo
+
+ An object that encapsulates application metadata.
+
+
+
+
Inheritance
+
System.Object
+
ApplicationInfo
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public sealed class ApplicationInfo : ValueType
+
+ Constructors
+
+
+ ApplicationInfo(String, String, String, String)
+ Constructs a new ApplicationInfo instance.
+
+
+ Declaration
+
+
public ApplicationInfo(string id, string name, string version, string versionName)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ id
+ id of the application
+
+
+
+ System.String
+ name
+ name of the application
+
+
+
+ System.String
+ version
+ version of the application
+
+
+
+ System.String
+ versionName
+ friendly name for the version
+
+
+
+
+ Properties
+
+
+ ApplicationId
+ A unique identifier representing the application where the LaunchDarkly SDK is running.
+
+
+ Declaration
+
+
public string ApplicationId { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ ApplicationName
+ A human friendly name for the application in which the LaunchDarkly SDK is running.
+
+
+ Declaration
+
+
public string ApplicationName { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ ApplicationVersion
+ A value representing the version of the application where the LaunchDarkly SDK is running.
+
+
+ Declaration
+
+
public string ApplicationVersion { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ ApplicationVersionName
+ A human friendly name for the version of the application in which the LaunchDarkly SDK is running.
+
+
+ Declaration
+
+
public string ApplicationVersionName { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html b/api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html
new file mode 100644
index 00000000..8f9f9354
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html
@@ -0,0 +1,344 @@
+
+
+
+
+
+
+
+ Class ApplicationInfoBuilder
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class ApplicationInfoBuilder
+
+ Contains methods for configuring the application metadata. Application metadata may be used in LaunchDarkly
+analytics or other product features.
+
+
+
+
Inheritance
+
System.Object
+
ApplicationInfoBuilder
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public sealed class ApplicationInfoBuilder : Object
+
+ Constructors
+
+
+ ApplicationInfoBuilder()
+
+
+ Declaration
+
+
public ApplicationInfoBuilder()
+
+ Methods
+
+
+ ApplicationId(String)
+ Sets a unique identifier representing the application where the LaunchDarkly SDK is running.
+This can be specified as any string value as long as it only uses the following characters: ASCII
+letters, ASCII digits, period, hyphen, underscore. A string containing any other characters will be
+ignored.
+
+
+ Declaration
+
+
public ApplicationInfoBuilder ApplicationId(string applicationId)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ applicationId
+ the application identifier
+
+
+
+
+ Returns
+
+
+ ApplicationName(String)
+ Sets a human friendly name for the application in which the LaunchDarkly SDK is running.
+
This can be specified as any string value as long as it only uses the following characters: ASCII
+letters, ASCII digits, period, hyphen, underscore. A string containing any other characters will be
+ignored.
+
+
+ Declaration
+
+
public ApplicationInfoBuilder ApplicationName(string applicationName)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ applicationName
+ the human friendly name
+
+
+
+
+ Returns
+
+
+ ApplicationVersion(String)
+ Sets a unique identifier representing the version of the application where the LaunchDarkly SDK
+is running.
+
This can be specified as any string value as long as it only uses the following characters: ASCII
+letters, ASCII digits, period, hyphen, underscore. A string containing any other characters will be
+ignored.
+
+
+ Declaration
+
+
public ApplicationInfoBuilder ApplicationVersion(string applicationVersion)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ applicationVersion
+ the application version
+
+
+
+
+ Returns
+
+
+ ApplicationVersionName(String)
+ Sets a human friendly name for the version of the application in which the LaunchDarkly SDK is running.
+
This can be specified as any string value as long as it only uses the following characters: ASCII
+letters, ASCII digits, period, hyphen, underscore. A string containing any other characters will be
+ignored.
+
+
+ Declaration
+
+
public ApplicationInfoBuilder ApplicationVersionName(string applicationVersionName)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ applicationVersionName
+ the human friendly version name
+
+
+
+
+ Returns
+
+
+ Build()
+
+
+ Declaration
+
+
public ApplicationInfo Build()
+
+ Returns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html b/api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html
new file mode 100644
index 00000000..45e0bbfc
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html
@@ -0,0 +1,201 @@
+
+
+
+
+
+
+
+ Class ConfigLayerBuilder
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class ConfigLayerBuilder
+
+
+
+
+
Inheritance
+
System.Object
+
ConfigLayerBuilder
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public class ConfigLayerBuilder : Object
+
+ Constructors
+
+
+ ConfigLayerBuilder()
+
+
+ Declaration
+
+
public ConfigLayerBuilder()
+
+ Methods
+
+
+ Build()
+
+
+ Declaration
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ Layer
+ the layer
+
+
+
+
+
+ SetAppInfo(ApplicationInfo)
+
+
+ Declaration
+
+
public ConfigLayerBuilder SetAppInfo(ApplicationInfo info)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ ApplicationInfo
+ info
+ the application info that will be used by this layer when built.
+
+
+
+
+ Returns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html b/api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html
new file mode 100644
index 00000000..5c382c5c
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html
@@ -0,0 +1,292 @@
+
+
+
+
+
+
+
+ Class EnvironmentReporterBuilder
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class EnvironmentReporterBuilder
+
+ EnvironmentReporterBuilder constructs an IEnvironmentReporter that is capable
+of returning properties associated with the runtime environment of the SDK.
+
+
+
+
Inheritance
+
System.Object
+
EnvironmentReporterBuilder
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public sealed class EnvironmentReporterBuilder : Object
+
+ Constructors
+
+
+ EnvironmentReporterBuilder()
+
+
+ Declaration
+
+
public EnvironmentReporterBuilder()
+
+ Methods
+
+
+ Build()
+ Builds an IEnvironmentReporter, which can be used to obtain information about
+the runtime environment of the SDK.
+
+
+ Declaration
+
+
public IEnvironmentReporter Build()
+
+ Returns
+
+
+ SetConfigLayer(Layer)
+ Sets the properties that come from the user-provided SDK configuration.
+Properties in this layer will always override properties from the platform layer.
+
+
+ Declaration
+
+
public EnvironmentReporterBuilder SetConfigLayer(Layer config)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ Layer
+ config
+ the Layer.
+
+
+
+
+ Returns
+
+
+
+ Sets the properties that come from the platform-specific runtime information.
+Properties in this layer will always override properties from the default layer (provisioned
+by this build.)
+
+
+ Declaration
+
+
public EnvironmentReporterBuilder SetPlatformLayer(Layer platform)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ Layer
+ platform
+ the Layer.
+
+
+
+
+ Returns
+
+
+ SetSdkLayer(Layer)
+ Sets the properties that come from the SDK that is using this EnvironmentReporterBuilder .
+Properties in this layer will always override properties from the default layer.
+
+
+ Declaration
+
+
public EnvironmentReporterBuilder SetSdkLayer(Layer sdkLayer)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ Layer
+ sdkLayer
+ the Layer.
+
+
+
+
+ Returns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html b/api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html
new file mode 100644
index 00000000..7225cc73
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html
@@ -0,0 +1,216 @@
+
+
+
+
+
+
+
+ Interface IEnvironmentReporter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Interface IEnvironmentReporter
+
+ An IEnvironmentReporter is able to report various attributes
+of the environment in which the application is running.
+
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public interface IEnvironmentReporter
+
+ Properties
+
+
+ ApplicationInfo
+
+
+ Declaration
+
+
ApplicationInfo ApplicationInfo { get; }
+
+ Property Value
+
+
+ DeviceInfo
+
+
+ Declaration
+
+
DeviceInfo DeviceInfo { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ DeviceInfo
+ the DeviceInfo for the application environment
+
+
+
+
+
+ Locale
+
+
+ Declaration
+
+
string Locale { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+ the locale for the application environment in the format languagecode2-country/regioncode2
+
+
+
+
+
+ OsInfo
+
+
+ Declaration
+
+
OsInfo OsInfo { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ OsInfo
+ the OsInfo for the application environment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.EnvReporting.Layer.html b/api/LaunchDarkly.Sdk.EnvReporting.Layer.html
new file mode 100644
index 00000000..0dd2577f
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.EnvReporting.Layer.html
@@ -0,0 +1,269 @@
+
+
+
+
+
+
+
+ Class Layer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class Layer
+
+ Represents one layer of sourcing environment properties. A layer may know how to source any
+number of properties (even possibly 0 properties in edge cases), in which case it may return null for individual
+properties.
+
+
+
+
Inheritance
+
System.Object
+
Layer
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public sealed class Layer : ValueType
+
+ Constructors
+
+
+ Layer(Nullable<ApplicationInfo>, Nullable<OsInfo>, Nullable<DeviceInfo>, String)
+ Constructs a new layer with optional property values.
+
+
+ Declaration
+
+
public Layer(Nullable<ApplicationInfo> appInfo, Nullable<OsInfo> osInfo, Nullable<DeviceInfo> deviceInfo, string locale)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.Nullable <ApplicationInfo >
+ appInfo
+ the optional ApplicationInfo.
+
+
+
+ System.Nullable <OsInfo >
+ osInfo
+ the optional OsInfo.
+
+
+
+ System.Nullable <DeviceInfo >
+ deviceInfo
+ the optional DeviceInfo.
+
+
+
+ System.String
+ locale
+ the optional application locale.
+
+
+
+
+ Properties
+
+
+ ApplicationInfo
+
+
+ Declaration
+
+
public Nullable<ApplicationInfo> ApplicationInfo { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <ApplicationInfo >
+
+
+
+
+
+ DeviceInfo
+
+
+ Declaration
+
+
public Nullable<DeviceInfo> DeviceInfo { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <DeviceInfo >
+
+
+
+
+
+ Locale
+ The application locale in the format languagecode2-country/regioncode2.
+
+
+ Declaration
+
+
public string Locale { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ OsInfo
+ The operating system info.
+
+
+ Declaration
+
+
public Nullable<OsInfo> OsInfo { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <OsInfo >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html b/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html
new file mode 100644
index 00000000..063014f7
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+ Class DeviceInfo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class DeviceInfo
+
+ An object that encapsulates application metadata.
+
+
+
+
Inheritance
+
System.Object
+
DeviceInfo
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public sealed class DeviceInfo : ValueType
+
+ Constructors
+
+
+ DeviceInfo(String, String)
+ Constructs a new DeviceInfo instance.
+
+
+ Declaration
+
+
public DeviceInfo(string manufacturer, string model)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ manufacturer
+ the manufacturer.
+
+
+
+ System.String
+ model
+ the model.
+
+
+
+
+ Properties
+
+
+ Manufacturer
+ The device's manufacturer.
+
+
+ Declaration
+
+
public string Manufacturer { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ Model
+
+
+ Declaration
+
+
public string Model { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html b/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html
new file mode 100644
index 00000000..22f5063e
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html
@@ -0,0 +1,237 @@
+
+
+
+
+
+
+
+ Class OsInfo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class OsInfo
+
+ An object that encapsulates application metadata.
+
+
+
+
Inheritance
+
System.Object
+
OsInfo
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public sealed class OsInfo : ValueType
+
+ Constructors
+
+
+ OsInfo(String, String, String)
+ Constructs a new OsInfo instance.
+
+
+ Declaration
+
+
public OsInfo(string family, string name, string version)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ family
+ the family.
+
+
+
+ System.String
+ name
+ the name.
+
+
+
+ System.String
+ version
+ the version.
+
+
+
+
+ Properties
+
+
+ Family
+ The operating system's family.
+
+
+ Declaration
+
+
public string Family { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ Name
+ The operating system's name.
+
+
+ Declaration
+
+
public string Name { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ Version
+ The operating system's version.
+
+
+ Declaration
+
+
public string Version { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.html b/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.html
new file mode 100644
index 00000000..f17ad6d2
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+ Namespace LaunchDarkly.Sdk.EnvReporting.LayerModels
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Namespace LaunchDarkly.Sdk.EnvReporting.LayerModels
+
+
+
+
+ Classes
+
+
+ An object that encapsulates application metadata.
+
+
+ An object that encapsulates application metadata.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.EnvReporting.html b/api/LaunchDarkly.Sdk.EnvReporting.html
new file mode 100644
index 00000000..404cc0ad
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.EnvReporting.html
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+ Namespace LaunchDarkly.Sdk.EnvReporting
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Namespace LaunchDarkly.Sdk.EnvReporting
+
+
+
+
+ Classes
+
+
+
+
+ EnvironmentReporterBuilder constructs an IEnvironmentReporter that is capable
+of returning properties associated with the runtime environment of the SDK.
+
+
+ Represents one layer of sourcing environment properties. A layer may know how to source any
+number of properties (even possibly 0 properties in edge cases), in which case it may return null for individual
+properties.
+
+ Interfaces
+
+
+ An IEnvironmentReporter is able to report various attributes
+of the environment in which the application is running.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html b/api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html
new file mode 100644
index 00000000..cf7a8c15
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html
@@ -0,0 +1,209 @@
+
+
+
+
+
+
+
+ Class ValidationUtils
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class ValidationUtils
+
+ Collection of utility functions for doing validation related work.
+
+
+
+
Inheritance
+
System.Object
+
ValidationUtils
+
+
+ Assembly : LaunchDarkly.CommonSdk.dll
+ Syntax
+
+
public static class ValidationUtils : Object
+
+ Methods
+
+
+ SanitizeSpaces(String)
+
+
+ Declaration
+
+
public static string SanitizeSpaces(string s)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ s
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+ A string with all spaces replaced by hyphens.
+
+
+
+
+
+ ValidateStringValue(String)
+ Validates that a string is non-empty, not too longer for our systems, and only contains
+alphanumeric characters, hyphens, periods, and underscores.
+
+
+ Declaration
+
+
public static string ValidateStringValue(string s)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ s
+ the string to validate.
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+ Null if the input is valid, otherwise an error string describing the issue.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Helpers.html b/api/LaunchDarkly.Sdk.Helpers.html
new file mode 100644
index 00000000..6421800f
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Helpers.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+ Namespace LaunchDarkly.Sdk.Helpers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Namespace LaunchDarkly.Sdk.Helpers
+
+
+
+
+ Classes
+
+
+ Collection of utility functions for doing validation related work.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Components.html b/api/LaunchDarkly.Sdk.Server.Components.html
index fe9d15cf..f53ba812 100644
--- a/api/LaunchDarkly.Sdk.Server.Components.html
+++ b/api/LaunchDarkly.Sdk.Server.Components.html
@@ -237,6 +237,44 @@ Examples
Methods
+
+ ApplicationInfo()
+ Returns a configurable builder for the SDK's application metadata.
+
+
+ Declaration
+
+
public static ApplicationInfoBuilder ApplicationInfo()
+
+ Returns
+
+
+
+ Examples
+ var config = Configuration.Builder(sdkKey)
+ .ApplicationInfo(
+ Components.ApplicationInfo().ApplicationID("MyApplication").ApplicationVersion("version123abc")
+ )
+ .Build();
+
Returns a configuration builder for the SDK's Big Segments feature.
@@ -720,7 +758,7 @@
Examples
- var config = Configuration.Builder(mobileKey)
+ var config = Configuration.Builder(sdkKey)
.ServiceEndpoints(Components.ServiceEndpoints().RelayProxy("http://my-relay-hostname:80"))
.Build();
diff --git a/api/LaunchDarkly.Sdk.Server.Configuration.html b/api/LaunchDarkly.Sdk.Server.Configuration.html
index 4d38c6f4..131d7bea 100644
--- a/api/LaunchDarkly.Sdk.Server.Configuration.html
+++ b/api/LaunchDarkly.Sdk.Server.Configuration.html
@@ -95,6 +95,30 @@
BigSegments
A builder for BigSegmentsConfiguration .
diff --git a/api/LaunchDarkly.Sdk.Server.ConfigurationBuilder.html b/api/LaunchDarkly.Sdk.Server.ConfigurationBuilder.html
index 39a25d27..767f1671 100644
--- a/api/LaunchDarkly.Sdk.Server.ConfigurationBuilder.html
+++ b/api/LaunchDarkly.Sdk.Server.ConfigurationBuilder.html
@@ -100,6 +100,51 @@
diff --git a/api/LaunchDarkly.Sdk.Server.Interfaces.html b/api/LaunchDarkly.Sdk.Server.Interfaces.html
index 714b3ceb..714d5163 100644
--- a/api/LaunchDarkly.Sdk.Server.Interfaces.html
+++ b/api/LaunchDarkly.Sdk.Server.Interfaces.html
@@ -111,10 +111,6 @@ FlagValueChangeEvent
- IFlagTrackerExtensionMethods
-
ServiceEndpoints
Specifies the base service URIs used by SDK components.
diff --git a/api/LaunchDarkly.Sdk.Server.LdClient.html b/api/LaunchDarkly.Sdk.Server.LdClient.html
index 014d02e8..a7fb00a4 100644
--- a/api/LaunchDarkly.Sdk.Server.LdClient.html
+++ b/api/LaunchDarkly.Sdk.Server.LdClient.html
@@ -93,12 +93,6 @@ Syntax
public sealed class LdClient : Object, IDisposable, ILdClient
-
-
Constructors
@@ -453,10 +447,6 @@ See Also
-
BoolVariation(String, Context, Boolean)
Calculates the boolean value of a feature flag for a given context.
@@ -525,7 +515,6 @@
See Also
BoolVariationDetail(String, Context, Boolean)
@@ -595,7 +584,6 @@
See Also
Dispose()
@@ -687,7 +675,6 @@
-
DoubleVariationDetail(String, Context, Double)
@@ -758,7 +745,6 @@
-
FloatVariation(String, Context, Single)
@@ -830,7 +816,6 @@
-
FloatVariationDetail(String, Context, Single)
@@ -901,12 +886,11 @@
-
Flush()
Tells the client that all pending analytics events (if any) should be delivered as soon
-as possible.
+as possible.
Declaration
@@ -1001,6 +985,43 @@
+
+ GetLogger()
+ Returns the logger instance used by this SDK instance.
+
+
+ Declaration
+
+
public Logger GetLogger()
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ LaunchDarkly.Logging.Logger
+ the logger instance used by the SDK
+
+
+
+
+
+
Identify(Context)
Reports details about an evaluation context.
@@ -1048,10 +1069,6 @@
Reference Guide.
- See Also
-
IntVariation(String, Context, Int32)
Calculates the integer value of a feature flag for a given context.
@@ -1126,7 +1143,6 @@
See Also
IntVariationDetail(String, Context, Int32)
@@ -1196,11 +1212,11 @@
See Also
IsOffline()
-
+
Returns true if the client has been configured to be offline.
+
Declaration
@@ -1217,10 +1233,15 @@
Returns
System.Boolean
-
+ true if the client is configured to be offline
+
+
+
JsonVariation(String, Context, LdValue)
Calculates the value of a feature flag for a given context as any JSON value type.
@@ -1290,7 +1311,6 @@
See Also
JsonVariationDetail(String, Context, LdValue)
@@ -1360,8 +1380,63 @@
See Also
+
+
MigrationVariation(String, Context, MigrationStage)
+
Returns the migration stage of the migration feature flag for the given
+evaluation context.
+
+
+
Declaration
+
+
public MigrationVariation MigrationVariation(string key, Context context, MigrationStage defaultStage)
+
+
Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ key
+ the unique feature key for the feature flag
+
+
+
+ Context
+ context
+ the evaluation context
+
+
+
+ MigrationStage
+ defaultStage
+ the default value of the flag
+
+
+
+
+
Returns
+
SecureModeHash(Context)
Creates a hash string that can be used by the JavaScript SDK to identify a context.
@@ -1409,10 +1484,6 @@
See Secure mode in
the JavaScript SDK Reference.
-
See Also
-
StringVariation(String, Context, String)
Calculates the string value of a feature flag for a given context.
@@ -1483,7 +1554,6 @@
See Also
StringVariationDetail(String, Context, String)
@@ -1553,7 +1623,6 @@
See Also
Track(String, Context)
@@ -1603,7 +1672,6 @@
-
Track(String, Context, LdValue)
@@ -1660,7 +1728,6 @@
Track(System.String , Context )
-
Track(String, Context, LdValue, Double)
@@ -1724,8 +1791,34 @@
-
+
+ TrackMigration(MigrationOpTracker)
+ Track the details of a migration.
+
+
+ Declaration
+
+
public void TrackMigration(MigrationOpTracker tracker)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationOpTracker
+ tracker
+ migration tracker which was used to track the details of a migration
+
+
+
+
Implements
System.IDisposable
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html b/api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html
new file mode 100644
index 00000000..dc3a9cbf
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html
@@ -0,0 +1,409 @@
+
+
+
+
+
+
+
+
Interface IMigration<TReadResult, TWriteResult, TReadInput, TWriteInput>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Interface IMigration<TReadResult, TWriteResult, TReadInput, TWriteInput>
+
+ Interface for managing technology migrations
+
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public interface IMigration<TReadResult, TWriteResult, in TReadInput, in TWriteInput>
+ where TReadResult : class where TWriteResult : class
+
+ Type Parameters
+
+
+
+ Name
+ Description
+
+
+
+
+ TReadResult
+ the result type for reads
+
+
+
+ TWriteResult
+ the result type for writes
+
+
+
+ TReadInput
+ the input types for reads
+
+
+
+ TWriteInput
+ the input type for writes
+
+
+
+
+ Methods
+
+
+ Read(String, Context, MigrationStage)
+ Execute a migration based read.
+
+
+ Declaration
+
+
MigrationResult<TReadResult> Read(string flagKey, Context context, MigrationStage defaultStage)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ flagKey
+ the flag key of migration flag
+
+
+
+ Context
+ context
+ the context for the migration
+
+
+
+ MigrationStage
+ defaultStage
+ the default migration stage
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationResult <TReadResult>
+ the result of the read
+
+
+
+
+
+
+
+ Read(String, Context, MigrationStage, TReadInput)
+ Execute a migration based read with a payload.
+
+
+ Declaration
+
+
MigrationResult<TReadResult> Read(string flagKey, Context context, MigrationStage defaultStage, TReadInput payload)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ flagKey
+ the flag key of migration flag
+
+
+
+ Context
+ context
+ the context for the migration
+
+
+
+ MigrationStage
+ defaultStage
+ the default migration stage
+
+
+
+ TReadInput
+ payload
+ payload that will be passed to the new/old read implementations
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationResult <TReadResult>
+ the result of the read
+
+
+
+
+
+
+
+ Write(String, Context, MigrationStage)
+ Execute a migration based write.
+
+
+ Declaration
+
+
MigrationWriteResult<TWriteResult> Write(string flagKey, Context context, MigrationStage defaultStage)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ flagKey
+ the flag key of migration flag
+
+
+
+ Context
+ context
+ the context for the migration
+
+
+
+ MigrationStage
+ defaultStage
+ the default migration stage
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationWriteResult <TWriteResult>
+ the result of the write operation
+
+
+
+
+
+
+
+ Write(String, Context, MigrationStage, TWriteInput)
+ Execute a migration based write with a payload.
+
+
+ Declaration
+
+
MigrationWriteResult<TWriteResult> Write(string flagKey, Context context, MigrationStage defaultStage, TWriteInput payload)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ flagKey
+ the flag key of migration flag
+
+
+
+ Context
+ context
+ the context for the migration
+
+
+
+ MigrationStage
+ defaultStage
+ the default migration stage
+
+
+
+ TWriteInput
+ payload
+ payload that will be passed to the new/old write implementations
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationWriteResult <TWriteResult>
+ the result of the write operation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html
new file mode 100644
index 00000000..3a8a4266
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html
@@ -0,0 +1,533 @@
+
+
+
+
+
+
+
+
Class MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput>
+
+ This builder is used to construct LaunchDarkly.Sdk.Server.Migrations.Migration`4 instances.
+
+
+
+
Inheritance
+
System.Object
+
MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput>
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput> : Object where TReadResult : class where TWriteResult : class
+
+ Type Parameters
+
+
+
+ Name
+ Description
+
+
+
+
+ TReadResult
+ the result type for reads
+
+
+
+ TWriteResult
+ the result type for writes
+
+
+
+ TReadInput
+ the input types for reads
+
+
+
+ TWriteInput
+ the input type for writes
+
+
+
+
+
+
+ Constructors
+
+
+ MigrationBuilder(ILdClient)
+ Construct a migration builder.
+
+
+ Declaration
+
+
public MigrationBuilder(ILdClient client)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ ILdClient
+ client
+ the client to use for migrations
+
+
+
+
+ Methods
+
+
+ Build()
+ Build a LaunchDarkly.Sdk.Server.Migrations.Migration`4 .
+
+
+ Declaration
+
+
public IMigration<TReadResult, TWriteResult, TReadInput, TWriteInput> Build()
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ IMigration <TReadResult, TWriteResult, TReadInput, TWriteInput>
+ a build migration or null if a migration could not be built
+
+
+
+
+
+
+
+ Read(Func<TReadInput, MigrationMethod.Result<TReadResult>>, Func<TReadInput, MigrationMethod.Result<TReadResult>>)
+ Configure the read methods of the migration.
+
+
+ Declaration
+
+
public MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput> Read(Func<TReadInput, MigrationMethod.Result<TReadResult>> readOld, Func<TReadInput, MigrationMethod.Result<TReadResult>> readNew)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.Func <TReadInput, MigrationMethod.Result <TReadResult>>
+ readOld
+ method for reading from the "old" migration source
+
+
+
+ System.Func <TReadInput, MigrationMethod.Result <TReadResult>>
+ readNew
+ method for reading from the "new" migration source
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationBuilder <TReadResult, TWriteResult, TReadInput, TWriteInput>
+ a reference to this builder
+
+
+
+
+
+
+
+ Read(Func<TReadInput, MigrationMethod.Result<TReadResult>>, Func<TReadInput, MigrationMethod.Result<TReadResult>>, Func<TReadResult, TReadResult, Boolean>)
+ Configure the read methods of the migration.
+
+
+ Declaration
+
+
public MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput> Read(Func<TReadInput, MigrationMethod.Result<TReadResult>> readOld, Func<TReadInput, MigrationMethod.Result<TReadResult>> readNew, Func<TReadResult, TReadResult, bool> check)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.Func <TReadInput, MigrationMethod.Result <TReadResult>>
+ readOld
+ method for reading from the "old" migration source
+
+
+
+ System.Func <TReadInput, MigrationMethod.Result <TReadResult>>
+ readNew
+ method for reading from the "new" migration source
+
+
+
+ System.Func <TReadResult, TReadResult, System.Boolean >
+ check
+ method which checks the consistency of the "old" and "new" source
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationBuilder <TReadResult, TWriteResult, TReadInput, TWriteInput>
+ a reference to this builder
+
+
+
+
+
+
+
+ ReadExecution(MigrationExecution)
+ Influences the level of concurrency when the migration stage calls for multiple execution reads.
+
+
+ Declaration
+
+
public MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput> ReadExecution(MigrationExecution execution)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationExecution
+ execution
+ the execution configuration
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationBuilder <TReadResult, TWriteResult, TReadInput, TWriteInput>
+ a reference to this builder
+
+
+
+
+
+
+
+ TrackErrors(Boolean)
+ Enable or disable error tracking. Tracking is enabled by default.
+
+
+ Declaration
+
+
public MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput> TrackErrors(bool trackErrors)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.Boolean
+ trackErrors
+ true to enable error tracking, false to disable it
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationBuilder <TReadResult, TWriteResult, TReadInput, TWriteInput>
+ a reference to this builder
+
+
+
+
+
+ TrackLatency(Boolean)
+ Enable or disable latency tracking. Tracking is enabled by default.
+
+
+ Declaration
+
+
public MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput> TrackLatency(bool trackLatency)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.Boolean
+ trackLatency
+ true to enable tracking, false to disable it
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationBuilder <TReadResult, TWriteResult, TReadInput, TWriteInput>
+ a reference to this builder
+
+
+
+
+
+ Write(Func<TWriteInput, MigrationMethod.Result<TWriteResult>>, Func<TWriteInput, MigrationMethod.Result<TWriteResult>>)
+ Configure the write methods of the migration.
+
+
+ Declaration
+
+
public MigrationBuilder<TReadResult, TWriteResult, TReadInput, TWriteInput> Write(Func<TWriteInput, MigrationMethod.Result<TWriteResult>> writeOld, Func<TWriteInput, MigrationMethod.Result<TWriteResult>> writeNew)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.Func <TWriteInput, MigrationMethod.Result <TWriteResult>>
+ writeOld
+ method which writes to the "old" source
+
+
+
+ System.Func <TWriteInput, MigrationMethod.Result <TWriteResult>>
+ writeNew
+ method which writes to the "new" source
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationBuilder <TReadResult, TWriteResult, TReadInput, TWriteInput>
+ a reference to this builder
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html
new file mode 100644
index 00000000..f37d7b79
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html
@@ -0,0 +1,275 @@
+
+
+
+
+
+
+
+
Class MigrationExecution
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationExecution
+
+ This class is used to control the execution mechanism for migrations.
+
+
+
+
Inheritance
+
System.Object
+
MigrationExecution
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationExecution : ValueType
+
+
+
+ Properties
+
+
+ Mode
+ The execution mode to use for a migration.
+
+
+ Declaration
+
+
public MigrationExecutionMode Mode { get; }
+
+ Property Value
+
+
+ Order
+ If the execution mode is serial, then this indicates if it should be in a random or fixed order.
+
+
+ Declaration
+
+
public MigrationSerialOrder Order { get; }
+
+ Property Value
+
+ Methods
+
+
+ Parallel()
+ Construct a parallel execution.
+
+
+ Declaration
+
+
public static MigrationExecution Parallel()
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationExecution
+ a migration execution instance
+
+
+
+
+
+ Serial(MigrationSerialOrder)
+ Construct a serial execution with the specified ordering.
+
+
+ Declaration
+
+
public static MigrationExecution Serial(MigrationSerialOrder order)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationSerialOrder
+ order
+ the serial execution order fixed/random
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ MigrationExecution
+ a migration execution instance
+
+
+
+
+
+ ToString()
+ Produce a string representation. This is intended for informational purposes only and subject to change.
+
+
+ Declaration
+
+
public override string ToString()
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+ a string representation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.html
new file mode 100644
index 00000000..402c08af
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.html
@@ -0,0 +1,195 @@
+
+
+
+
+
+
+
+
Class MigrationExecutionMode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationExecutionMode
+
+ Execution mode for a migration.
+
+
+
+
Inheritance
+
System.Object
+
MigrationExecutionMode
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationExecutionMode : Enum
+
+
+
+ Fields
+
+ Parallel
+ Start reads in parallel and wait for them to both finish.
+
+
+ Declaration
+
+
public const MigrationExecutionMode Parallel
+
+ Field Value
+
+ Serial
+ Execute one read fully before executing another read.
+
+
+ Declaration
+
+
public const MigrationExecutionMode Serial
+
+ Field Value
+
+ value__
+
+
+ Declaration
+
+ Field Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Int32
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html
new file mode 100644
index 00000000..bdac8e59
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html
@@ -0,0 +1,215 @@
+
+
+
+
+
+
+
+
Class MigrationMethod.Result<TResult>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationMethod.Result<TResult>
+
+ Results of a method associated with a migration origin.
+
+
+
+
Inheritance
+
System.Object
+
MigrationMethod.Result<TResult>
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class Result<TResult> : ValueType where TResult : class
+
+ Type Parameters
+
+
+
+ Name
+ Description
+
+
+
+
+ TResult
+ the type of the result
+
+
+
+
+ Properties
+
+
+ Exception
+ Any exception which happened for the operation. Will not be set if the result was successful.
+
+
+ Declaration
+
+
public Exception Exception { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Exception
+
+
+
+
+
+ IsSuccessful
+ True if the result was a success.
+
+
+ Declaration
+
+
public bool IsSuccessful { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+
+
+
+
+
+ Value
+ The value of a successful result.
+
+
+ Declaration
+
+
public TResult Value { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ TResult
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html
new file mode 100644
index 00000000..e6ceaede
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html
@@ -0,0 +1,290 @@
+
+
+
+
+
+
+
+
Class MigrationMethod
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationMethod
+
+
+
+
+
Inheritance
+
System.Object
+
MigrationMethod
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public static class MigrationMethod : Object
+
+ Methods
+
+
+ Failure<TResult>()
+ Construct a method result representing a failure.
+
+
+ Declaration
+
+
public static MigrationMethod.Result<TResult> Failure<TResult>()
+ where TResult : class
+
+ Returns
+
+ Type Parameters
+
+
+
+ Name
+ Description
+
+
+
+
+ TResult
+ the type of the result
+
+
+
+
+
+
+
+ Failure<TResult>(Exception)
+ Construct a method result representing a failure based on an Exception.
+
+
+ Declaration
+
+
public static MigrationMethod.Result<TResult> Failure<TResult>(Exception exception)
+ where TResult : class
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.Exception
+ exception
+ the exception which occurred during method execution
+
+
+
+
+ Returns
+
+ Type Parameters
+
+
+
+ Name
+ Description
+
+
+
+
+ TResult
+ the type of the result
+
+
+
+
+
+ Success<TResult>(TResult)
+ Construct a successful result.
+
+
+ Declaration
+
+
public static MigrationMethod.Result<TResult> Success<TResult>(TResult result)
+ where TResult : class
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ TResult
+ result
+ the value of the result
+
+
+
+
+ Returns
+
+ Type Parameters
+
+
+
+ Name
+ Description
+
+
+
+
+ TResult
+ the type of the result
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html
new file mode 100644
index 00000000..1f0d1e2e
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html
@@ -0,0 +1,285 @@
+
+
+
+
+
+
+
+
Class MigrationOpTracker
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationOpTracker
+
+ Used to track information related to a migration operation.
+
+
+
+
Inheritance
+
System.Object
+
MigrationOpTracker
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationOpTracker : Object
+
+ Methods
+
+
+ Consistency(Func<Boolean>)
+ Check the consistency of a read result. This method should be invoked if the check
function
+is defined for the migration and both reads ("new"/"old") were done.
+
+
+ Declaration
+
+
public void Consistency(Func<bool> checker)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.Func <System.Boolean >
+ checker
+ check method which returns true if the results were consistent
+
+
+
+
+
+
+
+ Error(MigrationOrigin)
+ Report that an error has occurred for the specified origin.
+
+
+ Declaration
+
+
public void Error(MigrationOrigin origin)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationOrigin
+ origin
+ the origin of the error
+
+
+
+
+
+ Invoked(MigrationOrigin)
+ Call this to report that an origin was invoked (executed). There are some situations where the
+expectation is that both the old and new implementation will be used, but with writes
+it is possible that the non-authoritative will not execute. Reporting the execution allows
+for more accurate analytics.
+
+
+ Declaration
+
+
public void Invoked(MigrationOrigin origin)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationOrigin
+ origin
+ the origin that was invoked
+
+
+
+
+
+ Latency(MigrationOrigin, TimeSpan)
+ Report the latency of an operation.
+
+
+ Declaration
+
+
public void Latency(MigrationOrigin origin, TimeSpan duration)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationOrigin
+ origin
+ the origin the latency is being reported for
+
+
+
+ System.TimeSpan
+ duration
+ the latency of the operation
+
+
+
+
+
+ Op(MigrationOperation)
+ Sets the migration related operation associated with these tracking measurements.
+
+
+ Declaration
+
+
public void Op(MigrationOperation operation)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationOperation
+ operation
+ the operation being tracked
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.html
new file mode 100644
index 00000000..b29c843d
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.html
@@ -0,0 +1,196 @@
+
+
+
+
+
+
+
+
Class MigrationOperation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationOperation
+
+ The type of migration operation.
+
+
+
+
Inheritance
+
System.Object
+
MigrationOperation
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationOperation : Enum
+
+ Fields
+
+ Read
+
+
+ Declaration
+
+
public const MigrationOperation Read
+
+ Field Value
+
+ value__
+
+
+ Declaration
+
+ Field Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Int32
+
+
+
+
+ Write
+
+
+ Declaration
+
+
public const MigrationOperation Write
+
+ Field Value
+
+ Extension Methods
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html
similarity index 51%
rename from api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.html
rename to api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html
index 79d763a5..f992e384 100644
--- a/api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.html
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html
@@ -5,10 +5,10 @@
-
Class IFlagTrackerExtensionMethods
+ Class MigrationOperationExtensions
-
@@ -68,37 +68,35 @@
-
+
- Class IFlagTrackerExtensionMethods
+ Class MigrationOperationExtensions
- Extension methods allowing IFlagTracker to be used with the older
-User type instead of Context .
+
Extension methods for migration operations.
Inheritance
System.Object
-
IFlagTrackerExtensionMethods
+
MigrationOperationExtensions
-
Namespace : LaunchDarkly.Sdk.Server.Interfaces
+
Namespace : LaunchDarkly.Sdk.Server.Migrations
Assembly : LaunchDarkly.ServerSdk.dll
-
Syntax
+
Syntax
-
public static class IFlagTrackerExtensionMethods : Object
+
public static class MigrationOperationExtensions : Object
Methods
-
-
FlagValueChangeHandler(IFlagTracker, String, User, EventHandler<FlagValueChangeEvent>)
-
Creates a handler for receiving notifications when a specific feature flag's value
-has changed for a specific user.
+
+
FromDataModelString(String)
+
Convert a string value into an operation.
Declaration
-
public static EventHandler<FlagChangeEvent> FlagValueChangeHandler(this IFlagTracker flagTracker, string flagKey, User user, EventHandler<FlagValueChangeEvent> handler)
+
public static Nullable<MigrationOperation> FromDataModelString(string stringOperation)
Parameters
@@ -111,27 +109,52 @@ Parameters
- IFlagTracker
- flagTracker
- the IFlagTracker
+ System.String
+ stringOperation
+ the operation as a string
+
+
+
Returns
+
+
- System.String
- flagKey
- the flag key to be evaluated
-
+ Type
+ Description
+
+
- User
- user
- the user attributes
+ System.Nullable <MigrationOperation >
+ a migration operation, or null if it cannot be converted
+
+
+
+
ToDataModelString(MigrationOperation)
+
Get a string value for an operation.
+
+
+
Declaration
+
+
public static string ToDataModelString(this MigrationOperation operation)
+
+
Parameters
+
-
Remarks
-
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.html
new file mode 100644
index 00000000..50d0c2e2
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.html
@@ -0,0 +1,196 @@
+
+
+
+
+
+
+
+
Class MigrationOrigin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationOrigin
+
+ The origin/source for a migration step.
+
+
+
+
Inheritance
+
System.Object
+
MigrationOrigin
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationOrigin : Enum
+
+ Fields
+
+ New
+ Originates from the "new" implementation.
+
+
+ Declaration
+
+
public const MigrationOrigin New
+
+ Field Value
+
+ Old
+ Originates from the "old" implementation.
+
+
+ Declaration
+
+
public const MigrationOrigin Old
+
+ Field Value
+
+ value__
+
+
+ Declaration
+
+ Field Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Int32
+
+
+
+
+ Extension Methods
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html
new file mode 100644
index 00000000..d893b81b
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
Class MigrationOriginExtensions
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationOriginExtensions
+
+ Extension methods for migration origins.
+
+
+
+
Inheritance
+
System.Object
+
MigrationOriginExtensions
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public static class MigrationOriginExtensions : Object
+
+ Methods
+
+
+ FromDataModelString(String)
+ Convert a string value into an origin.
+
+
+ Declaration
+
+
public static Nullable<MigrationOrigin> FromDataModelString(string stringOrigin)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ stringOrigin
+ the origin as a string
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <MigrationOrigin >
+ a migration origin, or null if it cannot be converted
+
+
+
+
+
+ ToDataModelString(MigrationOrigin)
+ Get a string value for an origin.
+
+
+ Declaration
+
+
public static string ToDataModelString(this MigrationOrigin origin)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationOrigin
+ origin
+ the origin to get a string value for
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+ a string for the migration origin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html
new file mode 100644
index 00000000..faf62c81
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html
@@ -0,0 +1,243 @@
+
+
+
+
+
+
+
+
Class MigrationResult<TResult>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationResult<TResult>
+
+ This class represents the result of a migration operation.
+
+
+
+
Inheritance
+
System.Object
+
MigrationResult<TResult>
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationResult<TResult> : ValueType where TResult : class
+
+ Type Parameters
+
+
+
+ Name
+ Description
+
+
+
+
+ TResult
+ the type of the result
+
+
+
+
+
+
+ Properties
+
+
+ Exception
+ Any exception which happened for the operation. Will not be set if the result was successful.
+
+
+ Declaration
+
+
public Exception Exception { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Exception
+
+
+
+
+
+ IsSuccessful
+ True if the result was a success.
+
+
+ Declaration
+
+
public bool IsSuccessful { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+
+
+
+
+
+ Origin
+ The origin of the result.
+
+
+ Declaration
+
+
public MigrationOrigin Origin { get; }
+
+ Property Value
+
+
+ Value
+ The value of a successful result.
+
+
+ Declaration
+
+
public TResult Value { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ TResult
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.html
new file mode 100644
index 00000000..b88942ff
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.html
@@ -0,0 +1,192 @@
+
+
+
+
+
+
+
+
Class MigrationSerialOrder
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationSerialOrder
+
+ When using serial execution controls the order reads are executed.
+
+
+
+
Inheritance
+
System.Object
+
MigrationSerialOrder
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationSerialOrder : Enum
+
+ Fields
+
+ Fixed
+ Always execute reads in the same order.
+
+
+ Declaration
+
+
public const MigrationSerialOrder Fixed
+
+ Field Value
+
+ Random
+ Each time a read is performed randomize the order.
+
+
+ Declaration
+
+
public const MigrationSerialOrder Random
+
+ Field Value
+
+ value__
+
+
+ Declaration
+
+ Field Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Int32
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html
new file mode 100644
index 00000000..43268589
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html
@@ -0,0 +1,292 @@
+
+
+
+
+
+
+
+
Class MigrationStage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationStage
+
+ Stage denotes one of six possible stages a technology migration could be a
+part of, progressing through the following order.
+
+Off DualWrite Shadow Live RampDown Complete
+
+
+
+
+
Inheritance
+
System.Object
+
MigrationStage
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationStage : Enum
+
+ Fields
+
+ Complete
+ Complete - migration is done.
+
+
+ Declaration
+
+
public const MigrationStage Complete
+
+ Field Value
+
+ DualWrite
+ DualWrite - write to both "old" and "new", "old" is authoritative for reads.
+
+
+ Declaration
+
+
public const MigrationStage DualWrite
+
+ Field Value
+
+ Live
+ Live - both "new" and "old" versions run with a preference for "new".
+
+
+ Declaration
+
+
public const MigrationStage Live
+
+ Field Value
+
+ Off
+ Off - migration hasn't started, "old" is authoritative for reads and writes.
+
+
+ Declaration
+
+
public const MigrationStage Off
+
+ Field Value
+
+ RampDown
+ RampDown - only read from "new", write to "old" and "new".
+
+
+ Declaration
+
+
public const MigrationStage RampDown
+
+ Field Value
+
+ Shadow
+ Shadow - both "new" and "old" versions run with a preference for "old".
+
+
+ Declaration
+
+
public const MigrationStage Shadow
+
+ Field Value
+
+ value__
+
+
+ Declaration
+
+ Field Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Int32
+
+
+
+
+ Extension Methods
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html
new file mode 100644
index 00000000..ecd6213d
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html
@@ -0,0 +1,212 @@
+
+
+
+
+
+
+
+
Class MigrationStageExtensions
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationStageExtensions
+
+ Extension methods for migration stages.
+
+
+
+
Inheritance
+
System.Object
+
MigrationStageExtensions
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public static class MigrationStageExtensions : Object
+
+ Methods
+
+
+ FromDataModelString(String)
+ Convert a string value into a stage.
+
+
+ Declaration
+
+
public static Nullable<MigrationStage> FromDataModelString(string stringStage)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ System.String
+ stringStage
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <MigrationStage >
+ a migration stage, or null if it cannot be converted
+
+
+
+
+
+ ToDataModelString(MigrationStage)
+ Get a string value for a stage.
+
+
+ Declaration
+
+
public static string ToDataModelString(this MigrationStage stage)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationStage
+ stage
+ the stage to get a string value for
+
+
+
+
+ Returns
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+ a string for the migration stage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html
new file mode 100644
index 00000000..42a3769b
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html
@@ -0,0 +1,211 @@
+
+
+
+
+
+
+
+
Class MigrationVariation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationVariation
+
+
+
+
+
Inheritance
+
System.Object
+
MigrationVariation
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationVariation : ValueType
+
+ Properties
+
+
+ Stage
+ The result of the flag evaluation. This will be either one of the flag's variations or
+the default value that was passed to MigrationVariation .
+
+
+ Declaration
+
+
public MigrationStage Stage { get; }
+
+ Property Value
+
+
+ Tracker
+ A tracker which can be used to generate analytics for the migration.
+
+
+ Declaration
+
+
public MigrationOpTracker Tracker { get; }
+
+ Property Value
+
+ Methods
+
+
+ Deconstruct(out MigrationStage, out MigrationOpTracker)
+ Deconstruct the MigrationVariation into the stage and tracker.
+
+
+ Declaration
+
+
public void Deconstruct(out MigrationStage stage, out MigrationOpTracker tracker)
+
+ Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ MigrationStage
+ stage
+ the stage of the variation
+
+
+
+ MigrationOpTracker
+ tracker
+ the tracker for the variation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html
new file mode 100644
index 00000000..50f88d3f
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html
@@ -0,0 +1,198 @@
+
+
+
+
+
+
+
+
Class MigrationWriteResult<TResult>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class MigrationWriteResult<TResult>
+
+ The result of a migration write.
+
+
+
+
Inheritance
+
System.Object
+
MigrationWriteResult<TResult>
+
+ Namespace : LaunchDarkly.Sdk.Server.Migrations
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public class MigrationWriteResult<TResult> : Object where TResult : class
+
+ Type Parameters
+
+
+
+ Name
+ Description
+
+
+
+
+ TResult
+ the type of the result
+
+
+
+
+
+
+ Properties
+
+
+ Authoritative
+ The authoritative result of the write.
+
+
+ Declaration
+
+
public MigrationResult<TResult> Authoritative { get; }
+
+ Property Value
+
+
+ NonAuthoritative
+ The non-authoritative result of the write.
+
+
+ Declaration
+
+
public Nullable<MigrationResult<TResult>> NonAuthoritative { get; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <MigrationResult <TResult>>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Migrations.html b/api/LaunchDarkly.Sdk.Server.Migrations.html
new file mode 100644
index 00000000..3fd0448d
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Migrations.html
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
Namespace LaunchDarkly.Sdk.Server.Migrations
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html
index 564c7b75..6c130565 100644
--- a/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html
+++ b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html
@@ -162,6 +162,30 @@
Property Value
+
+
ExcludeFromSummaries
+
If true the event will not be included in summaries.
+
+
+
Declaration
+
+
public bool ExcludeFromSummaries { get; set; }
+
+
Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+
+
+
+
FlagKey
The unique key of the feature flag involved in the event.
@@ -258,6 +282,30 @@
Property Value
+
+
SamplingRatio
+
Sampling ratio which determines is used for sampling the event.
+
+
+
Declaration
+
+
public Nullable<long> SamplingRatio { get; set; }
+
+
Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <System.Int64 >
+
+
+
+
Timestamp
Date/timestamp of the event.
diff --git a/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html
new file mode 100644
index 00000000..90b4891b
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+
Class EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+
+ Consistency measurement.
+
+
+
+
Inheritance
+
System.Object
+
EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+
+ Namespace : LaunchDarkly.Sdk.Server.Subsystems
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class ConsistentMeasurement : ValueType
+
+
+
+ Properties
+
+
+ IsConsistent
+ True if the measurement was consistent.
+
+
+ Declaration
+
+
public bool IsConsistent { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+
+
+
+
+
+ SamplingRatio
+ The sampling ratio for the consistency check.
+
+
+ Declaration
+
+
public long SamplingRatio { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Int64
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html
new file mode 100644
index 00000000..4348527b
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+
Class EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+
+ Error measurements for invoked methods.
+
+
+
+
Inheritance
+
System.Object
+
EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+
+ Namespace : LaunchDarkly.Sdk.Server.Subsystems
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class ErrorMeasurement : ValueType
+
+
+
+ Properties
+
+
+ New
+ True if any error happened for the new method.
+
+
+ Declaration
+
+
public bool New { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+
+
+
+
+
+ Old
+ True if any error happened for the old method.
+
+
+ Declaration
+
+
public bool Old { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html
new file mode 100644
index 00000000..cc6b66f6
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+
Class EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+
+ Information about what origins were invoked.
+
+
+
+
Inheritance
+
System.Object
+
EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+
+ Namespace : LaunchDarkly.Sdk.Server.Subsystems
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class InvokedMeasurement : ValueType
+
+
+
+ Properties
+
+
+ New
+ True if the new method was invoked.
+
+
+ Declaration
+
+
public bool New { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+
+
+
+
+
+ Old
+ True if the old method was invoked.
+
+
+ Declaration
+
+
public bool Old { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Boolean
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html
new file mode 100644
index 00000000..d9a9d789
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+
Class EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+
+ Latency measurements for invoked methods.
+
+
+
+
Inheritance
+
System.Object
+
EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+
+ Namespace : LaunchDarkly.Sdk.Server.Subsystems
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class LatencyMeasurement : ValueType
+
+
+
+ Properties
+
+
+ New
+ Latency of the new method, or null if the new method was not invoked.
+
+
+ Declaration
+
+
public Nullable<long> New { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <System.Int64 >
+
+
+
+
+
+ Old
+ Latency of the old method, or null if the old method was not invoked.
+
+
+ Declaration
+
+
public Nullable<long> Old { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <System.Int64 >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html
new file mode 100644
index 00000000..91f184f9
--- /dev/null
+++ b/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html
@@ -0,0 +1,471 @@
+
+
+
+
+
+
+
+
Class EventProcessorTypes.MigrationOpEvent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Class EventProcessorTypes.MigrationOpEvent
+
+
+
+
+
Inheritance
+
System.Object
+
EventProcessorTypes.MigrationOpEvent
+
+ Namespace : LaunchDarkly.Sdk.Server.Subsystems
+ Assembly : LaunchDarkly.ServerSdk.dll
+ Syntax
+
+
public sealed class MigrationOpEvent : ValueType
+
+ Properties
+
+
+ Consistent
+ The consistency measurement.
+
+
+ Declaration
+
+
public Nullable<EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement> Consistent { get; set; }
+
+ Property Value
+
+
+
+
+ Context
+ The evaluation context. Some attributes may not be sent to LaunchDarkly if they are private.
+
+
+ Declaration
+
+
public Context Context { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ Context
+
+
+
+
+
+ Default
+ The default value of the evaluation.
+
+
+ Declaration
+
+
public LdValue Default { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ LdValue
+
+
+
+
+
+ Error
+
+
+ Declaration
+
+
public Nullable<EventProcessorTypes.MigrationOpEvent.ErrorMeasurement> Error { get; set; }
+
+ Property Value
+
+
+
+
+ FlagKey
+ The flag key for the migration.
+
+
+ Declaration
+
+
public string FlagKey { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ FlagVersion
+ The version of the flag.
+
+
+ Declaration
+
+
public Nullable<int> FlagVersion { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <System.Int32 >
+
+
+
+
+
+ Invoked
+ The invoked measurement.
+
+
+ Declaration
+
+
public EventProcessorTypes.MigrationOpEvent.InvokedMeasurement Invoked { get; set; }
+
+ Property Value
+
+
+ Latency
+ The latency measurement.
+
+
+ Declaration
+
+
public Nullable<EventProcessorTypes.MigrationOpEvent.LatencyMeasurement> Latency { get; set; }
+
+ Property Value
+
+
+
+
+ Operation
+ The type of migration operation that was performed (read/write).
+
+
+ Declaration
+
+
public string Operation { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.String
+
+
+
+
+
+ Reason
+ The reason associated with the evaluation.
+
+
+ Declaration
+
+
public Nullable<EvaluationReason> Reason { get; set; }
+
+ Property Value
+
+
+ SamplingRatio
+ The sampling ratio for this event.
+
+
+ Declaration
+
+
public long SamplingRatio { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Int64
+
+
+
+
+
+ Timestamp
+ Date/timestamp of the event.
+
+
+ Declaration
+
+
public UnixMillisecondTime Timestamp { get; set; }
+
+ Property Value
+
+
+ Value
+ The value of the evaluation.
+
+
+ Declaration
+
+
public LdValue Value { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ LdValue
+
+
+
+
+
+ Variation
+ The variation for the evaluation.
+
+
+ Declaration
+
+
public Nullable<int> Variation { get; set; }
+
+ Property Value
+
+
+
+ Type
+ Description
+
+
+
+
+ System.Nullable <System.Int32 >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/api/LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.html b/api/LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.html
index ded96089..933d91d7 100644
--- a/api/LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.html
+++ b/api/LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.html
@@ -235,6 +235,33 @@
Parameters
EventProcessorTypes.IdentifyEvent
e
parameters for an identify event
+
+
+
+
+
+
RecordMigrationEvent(EventProcessorTypes.MigrationOpEvent)
+
Records a migration operation evnet.
+
+
+
Declaration
+
+
void RecordMigrationEvent(EventProcessorTypes.MigrationOpEvent e)
+
+
Parameters
+
+
+
+ Type
+ Name
+ Description
+
+
+
+
+ EventProcessorTypes.MigrationOpEvent
+ e
+ parameters for a migration op event
diff --git a/api/LaunchDarkly.Sdk.Server.Subsystems.html b/api/LaunchDarkly.Sdk.Server.Subsystems.html
index 4b5322ff..4fde2772 100644
--- a/api/LaunchDarkly.Sdk.Server.Subsystems.html
+++ b/api/LaunchDarkly.Sdk.Server.Subsystems.html
@@ -120,6 +120,21 @@ EventProcessorTypes.IdentifyEvent
+ EventProcessorTypes.MigrationOpEvent
+
+ EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+ Consistency measurement.
+
+ EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+ Error measurements for invoked methods.
+
+ EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+ Information about what origins were invoked.
+
+ EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+ Latency measurements for invoked methods.
HttpConfiguration
Encapsulates top-level HTTP configuration that applies to all SDK components.
diff --git a/api/LaunchDarkly.Sdk.html b/api/LaunchDarkly.Sdk.html
index 827679a0..68a16180 100644
--- a/api/LaunchDarkly.Sdk.html
+++ b/api/LaunchDarkly.Sdk.html
@@ -80,6 +80,13 @@ Namespa
Classes
+ ApplicationInfo
+ An object that encapsulates application metadata.
+
+ ApplicationInfoBuilder
+ Contains methods for configuring the application metadata. Application metadata may be used in LaunchDarkly
+analytics or other product features.
+
AttributeRef
An attribute name or path expression identifying a value within a Context .
diff --git a/api/toc.html b/api/toc.html
index ab27ae0e..4d833fae 100644
--- a/api/toc.html
+++ b/api/toc.html
@@ -17,6 +17,12 @@
LaunchDarkly.Sdk
+
+
+ LaunchDarkly.Sdk.EnvReporting
+
+
+
+
+
+ LaunchDarkly.Sdk.EnvReporting.LayerModels
+
+
+
+
+
+ LaunchDarkly.Sdk.Helpers
+
+
+
LaunchDarkly.Sdk.Json
@@ -209,6 +257,9 @@
TestData.FlagBuilder
+
+ TestData.FlagMigrationBuilder
+
TestData.FlagRuleBuilder
@@ -258,9 +309,6 @@
IFlagTracker
-
- IFlagTrackerExtensionMethods
-
ILdClient
@@ -269,6 +317,64 @@
+
+
+ LaunchDarkly.Sdk.Server.Migrations
+
+
+
LaunchDarkly.Sdk.Server.Subsystems
@@ -316,6 +422,21 @@
EventProcessorTypes.IdentifyEvent
+
+ EventProcessorTypes.MigrationOpEvent
+
+
+ EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+
+
+ EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+
+
+ EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+
+
+ EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+
HttpConfiguration
diff --git a/index.html b/index.html
index e3281fdb..45da7b0f 100644
--- a/index.html
+++ b/index.html
@@ -62,7 +62,7 @@
LaunchDarkly Server-Side SDK for .NET
-(version 7.0.3)
+(version 8.0.0)
This site contains the full API reference for the LaunchDarkly.ServerSdk
package, as well as the LaunchDarkly.CommonSdk
package that is included automatically as a dependency of the SDK.
For source code, see the GitHub repository . The developer notes there include links to other repositories used in the SDK.
Namespaces
diff --git a/manifest.json b/manifest.json
index 0bd0581b..7c64417f 100644
--- a/manifest.json
+++ b/manifest.json
@@ -3,6 +3,30 @@
"source_base_path": "/tmp/project-releaser/temp/build-docs",
"xrefmap": "xrefmap.yml",
"files": [
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.ApplicationInfo.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.ApplicationInfo.html",
+ "hash": "A2vMLWkt7908OOLGQW/V5DYvmu6bW4PV6ZD+0YkMFP0="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.ApplicationInfoBuilder.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html",
+ "hash": "YF0j6AsajleZWVYxtydZrLyeZ8yR1jJv8oa/fuYKAGI="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
{
"type": "ManagedReference",
"source_relative_path": "build/api/LaunchDarkly.Sdk.AttributeRef.yml",
@@ -75,6 +99,102 @@
"is_incremental": false,
"version": ""
},
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html",
+ "hash": "55cTILmB1MvWI/3tYJk7PNqKLB0FgpKBWQDN/ifR9Lc="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html",
+ "hash": "lzWyEihdcJkFtDzRXBGvn03TPdLQpf/CDowwsEHSRtI="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html",
+ "hash": "plOwVxl0dsN56gIg943WlS3i6PTCHJKV9TXhXut8K1E="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.EnvReporting.Layer.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.EnvReporting.Layer.html",
+ "hash": "HM8xU2fQPjDn2ZBgXefMFZXnB5JL7Q+Guf/n/W32+KI="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html",
+ "hash": "6gwvw/JhHJg1IqPocvHRD7XeQl56NMxvEquGZpYzlV4="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html",
+ "hash": "lrIHQ0rt6z8iMOYBHeiSa16FHsFS5v1GvQbkYhVb8uk="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.EnvReporting.LayerModels.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.EnvReporting.LayerModels.html",
+ "hash": "ce1xJkuKAYkLRZAz00aN06KvxnAacnjGyOnRYGJQA2Q="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.EnvReporting.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.EnvReporting.html",
+ "hash": "HsARYU91NGiMyrxH1++VHy3fBdIb4ROCSg5OzXSU2i4="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
{
"type": "ManagedReference",
"source_relative_path": "build/api/LaunchDarkly.Sdk.EvaluationDetail-1.yml",
@@ -123,6 +243,30 @@
"is_incremental": false,
"version": ""
},
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Helpers.ValidationUtils.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html",
+ "hash": "o8LI/Dc2/K4Dl8wnlpAWIgwD2w/xWZ3fk+blU5WKLiQ="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Helpers.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Helpers.html",
+ "hash": "DNHxb9JfxDY7IOjZPHnK/5AlNVgNLV4Ebo1GFqFnvWU="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
{
"type": "ManagedReference",
"source_relative_path": "build/api/LaunchDarkly.Sdk.IUserBuilder.yml",
@@ -381,7 +525,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Components.html",
- "hash": "K6OVzuxGyDcCLkzk+W2x1vBFwf7IwIu4edW5snK6ws0="
+ "hash": "WXlkbR3sHds/G/77FclVJAR8KKKMPDPg5nx0L3ErbQQ="
}
},
"is_incremental": false,
@@ -393,7 +537,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Configuration.html",
- "hash": "/yFQQbRPfnnCO6Nh51FxcRFWeb0zjTfr0XpbcPv2i6Y="
+ "hash": "ZjQHKv/A5Dan44SB7Jh8nlDoJv6ivUEaDQY89Wfzb0Y="
}
},
"is_incremental": false,
@@ -405,7 +549,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.ConfigurationBuilder.html",
- "hash": "+UQY1g1IlD0ueHd12AGaN1quEA/WMN/5OkHIUDPc5dY="
+ "hash": "kREzN8+SqXuYz5cpTx2zJW0DFlpQwMxOjHzBmtjnmsU="
}
},
"is_incremental": false,
@@ -465,7 +609,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html",
- "hash": "R9+P3JTp3Cl9EWNEQzGiMvrqIE9UwwjWggBz48MgnMM="
+ "hash": "BSnVR3J4M7GEW28JVWwyefQUnD3tu/Q8+U5d67/BCpU="
}
},
"is_incremental": false,
@@ -633,7 +777,19 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html",
- "hash": "amWmcBgCsy+w021lVKjoroKalqB0z/Qu/ZplHnfzfRw="
+ "hash": "FZEIyEA3wTdCGsIOBSIaJ5V5mU8B/emzU/cO4UixagI="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.html",
+ "hash": "kG/KPdL3KoTM+Zae1whgeazPnG1D10tjgjeI3EmLgVo="
}
},
"is_incremental": false,
@@ -669,7 +825,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Integrations.html",
- "hash": "h4nIB/OnryJZsxqvWnc9PcdgTUNvD4M5Cv53XM5VRX0="
+ "hash": "3iwgzXrueBMn9nrblOa30FS9h5UoriEeEYv6nMrszuw="
}
},
"is_incremental": false,
@@ -825,19 +981,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTracker.html",
- "hash": "himN9zv2UCV6X3EpCeHnhewJO3kTXkweEwIwtHiKoHU="
- }
- },
- "is_incremental": false,
- "version": ""
- },
- {
- "type": "ManagedReference",
- "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.yml",
- "output": {
- ".html": {
- "relative_path": "api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.html",
- "hash": "2pNBBtemXE078fCy/0LXgLCpnu3XE8D46yYqxVq1RJY="
+ "hash": "PBwLgN9MDccd3hry2L6D/zXa+Dxl/xy7nguNkhUq6II="
}
},
"is_incremental": false,
@@ -849,7 +993,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html",
- "hash": "CtOJHsBqClC8VGJpnCTwzU/Wr+UTbYgo8xHBIKarpx8="
+ "hash": "1Zew3D3BBzLNdvKSBBTrKBaWxBiWD2ozPBggcCz+KIo="
}
},
"is_incremental": false,
@@ -873,7 +1017,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Interfaces.html",
- "hash": "MBTiqTI626bBjiWiU6yOnq1+RBMYQ6lt+Jmi01vWFB8="
+ "hash": "9xdwhcq1RdrQ1DHxPZ/fy+69RRg0ZZ13UB5bK7dXqXY="
}
},
"is_incremental": false,
@@ -885,7 +1029,223 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.LdClient.html",
- "hash": "raIWWFQILQ/Nm79wNcuisqpjUhly+i3y4FCzyzaO1Go="
+ "hash": "oqY7XaxdswJrHBqlNQOSgaBX0yczi3o8D5VLspDyi8A="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html",
+ "hash": "UN4707hsBf/vH9l1HkiCtudmAtfZ/LNanchljvI1iEg="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html",
+ "hash": "a+ODYuYKI3nTI9/2QSgim0p+vNT06+dS8WT0dBInrTw="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html",
+ "hash": "eakDuvZSdNwKI5H3XgQKgKHC3kCoC2hnn50IUocXaaU="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.html",
+ "hash": "VKdyzrJ50N/xEYLJOzhNq9GVSGOiG0VyAdx7h48VUhA="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html",
+ "hash": "aAUnsovSlwtR3jA8wB0vvnyw/zdA2Z7Byo7nW5NcSkw="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html",
+ "hash": "6PwQkOMAmv2xhm4xYz6JwJdzIs51jrRSxtlVvvxrJTA="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html",
+ "hash": "Iqpqu2B59iaofKM3sW1OnaHoeIxg9lPgJ3wElCEN/Kg="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.html",
+ "hash": "Y5JUN1RoqodHVktM9zKjSBeIfeicBw7PkIXWU8s1ln0="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html",
+ "hash": "p3qxvowJqZXziyWzFcxVZ4mPW1QIMmibbrEHbypdPb8="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.html",
+ "hash": "WfY70YdI7ae4C9cLtUuSpJIuWJxEgqNNsBLN2x4vQSs="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html",
+ "hash": "A5nlpkdYRc1TJojeqkNjLFPKK0len08eDRRmWCs+T4Q="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html",
+ "hash": "gflm56x5lC4oHlTO/sGFgad1u5pdpq4+6tet+ZXAsjU="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.html",
+ "hash": "35eqPxLx5UsnpvggBDhQBm0gY0iJbUW1Pp4PJr85UlQ="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html",
+ "hash": "b4hum9qMfwhBgIFB7HCA0GBv0N4A11wWomKxDz0CsWc="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html",
+ "hash": "IQsEHPvOOWTew0uZfKB5ie6/B6ZLiHaKsfslyib8GK8="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html",
+ "hash": "Tzj4j4YCfqqAwBDjFrkaQTL4C5PfXCf7m7J4SLlOKFs="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html",
+ "hash": "R2UHiow5kU6AhB/+ZnP2iEZgfa4TNcouqXwPT0Roj78="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Migrations.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Migrations.html",
+ "hash": "WJ27xEnfN4/Uv36N05+tsYw27n3+OjA5rIagD+Ft3LU="
}
},
"is_incremental": false,
@@ -1029,7 +1389,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html",
- "hash": "9vxKcl4deWeHMAxf1UMMTvzMJF2N7d/0UlBx4bjLX5U="
+ "hash": "JeymI8vbvz3ooMquRmZY9GvC79mxBK6zxmhwIoxbO6k="
}
},
"is_incremental": false,
@@ -1047,6 +1407,66 @@
"is_incremental": false,
"version": ""
},
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html",
+ "hash": "AXluUsP4d7nVlVMOrgvKy/st8C4gj+0zHu51Gt5NeNw="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html",
+ "hash": "P/3SiiVTilKb2UpwDmTwCEGMcQwSdbA5Lh3VcFjpR3o="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html",
+ "hash": "/hZxSTOVIj0GAX6/wI9aTuaR/s4Y8rmTJBgAL72UaaQ="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html",
+ "hash": "LxlxWg64VRwLZrQFBcYBg6ttGYguRgwoe9sq1NukQb4="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
+ {
+ "type": "ManagedReference",
+ "source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.yml",
+ "output": {
+ ".html": {
+ "relative_path": "api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html",
+ "hash": "+hNX9oqeBb8Bg4l+qve0HqhtT5kN1zlGHBspwSvJ5Iw="
+ }
+ },
+ "is_incremental": false,
+ "version": ""
+ },
{
"type": "ManagedReference",
"source_relative_path": "build/api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.yml",
@@ -1161,7 +1581,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.html",
- "hash": "b3pqt6lZlv9BbIkL5LvDmiYTsDYnPxq6C23FUwMI9dA="
+ "hash": "2Ngn6UYL8Ye5Gwj+pbWCWfyXzyMa6UjEQPZScN89YEY="
}
},
"is_incremental": false,
@@ -1221,7 +1641,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.Server.Subsystems.html",
- "hash": "90lCdWKZIbiJSMkZA52X2+pnUPn5xnE4NQSCwvdEuoQ="
+ "hash": "/Ssve224X//42bfcKUx48sabrfnqtTQzUAMwfCEL21c="
}
},
"is_incremental": false,
@@ -1281,7 +1701,7 @@
"output": {
".html": {
"relative_path": "api/LaunchDarkly.Sdk.html",
- "hash": "fzG4CpvaRQApzS3W5a8YFIF7M3Zc4g0cwi7a3OWYk3U="
+ "hash": "+Cl89uEbGE0y6rA7NYIksAjmYZFPRAVXrWBal27Hrho="
}
},
"is_incremental": false,
@@ -1293,7 +1713,7 @@
"output": {
".html": {
"relative_path": "api/toc.html",
- "hash": "TLOqr/LB/LSuH62pktnqy1qSR8s86dpcw15tbZ/4Ho4="
+ "hash": "0kSmeis1Ckk6ARLSs7WaP9j7AO+veBpJd7kRkU5baTI="
}
},
"is_incremental": false,
@@ -1305,7 +1725,7 @@
"output": {
".html": {
"relative_path": "index.html",
- "hash": "IHkGBAPbcmyAZ/ZfSOt+oe+0pC6G6D+DsDh88jgRbP8="
+ "hash": "kd/tyXFBRl89M9FoG41/i1LYXpCO3hbD9E38AQqXkKc="
}
},
"is_incremental": false,
@@ -1344,7 +1764,7 @@
"ManagedReferenceDocumentProcessor": {
"can_incremental": false,
"incrementalPhase": "build",
- "total_file_count": 108,
+ "total_file_count": 143,
"skipped_file_count": 0
},
"TocDocumentProcessor": {
diff --git a/xrefmap.yml b/xrefmap.yml
index b5cdf37e..473d0b36 100644
--- a/xrefmap.yml
+++ b/xrefmap.yml
@@ -7,6 +7,150 @@ references:
commentId: N:LaunchDarkly.Sdk
fullName: LaunchDarkly.Sdk
nameWithType: LaunchDarkly.Sdk
+- uid: LaunchDarkly.Sdk.ApplicationInfo
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html
+ commentId: T:LaunchDarkly.Sdk.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.ApplicationInfo
+ nameWithType: ApplicationInfo
+- uid: LaunchDarkly.Sdk.ApplicationInfo.#ctor(System.String,System.String,System.String,System.String)
+ name: ApplicationInfo(String, String, String, String)
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo__ctor_System_String_System_String_System_String_System_String_
+ commentId: M:LaunchDarkly.Sdk.ApplicationInfo.#ctor(System.String,System.String,System.String,System.String)
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationInfo(System.String, System.String, System.String, System.String)
+ nameWithType: ApplicationInfo.ApplicationInfo(String, String, String, String)
+- uid: LaunchDarkly.Sdk.ApplicationInfo.#ctor*
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfo.#ctor
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationInfo
+ nameWithType: ApplicationInfo.ApplicationInfo
+- uid: LaunchDarkly.Sdk.ApplicationInfo.ApplicationId
+ name: ApplicationId
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo_ApplicationId
+ commentId: P:LaunchDarkly.Sdk.ApplicationInfo.ApplicationId
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationId
+ nameWithType: ApplicationInfo.ApplicationId
+- uid: LaunchDarkly.Sdk.ApplicationInfo.ApplicationId*
+ name: ApplicationId
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo_ApplicationId_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfo.ApplicationId
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationId
+ nameWithType: ApplicationInfo.ApplicationId
+- uid: LaunchDarkly.Sdk.ApplicationInfo.ApplicationName
+ name: ApplicationName
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo_ApplicationName
+ commentId: P:LaunchDarkly.Sdk.ApplicationInfo.ApplicationName
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationName
+ nameWithType: ApplicationInfo.ApplicationName
+- uid: LaunchDarkly.Sdk.ApplicationInfo.ApplicationName*
+ name: ApplicationName
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo_ApplicationName_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfo.ApplicationName
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationName
+ nameWithType: ApplicationInfo.ApplicationName
+- uid: LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersion
+ name: ApplicationVersion
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo_ApplicationVersion
+ commentId: P:LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersion
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersion
+ nameWithType: ApplicationInfo.ApplicationVersion
+- uid: LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersion*
+ name: ApplicationVersion
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo_ApplicationVersion_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersion
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersion
+ nameWithType: ApplicationInfo.ApplicationVersion
+- uid: LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersionName
+ name: ApplicationVersionName
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo_ApplicationVersionName
+ commentId: P:LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersionName
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersionName
+ nameWithType: ApplicationInfo.ApplicationVersionName
+- uid: LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersionName*
+ name: ApplicationVersionName
+ href: api/LaunchDarkly.Sdk.ApplicationInfo.html#LaunchDarkly_Sdk_ApplicationInfo_ApplicationVersionName_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersionName
+ fullName: LaunchDarkly.Sdk.ApplicationInfo.ApplicationVersionName
+ nameWithType: ApplicationInfo.ApplicationVersionName
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder
+ name: ApplicationInfoBuilder
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html
+ commentId: T:LaunchDarkly.Sdk.ApplicationInfoBuilder
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder
+ nameWithType: ApplicationInfoBuilder
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.#ctor
+ name: ApplicationInfoBuilder()
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder__ctor
+ commentId: M:LaunchDarkly.Sdk.ApplicationInfoBuilder.#ctor
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationInfoBuilder()
+ nameWithType: ApplicationInfoBuilder.ApplicationInfoBuilder()
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.#ctor*
+ name: ApplicationInfoBuilder
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfoBuilder.#ctor
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationInfoBuilder
+ nameWithType: ApplicationInfoBuilder.ApplicationInfoBuilder
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationId(System.String)
+ name: ApplicationId(String)
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_ApplicationId_System_String_
+ commentId: M:LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationId(System.String)
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationId(System.String)
+ nameWithType: ApplicationInfoBuilder.ApplicationId(String)
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationId*
+ name: ApplicationId
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_ApplicationId_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationId
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationId
+ nameWithType: ApplicationInfoBuilder.ApplicationId
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationName(System.String)
+ name: ApplicationName(String)
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_ApplicationName_System_String_
+ commentId: M:LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationName(System.String)
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationName(System.String)
+ nameWithType: ApplicationInfoBuilder.ApplicationName(String)
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationName*
+ name: ApplicationName
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_ApplicationName_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationName
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationName
+ nameWithType: ApplicationInfoBuilder.ApplicationName
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersion(System.String)
+ name: ApplicationVersion(String)
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_ApplicationVersion_System_String_
+ commentId: M:LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersion(System.String)
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersion(System.String)
+ nameWithType: ApplicationInfoBuilder.ApplicationVersion(String)
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersion*
+ name: ApplicationVersion
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_ApplicationVersion_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersion
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersion
+ nameWithType: ApplicationInfoBuilder.ApplicationVersion
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersionName(System.String)
+ name: ApplicationVersionName(String)
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_ApplicationVersionName_System_String_
+ commentId: M:LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersionName(System.String)
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersionName(System.String)
+ nameWithType: ApplicationInfoBuilder.ApplicationVersionName(String)
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersionName*
+ name: ApplicationVersionName
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_ApplicationVersionName_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersionName
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.ApplicationVersionName
+ nameWithType: ApplicationInfoBuilder.ApplicationVersionName
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.Build
+ name: Build()
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_Build
+ commentId: M:LaunchDarkly.Sdk.ApplicationInfoBuilder.Build
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.Build()
+ nameWithType: ApplicationInfoBuilder.Build()
+- uid: LaunchDarkly.Sdk.ApplicationInfoBuilder.Build*
+ name: Build
+ href: api/LaunchDarkly.Sdk.ApplicationInfoBuilder.html#LaunchDarkly_Sdk_ApplicationInfoBuilder_Build_
+ commentId: Overload:LaunchDarkly.Sdk.ApplicationInfoBuilder.Build
+ fullName: LaunchDarkly.Sdk.ApplicationInfoBuilder.Build
+ nameWithType: ApplicationInfoBuilder.Build
- uid: LaunchDarkly.Sdk.AttributeRef
name: AttributeRef
href: api/LaunchDarkly.Sdk.AttributeRef.html
@@ -826,6 +970,345 @@ references:
commentId: Overload:LaunchDarkly.Sdk.ContextMultiBuilder.Build
fullName: LaunchDarkly.Sdk.ContextMultiBuilder.Build
nameWithType: ContextMultiBuilder.Build
+- uid: LaunchDarkly.Sdk.EnvReporting
+ name: LaunchDarkly.Sdk.EnvReporting
+ href: api/LaunchDarkly.Sdk.EnvReporting.html
+ commentId: N:LaunchDarkly.Sdk.EnvReporting
+ fullName: LaunchDarkly.Sdk.EnvReporting
+ nameWithType: LaunchDarkly.Sdk.EnvReporting
+- uid: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder
+ name: ConfigLayerBuilder
+ href: api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html
+ commentId: T:LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder
+ fullName: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder
+ nameWithType: ConfigLayerBuilder
+- uid: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.#ctor
+ name: ConfigLayerBuilder()
+ href: api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html#LaunchDarkly_Sdk_EnvReporting_ConfigLayerBuilder__ctor
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.#ctor
+ fullName: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.ConfigLayerBuilder()
+ nameWithType: ConfigLayerBuilder.ConfigLayerBuilder()
+- uid: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.#ctor*
+ name: ConfigLayerBuilder
+ href: api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html#LaunchDarkly_Sdk_EnvReporting_ConfigLayerBuilder__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.#ctor
+ fullName: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.ConfigLayerBuilder
+ nameWithType: ConfigLayerBuilder.ConfigLayerBuilder
+- uid: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.Build
+ name: Build()
+ href: api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html#LaunchDarkly_Sdk_EnvReporting_ConfigLayerBuilder_Build
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.Build
+ fullName: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.Build()
+ nameWithType: ConfigLayerBuilder.Build()
+- uid: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.Build*
+ name: Build
+ href: api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html#LaunchDarkly_Sdk_EnvReporting_ConfigLayerBuilder_Build_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.Build
+ fullName: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.Build
+ nameWithType: ConfigLayerBuilder.Build
+- uid: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.SetAppInfo(LaunchDarkly.Sdk.ApplicationInfo)
+ name: SetAppInfo(ApplicationInfo)
+ href: api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html#LaunchDarkly_Sdk_EnvReporting_ConfigLayerBuilder_SetAppInfo_LaunchDarkly_Sdk_ApplicationInfo_
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.SetAppInfo(LaunchDarkly.Sdk.ApplicationInfo)
+ fullName: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.SetAppInfo(LaunchDarkly.Sdk.ApplicationInfo)
+ nameWithType: ConfigLayerBuilder.SetAppInfo(ApplicationInfo)
+- uid: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.SetAppInfo*
+ name: SetAppInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.html#LaunchDarkly_Sdk_EnvReporting_ConfigLayerBuilder_SetAppInfo_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.SetAppInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.ConfigLayerBuilder.SetAppInfo
+ nameWithType: ConfigLayerBuilder.SetAppInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder
+ name: EnvironmentReporterBuilder
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html
+ commentId: T:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder
+ nameWithType: EnvironmentReporterBuilder
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.#ctor
+ name: EnvironmentReporterBuilder()
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder__ctor
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.#ctor
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.EnvironmentReporterBuilder()
+ nameWithType: EnvironmentReporterBuilder.EnvironmentReporterBuilder()
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.#ctor*
+ name: EnvironmentReporterBuilder
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.#ctor
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.EnvironmentReporterBuilder
+ nameWithType: EnvironmentReporterBuilder.EnvironmentReporterBuilder
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.Build
+ name: Build()
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder_Build
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.Build
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.Build()
+ nameWithType: EnvironmentReporterBuilder.Build()
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.Build*
+ name: Build
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder_Build_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.Build
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.Build
+ nameWithType: EnvironmentReporterBuilder.Build
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetConfigLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ name: SetConfigLayer(Layer)
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder_SetConfigLayer_LaunchDarkly_Sdk_EnvReporting_Layer_
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetConfigLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetConfigLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ nameWithType: EnvironmentReporterBuilder.SetConfigLayer(Layer)
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetConfigLayer*
+ name: SetConfigLayer
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder_SetConfigLayer_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetConfigLayer
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetConfigLayer
+ nameWithType: EnvironmentReporterBuilder.SetConfigLayer
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetPlatformLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ name: SetPlatformLayer(Layer)
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder_SetPlatformLayer_LaunchDarkly_Sdk_EnvReporting_Layer_
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetPlatformLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetPlatformLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ nameWithType: EnvironmentReporterBuilder.SetPlatformLayer(Layer)
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetPlatformLayer*
+ name: SetPlatformLayer
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder_SetPlatformLayer_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetPlatformLayer
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetPlatformLayer
+ nameWithType: EnvironmentReporterBuilder.SetPlatformLayer
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetSdkLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ name: SetSdkLayer(Layer)
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder_SetSdkLayer_LaunchDarkly_Sdk_EnvReporting_Layer_
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetSdkLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetSdkLayer(LaunchDarkly.Sdk.EnvReporting.Layer)
+ nameWithType: EnvironmentReporterBuilder.SetSdkLayer(Layer)
+- uid: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetSdkLayer*
+ name: SetSdkLayer
+ href: api/LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.html#LaunchDarkly_Sdk_EnvReporting_EnvironmentReporterBuilder_SetSdkLayer_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetSdkLayer
+ fullName: LaunchDarkly.Sdk.EnvReporting.EnvironmentReporterBuilder.SetSdkLayer
+ nameWithType: EnvironmentReporterBuilder.SetSdkLayer
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter
+ name: IEnvironmentReporter
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html
+ commentId: T:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter
+ nameWithType: IEnvironmentReporter
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.ApplicationInfo
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html#LaunchDarkly_Sdk_EnvReporting_IEnvironmentReporter_ApplicationInfo
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.ApplicationInfo
+ nameWithType: IEnvironmentReporter.ApplicationInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.ApplicationInfo*
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html#LaunchDarkly_Sdk_EnvReporting_IEnvironmentReporter_ApplicationInfo_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.ApplicationInfo
+ nameWithType: IEnvironmentReporter.ApplicationInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.DeviceInfo
+ name: DeviceInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html#LaunchDarkly_Sdk_EnvReporting_IEnvironmentReporter_DeviceInfo
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.DeviceInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.DeviceInfo
+ nameWithType: IEnvironmentReporter.DeviceInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.DeviceInfo*
+ name: DeviceInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html#LaunchDarkly_Sdk_EnvReporting_IEnvironmentReporter_DeviceInfo_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.DeviceInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.DeviceInfo
+ nameWithType: IEnvironmentReporter.DeviceInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.Locale
+ name: Locale
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html#LaunchDarkly_Sdk_EnvReporting_IEnvironmentReporter_Locale
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.Locale
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.Locale
+ nameWithType: IEnvironmentReporter.Locale
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.Locale*
+ name: Locale
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html#LaunchDarkly_Sdk_EnvReporting_IEnvironmentReporter_Locale_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.Locale
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.Locale
+ nameWithType: IEnvironmentReporter.Locale
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.OsInfo
+ name: OsInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html#LaunchDarkly_Sdk_EnvReporting_IEnvironmentReporter_OsInfo
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.OsInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.OsInfo
+ nameWithType: IEnvironmentReporter.OsInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.OsInfo*
+ name: OsInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.html#LaunchDarkly_Sdk_EnvReporting_IEnvironmentReporter_OsInfo_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.OsInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.IEnvironmentReporter.OsInfo
+ nameWithType: IEnvironmentReporter.OsInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer
+ name: Layer
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html
+ commentId: T:LaunchDarkly.Sdk.EnvReporting.Layer
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer
+ nameWithType: Layer
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.#ctor(System.Nullable{LaunchDarkly.Sdk.ApplicationInfo},System.Nullable{LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo},System.Nullable{LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo},System.String)
+ name: Layer(Nullable, Nullable, Nullable, String)
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer__ctor_System_Nullable_LaunchDarkly_Sdk_ApplicationInfo__System_Nullable_LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo__System_Nullable_LaunchDarkly_Sdk_EnvReporting_LayerModels_DeviceInfo__System_String_
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.Layer.#ctor(System.Nullable{LaunchDarkly.Sdk.ApplicationInfo},System.Nullable{LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo},System.Nullable{LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo},System.String)
+ name.vb: Layer(Nullable(Of ApplicationInfo), Nullable(Of OsInfo), Nullable(Of DeviceInfo), String)
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.Layer(System.Nullable, System.Nullable, System.Nullable, System.String)
+ fullName.vb: LaunchDarkly.Sdk.EnvReporting.Layer.Layer(System.Nullable(Of LaunchDarkly.Sdk.ApplicationInfo), System.Nullable(Of LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo), System.Nullable(Of LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo), System.String)
+ nameWithType: Layer.Layer(Nullable, Nullable, Nullable, String)
+ nameWithType.vb: Layer.Layer(Nullable(Of ApplicationInfo), Nullable(Of OsInfo), Nullable(Of DeviceInfo), String)
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.#ctor*
+ name: Layer
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.Layer.#ctor
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.Layer
+ nameWithType: Layer.Layer
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.ApplicationInfo
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer_ApplicationInfo
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.Layer.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.ApplicationInfo
+ nameWithType: Layer.ApplicationInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.ApplicationInfo*
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer_ApplicationInfo_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.Layer.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.ApplicationInfo
+ nameWithType: Layer.ApplicationInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.DeviceInfo
+ name: DeviceInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer_DeviceInfo
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.Layer.DeviceInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.DeviceInfo
+ nameWithType: Layer.DeviceInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.DeviceInfo*
+ name: DeviceInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer_DeviceInfo_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.Layer.DeviceInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.DeviceInfo
+ nameWithType: Layer.DeviceInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.Locale
+ name: Locale
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer_Locale
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.Layer.Locale
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.Locale
+ nameWithType: Layer.Locale
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.Locale*
+ name: Locale
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer_Locale_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.Layer.Locale
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.Locale
+ nameWithType: Layer.Locale
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.OsInfo
+ name: OsInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer_OsInfo
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.Layer.OsInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.OsInfo
+ nameWithType: Layer.OsInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.Layer.OsInfo*
+ name: OsInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.Layer.html#LaunchDarkly_Sdk_EnvReporting_Layer_OsInfo_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.Layer.OsInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.Layer.OsInfo
+ nameWithType: Layer.OsInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels
+ name: LaunchDarkly.Sdk.EnvReporting.LayerModels
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.html
+ commentId: N:LaunchDarkly.Sdk.EnvReporting.LayerModels
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels
+ nameWithType: LaunchDarkly.Sdk.EnvReporting.LayerModels
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo
+ name: DeviceInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html
+ commentId: T:LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo
+ nameWithType: DeviceInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.#ctor(System.String,System.String)
+ name: DeviceInfo(String, String)
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_DeviceInfo__ctor_System_String_System_String_
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.#ctor(System.String,System.String)
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.DeviceInfo(System.String, System.String)
+ nameWithType: DeviceInfo.DeviceInfo(String, String)
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.#ctor*
+ name: DeviceInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_DeviceInfo__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.#ctor
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.DeviceInfo
+ nameWithType: DeviceInfo.DeviceInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Manufacturer
+ name: Manufacturer
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_DeviceInfo_Manufacturer
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Manufacturer
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Manufacturer
+ nameWithType: DeviceInfo.Manufacturer
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Manufacturer*
+ name: Manufacturer
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_DeviceInfo_Manufacturer_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Manufacturer
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Manufacturer
+ nameWithType: DeviceInfo.Manufacturer
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Model
+ name: Model
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_DeviceInfo_Model
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Model
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Model
+ nameWithType: DeviceInfo.Model
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Model*
+ name: Model
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_DeviceInfo_Model_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Model
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.DeviceInfo.Model
+ nameWithType: DeviceInfo.Model
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo
+ name: OsInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html
+ commentId: T:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo
+ nameWithType: OsInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.#ctor(System.String,System.String,System.String)
+ name: OsInfo(String, String, String)
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo__ctor_System_String_System_String_System_String_
+ commentId: M:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.#ctor(System.String,System.String,System.String)
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.OsInfo(System.String, System.String, System.String)
+ nameWithType: OsInfo.OsInfo(String, String, String)
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.#ctor*
+ name: OsInfo
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.#ctor
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.OsInfo
+ nameWithType: OsInfo.OsInfo
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Family
+ name: Family
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo_Family
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Family
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Family
+ nameWithType: OsInfo.Family
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Family*
+ name: Family
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo_Family_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Family
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Family
+ nameWithType: OsInfo.Family
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Name
+ name: Name
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo_Name
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Name
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Name
+ nameWithType: OsInfo.Name
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Name*
+ name: Name
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo_Name_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Name
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Name
+ nameWithType: OsInfo.Name
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Version
+ name: Version
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo_Version
+ commentId: P:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Version
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Version
+ nameWithType: OsInfo.Version
+- uid: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Version*
+ name: Version
+ href: api/LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.html#LaunchDarkly_Sdk_EnvReporting_LayerModels_OsInfo_Version_
+ commentId: Overload:LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Version
+ fullName: LaunchDarkly.Sdk.EnvReporting.LayerModels.OsInfo.Version
+ nameWithType: OsInfo.Version
- uid: LaunchDarkly.Sdk.EvaluationDetail`1
name: EvaluationDetail
href: api/LaunchDarkly.Sdk.EvaluationDetail-1.html
@@ -1269,6 +1752,42 @@ references:
commentId: F:LaunchDarkly.Sdk.EvaluationReasonKind.value__
fullName: LaunchDarkly.Sdk.EvaluationReasonKind.value__
nameWithType: EvaluationReasonKind.value__
+- uid: LaunchDarkly.Sdk.Helpers
+ name: LaunchDarkly.Sdk.Helpers
+ href: api/LaunchDarkly.Sdk.Helpers.html
+ commentId: N:LaunchDarkly.Sdk.Helpers
+ fullName: LaunchDarkly.Sdk.Helpers
+ nameWithType: LaunchDarkly.Sdk.Helpers
+- uid: LaunchDarkly.Sdk.Helpers.ValidationUtils
+ name: ValidationUtils
+ href: api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html
+ commentId: T:LaunchDarkly.Sdk.Helpers.ValidationUtils
+ fullName: LaunchDarkly.Sdk.Helpers.ValidationUtils
+ nameWithType: ValidationUtils
+- uid: LaunchDarkly.Sdk.Helpers.ValidationUtils.SanitizeSpaces(System.String)
+ name: SanitizeSpaces(String)
+ href: api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html#LaunchDarkly_Sdk_Helpers_ValidationUtils_SanitizeSpaces_System_String_
+ commentId: M:LaunchDarkly.Sdk.Helpers.ValidationUtils.SanitizeSpaces(System.String)
+ fullName: LaunchDarkly.Sdk.Helpers.ValidationUtils.SanitizeSpaces(System.String)
+ nameWithType: ValidationUtils.SanitizeSpaces(String)
+- uid: LaunchDarkly.Sdk.Helpers.ValidationUtils.SanitizeSpaces*
+ name: SanitizeSpaces
+ href: api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html#LaunchDarkly_Sdk_Helpers_ValidationUtils_SanitizeSpaces_
+ commentId: Overload:LaunchDarkly.Sdk.Helpers.ValidationUtils.SanitizeSpaces
+ fullName: LaunchDarkly.Sdk.Helpers.ValidationUtils.SanitizeSpaces
+ nameWithType: ValidationUtils.SanitizeSpaces
+- uid: LaunchDarkly.Sdk.Helpers.ValidationUtils.ValidateStringValue(System.String)
+ name: ValidateStringValue(String)
+ href: api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html#LaunchDarkly_Sdk_Helpers_ValidationUtils_ValidateStringValue_System_String_
+ commentId: M:LaunchDarkly.Sdk.Helpers.ValidationUtils.ValidateStringValue(System.String)
+ fullName: LaunchDarkly.Sdk.Helpers.ValidationUtils.ValidateStringValue(System.String)
+ nameWithType: ValidationUtils.ValidateStringValue(String)
+- uid: LaunchDarkly.Sdk.Helpers.ValidationUtils.ValidateStringValue*
+ name: ValidateStringValue
+ href: api/LaunchDarkly.Sdk.Helpers.ValidationUtils.html#LaunchDarkly_Sdk_Helpers_ValidationUtils_ValidateStringValue_
+ commentId: Overload:LaunchDarkly.Sdk.Helpers.ValidationUtils.ValidateStringValue
+ fullName: LaunchDarkly.Sdk.Helpers.ValidationUtils.ValidateStringValue
+ nameWithType: ValidationUtils.ValidateStringValue
- uid: LaunchDarkly.Sdk.IUserBuilder
name: IUserBuilder
href: api/LaunchDarkly.Sdk.IUserBuilder.html
@@ -2889,6 +3408,18 @@ references:
commentId: T:LaunchDarkly.Sdk.Server.Components
fullName: LaunchDarkly.Sdk.Server.Components
nameWithType: Components
+- uid: LaunchDarkly.Sdk.Server.Components.ApplicationInfo
+ name: ApplicationInfo()
+ href: api/LaunchDarkly.Sdk.Server.Components.html#LaunchDarkly_Sdk_Server_Components_ApplicationInfo
+ commentId: M:LaunchDarkly.Sdk.Server.Components.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.Server.Components.ApplicationInfo()
+ nameWithType: Components.ApplicationInfo()
+- uid: LaunchDarkly.Sdk.Server.Components.ApplicationInfo*
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.Server.Components.html#LaunchDarkly_Sdk_Server_Components_ApplicationInfo_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Components.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.Server.Components.ApplicationInfo
+ nameWithType: Components.ApplicationInfo
- uid: LaunchDarkly.Sdk.Server.Components.BigSegments(LaunchDarkly.Sdk.Server.Subsystems.IComponentConfigurer{LaunchDarkly.Sdk.Server.Subsystems.IBigSegmentStore})
name: BigSegments(IComponentConfigurer)
href: api/LaunchDarkly.Sdk.Server.Components.html#LaunchDarkly_Sdk_Server_Components_BigSegments_LaunchDarkly_Sdk_Server_Subsystems_IComponentConfigurer_LaunchDarkly_Sdk_Server_Subsystems_IBigSegmentStore__
@@ -3060,6 +3591,18 @@ references:
commentId: T:LaunchDarkly.Sdk.Server.Configuration
fullName: LaunchDarkly.Sdk.Server.Configuration
nameWithType: Configuration
+- uid: LaunchDarkly.Sdk.Server.Configuration.ApplicationInfo
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.Server.Configuration.html#LaunchDarkly_Sdk_Server_Configuration_ApplicationInfo
+ commentId: P:LaunchDarkly.Sdk.Server.Configuration.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.Server.Configuration.ApplicationInfo
+ nameWithType: Configuration.ApplicationInfo
+- uid: LaunchDarkly.Sdk.Server.Configuration.ApplicationInfo*
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.Server.Configuration.html#LaunchDarkly_Sdk_Server_Configuration_ApplicationInfo_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Configuration.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.Server.Configuration.ApplicationInfo
+ nameWithType: Configuration.ApplicationInfo
- uid: LaunchDarkly.Sdk.Server.Configuration.BigSegments
name: BigSegments
href: api/LaunchDarkly.Sdk.Server.Configuration.html#LaunchDarkly_Sdk_Server_Configuration_BigSegments
@@ -3228,6 +3771,18 @@ references:
commentId: T:LaunchDarkly.Sdk.Server.ConfigurationBuilder
fullName: LaunchDarkly.Sdk.Server.ConfigurationBuilder
nameWithType: ConfigurationBuilder
+- uid: LaunchDarkly.Sdk.Server.ConfigurationBuilder.ApplicationInfo(LaunchDarkly.Sdk.ApplicationInfoBuilder)
+ name: ApplicationInfo(ApplicationInfoBuilder)
+ href: api/LaunchDarkly.Sdk.Server.ConfigurationBuilder.html#LaunchDarkly_Sdk_Server_ConfigurationBuilder_ApplicationInfo_LaunchDarkly_Sdk_ApplicationInfoBuilder_
+ commentId: M:LaunchDarkly.Sdk.Server.ConfigurationBuilder.ApplicationInfo(LaunchDarkly.Sdk.ApplicationInfoBuilder)
+ fullName: LaunchDarkly.Sdk.Server.ConfigurationBuilder.ApplicationInfo(LaunchDarkly.Sdk.ApplicationInfoBuilder)
+ nameWithType: ConfigurationBuilder.ApplicationInfo(ApplicationInfoBuilder)
+- uid: LaunchDarkly.Sdk.Server.ConfigurationBuilder.ApplicationInfo*
+ name: ApplicationInfo
+ href: api/LaunchDarkly.Sdk.Server.ConfigurationBuilder.html#LaunchDarkly_Sdk_Server_ConfigurationBuilder_ApplicationInfo_
+ commentId: Overload:LaunchDarkly.Sdk.Server.ConfigurationBuilder.ApplicationInfo
+ fullName: LaunchDarkly.Sdk.Server.ConfigurationBuilder.ApplicationInfo
+ nameWithType: ConfigurationBuilder.ApplicationInfo
- uid: LaunchDarkly.Sdk.Server.ConfigurationBuilder.BigSegments(LaunchDarkly.Sdk.Server.Subsystems.IComponentConfigurer{LaunchDarkly.Sdk.Server.Subsystems.BigSegmentsConfiguration})
name: BigSegments(IComponentConfigurer)
href: api/LaunchDarkly.Sdk.Server.ConfigurationBuilder.html#LaunchDarkly_Sdk_Server_ConfigurationBuilder_BigSegments_LaunchDarkly_Sdk_Server_Subsystems_IComponentConfigurer_LaunchDarkly_Sdk_Server_Subsystems_BigSegmentsConfiguration__
@@ -3606,69 +4161,6 @@ references:
commentId: T:LaunchDarkly.Sdk.Server.ILdClientExtensions
fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions
nameWithType: ILdClientExtensions
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.AllFlagsState(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.Server.FlagsStateOption[])
- name: AllFlagsState(ILdClient, User, FlagsStateOption[])
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_AllFlagsState_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_LaunchDarkly_Sdk_User_LaunchDarkly_Sdk_Server_FlagsStateOption___
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.AllFlagsState(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.Server.FlagsStateOption[])
- name.vb: AllFlagsState(ILdClient, User, FlagsStateOption())
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.AllFlagsState(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, LaunchDarkly.Sdk.User, LaunchDarkly.Sdk.Server.FlagsStateOption[])
- fullName.vb: LaunchDarkly.Sdk.Server.ILdClientExtensions.AllFlagsState(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, LaunchDarkly.Sdk.User, LaunchDarkly.Sdk.Server.FlagsStateOption())
- nameWithType: ILdClientExtensions.AllFlagsState(ILdClient, User, FlagsStateOption[])
- nameWithType.vb: ILdClientExtensions.AllFlagsState(ILdClient, User, FlagsStateOption())
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.AllFlagsState*
- name: AllFlagsState
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_AllFlagsState_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.AllFlagsState
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.AllFlagsState
- nameWithType: ILdClientExtensions.AllFlagsState
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Boolean)
- name: BoolVariation(ILdClient, String, User, Boolean)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_BoolVariation_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_Boolean_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Boolean)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.Boolean)
- nameWithType: ILdClientExtensions.BoolVariation(ILdClient, String, User, Boolean)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariation*
- name: BoolVariation
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_BoolVariation_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariation
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariation
- nameWithType: ILdClientExtensions.BoolVariation
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Boolean)
- name: BoolVariationDetail(ILdClient, String, User, Boolean)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_BoolVariationDetail_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_Boolean_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Boolean)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.Boolean)
- nameWithType: ILdClientExtensions.BoolVariationDetail(ILdClient, String, User, Boolean)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariationDetail*
- name: BoolVariationDetail
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_BoolVariationDetail_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariationDetail
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.BoolVariationDetail
- nameWithType: ILdClientExtensions.BoolVariationDetail
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Double)
- name: DoubleVariation(ILdClient, String, User, Double)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_DoubleVariation_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_Double_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Double)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.Double)
- nameWithType: ILdClientExtensions.DoubleVariation(ILdClient, String, User, Double)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariation*
- name: DoubleVariation
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_DoubleVariation_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariation
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariation
- nameWithType: ILdClientExtensions.DoubleVariation
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Double)
- name: DoubleVariationDetail(ILdClient, String, User, Double)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_DoubleVariationDetail_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_Double_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Double)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.Double)
- nameWithType: ILdClientExtensions.DoubleVariationDetail(ILdClient, String, User, Double)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariationDetail*
- name: DoubleVariationDetail
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_DoubleVariationDetail_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariationDetail
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.DoubleVariationDetail
- nameWithType: ILdClientExtensions.DoubleVariationDetail
- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.EnumVariation*
name: EnumVariation
href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_EnumVariation_
@@ -3684,15 +4176,6 @@ references:
fullName.vb: LaunchDarkly.Sdk.Server.ILdClientExtensions.EnumVariation(Of T)(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.Context, T)
nameWithType: ILdClientExtensions.EnumVariation(ILdClient, String, Context, T)
nameWithType.vb: ILdClientExtensions.EnumVariation(Of T)(ILdClient, String, Context, T)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.EnumVariation``1(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,``0)
- name: EnumVariation(ILdClient, String, User, T)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_EnumVariation__1_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User___0_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.EnumVariation``1(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,``0)
- name.vb: EnumVariation(Of T)(ILdClient, String, User, T)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.EnumVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, T)
- fullName.vb: LaunchDarkly.Sdk.Server.ILdClientExtensions.EnumVariation(Of T)(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, T)
- nameWithType: ILdClientExtensions.EnumVariation(ILdClient, String, User, T)
- nameWithType.vb: ILdClientExtensions.EnumVariation(Of T)(ILdClient, String, User, T)
- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.EnumVariationDetail*
name: EnumVariationDetail
href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_EnumVariationDetail_
@@ -3708,150 +4191,6 @@ references:
fullName.vb: LaunchDarkly.Sdk.Server.ILdClientExtensions.EnumVariationDetail(Of T)(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.Context, T)
nameWithType: ILdClientExtensions.EnumVariationDetail(ILdClient, String, Context, T)
nameWithType.vb: ILdClientExtensions.EnumVariationDetail(Of T)(ILdClient, String, Context, T)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Single)
- name: FloatVariation(ILdClient, String, User, Single)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_FloatVariation_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_Single_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Single)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.Single)
- nameWithType: ILdClientExtensions.FloatVariation(ILdClient, String, User, Single)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariation*
- name: FloatVariation
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_FloatVariation_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariation
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariation
- nameWithType: ILdClientExtensions.FloatVariation
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Single)
- name: FloatVariationDetail(ILdClient, String, User, Single)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_FloatVariationDetail_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_Single_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Single)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.Single)
- nameWithType: ILdClientExtensions.FloatVariationDetail(ILdClient, String, User, Single)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariationDetail*
- name: FloatVariationDetail
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_FloatVariationDetail_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariationDetail
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.FloatVariationDetail
- nameWithType: ILdClientExtensions.FloatVariationDetail
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.Identify(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,LaunchDarkly.Sdk.User)
- name: Identify(ILdClient, User)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_Identify_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_LaunchDarkly_Sdk_User_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.Identify(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,LaunchDarkly.Sdk.User)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.Identify(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, LaunchDarkly.Sdk.User)
- nameWithType: ILdClientExtensions.Identify(ILdClient, User)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.Identify*
- name: Identify
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_Identify_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.Identify
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.Identify
- nameWithType: ILdClientExtensions.Identify
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Int32)
- name: IntVariation(ILdClient, String, User, Int32)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_IntVariation_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_Int32_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Int32)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.Int32)
- nameWithType: ILdClientExtensions.IntVariation(ILdClient, String, User, Int32)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariation*
- name: IntVariation
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_IntVariation_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariation
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariation
- nameWithType: ILdClientExtensions.IntVariation
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Int32)
- name: IntVariationDetail(ILdClient, String, User, Int32)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_IntVariationDetail_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_Int32_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.Int32)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.Int32)
- nameWithType: ILdClientExtensions.IntVariationDetail(ILdClient, String, User, Int32)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariationDetail*
- name: IntVariationDetail
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_IntVariationDetail_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariationDetail
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.IntVariationDetail
- nameWithType: ILdClientExtensions.IntVariationDetail
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.LdValue)
- name: JsonVariation(ILdClient, String, User, LdValue)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_JsonVariation_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_LaunchDarkly_Sdk_LdValue_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.LdValue)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, LaunchDarkly.Sdk.LdValue)
- nameWithType: ILdClientExtensions.JsonVariation(ILdClient, String, User, LdValue)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariation*
- name: JsonVariation
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_JsonVariation_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariation
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariation
- nameWithType: ILdClientExtensions.JsonVariation
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.LdValue)
- name: JsonVariationDetail(ILdClient, String, User, LdValue)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_JsonVariationDetail_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_LaunchDarkly_Sdk_LdValue_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.LdValue)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, LaunchDarkly.Sdk.LdValue)
- nameWithType: ILdClientExtensions.JsonVariationDetail(ILdClient, String, User, LdValue)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariationDetail*
- name: JsonVariationDetail
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_JsonVariationDetail_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariationDetail
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.JsonVariationDetail
- nameWithType: ILdClientExtensions.JsonVariationDetail
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.SecureModeHash(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,LaunchDarkly.Sdk.User)
- name: SecureModeHash(ILdClient, User)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_SecureModeHash_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_LaunchDarkly_Sdk_User_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.SecureModeHash(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,LaunchDarkly.Sdk.User)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.SecureModeHash(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, LaunchDarkly.Sdk.User)
- nameWithType: ILdClientExtensions.SecureModeHash(ILdClient, User)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.SecureModeHash*
- name: SecureModeHash
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_SecureModeHash_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.SecureModeHash
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.SecureModeHash
- nameWithType: ILdClientExtensions.SecureModeHash
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.String)
- name: StringVariation(ILdClient, String, User, String)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_StringVariation_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_String_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.String)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariation(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.String)
- nameWithType: ILdClientExtensions.StringVariation(ILdClient, String, User, String)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariation*
- name: StringVariation
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_StringVariation_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariation
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariation
- nameWithType: ILdClientExtensions.StringVariation
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.String)
- name: StringVariationDetail(ILdClient, String, User, String)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_StringVariationDetail_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_System_String_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,System.String)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariationDetail(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, System.String)
- nameWithType: ILdClientExtensions.StringVariationDetail(ILdClient, String, User, String)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariationDetail*
- name: StringVariationDetail
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_StringVariationDetail_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariationDetail
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.StringVariationDetail
- nameWithType: ILdClientExtensions.StringVariationDetail
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User)
- name: Track(ILdClient, String, User)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_Track_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User)
- nameWithType: ILdClientExtensions.Track(ILdClient, String, User)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.LdValue)
- name: Track(ILdClient, String, User, LdValue)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_Track_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_LaunchDarkly_Sdk_LdValue_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.LdValue)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, LaunchDarkly.Sdk.LdValue)
- nameWithType: ILdClientExtensions.Track(ILdClient, String, User, LdValue)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.LdValue,System.Double)
- name: Track(ILdClient, String, User, LdValue, Double)
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_Track_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_System_String_LaunchDarkly_Sdk_User_LaunchDarkly_Sdk_LdValue_System_Double_
- commentId: M:LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient,System.String,LaunchDarkly.Sdk.User,LaunchDarkly.Sdk.LdValue,System.Double)
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.Track(LaunchDarkly.Sdk.Server.Interfaces.ILdClient, System.String, LaunchDarkly.Sdk.User, LaunchDarkly.Sdk.LdValue, System.Double)
- nameWithType: ILdClientExtensions.Track(ILdClient, String, User, LdValue, Double)
-- uid: LaunchDarkly.Sdk.Server.ILdClientExtensions.Track*
- name: Track
- href: api/LaunchDarkly.Sdk.Server.ILdClientExtensions.html#LaunchDarkly_Sdk_Server_ILdClientExtensions_Track_
- commentId: Overload:LaunchDarkly.Sdk.Server.ILdClientExtensions.Track
- fullName: LaunchDarkly.Sdk.Server.ILdClientExtensions.Track
- nameWithType: ILdClientExtensions.Track
- uid: LaunchDarkly.Sdk.Server.Integrations
name: LaunchDarkly.Sdk.Server.Integrations
href: api/LaunchDarkly.Sdk.Server.Integrations.html
@@ -4923,6 +5262,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ClearTargets
fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ClearTargets
nameWithType: TestData.FlagBuilder.ClearTargets
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ExcludeFromSummaries(System.Boolean)
+ name: ExcludeFromSummaries(Boolean)
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_ExcludeFromSummaries_System_Boolean_
+ commentId: M:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ExcludeFromSummaries(System.Boolean)
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ExcludeFromSummaries(System.Boolean)
+ nameWithType: TestData.FlagBuilder.ExcludeFromSummaries(Boolean)
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ExcludeFromSummaries*
+ name: ExcludeFromSummaries
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_ExcludeFromSummaries_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ExcludeFromSummaries
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ExcludeFromSummaries
+ nameWithType: TestData.FlagBuilder.ExcludeFromSummaries
- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.FallthroughVariation(System.Boolean)
name: FallthroughVariation(Boolean)
href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_FallthroughVariation_System_Boolean_
@@ -5001,6 +5352,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.IfNotMatchContext
fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.IfNotMatchContext
nameWithType: TestData.FlagBuilder.IfNotMatchContext
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.Migration(LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder)
+ name: Migration(TestData.FlagMigrationBuilder)
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_Migration_LaunchDarkly_Sdk_Server_Integrations_TestData_FlagMigrationBuilder_
+ commentId: M:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.Migration(LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder)
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.Migration(LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder)
+ nameWithType: TestData.FlagBuilder.Migration(TestData.FlagMigrationBuilder)
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.Migration*
+ name: Migration
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_Migration_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.Migration
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.Migration
+ nameWithType: TestData.FlagBuilder.Migration
- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.OffVariation(System.Boolean)
name: OffVariation(Boolean)
href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_OffVariation_System_Boolean_
@@ -5031,6 +5394,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.On
fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.On
nameWithType: TestData.FlagBuilder.On
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.SamplingRatio(System.Int64)
+ name: SamplingRatio(Int64)
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_SamplingRatio_System_Int64_
+ commentId: M:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.SamplingRatio(System.Int64)
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.SamplingRatio(System.Int64)
+ nameWithType: TestData.FlagBuilder.SamplingRatio(Int64)
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.SamplingRatio*
+ name: SamplingRatio
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_SamplingRatio_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.SamplingRatio
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.SamplingRatio
+ nameWithType: TestData.FlagBuilder.SamplingRatio
- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.ValueForAll(LaunchDarkly.Sdk.LdValue)
name: ValueForAll(LdValue)
href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagBuilder_ValueForAll_LaunchDarkly_Sdk_LdValue_
@@ -5112,6 +5487,39 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.Variations
fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagBuilder.Variations
nameWithType: TestData.FlagBuilder.Variations
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder
+ name: TestData.FlagMigrationBuilder
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.html
+ commentId: T:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder
+ nameWithType: TestData.FlagMigrationBuilder
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.#ctor
+ name: FlagMigrationBuilder()
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagMigrationBuilder__ctor
+ commentId: M:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.#ctor
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.FlagMigrationBuilder()
+ nameWithType: TestData.FlagMigrationBuilder.FlagMigrationBuilder()
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.#ctor*
+ name: FlagMigrationBuilder
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagMigrationBuilder__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.#ctor
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.FlagMigrationBuilder
+ nameWithType: TestData.FlagMigrationBuilder.FlagMigrationBuilder
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.CheckRatio(System.Nullable{System.Int64})
+ name: CheckRatio(Nullable)
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagMigrationBuilder_CheckRatio_System_Nullable_System_Int64__
+ commentId: M:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.CheckRatio(System.Nullable{System.Int64})
+ name.vb: CheckRatio(Nullable(Of Int64))
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.CheckRatio(System.Nullable)
+ fullName.vb: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.CheckRatio(System.Nullable(Of System.Int64))
+ nameWithType: TestData.FlagMigrationBuilder.CheckRatio(Nullable)
+ nameWithType.vb: TestData.FlagMigrationBuilder.CheckRatio(Nullable(Of Int64))
+- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.CheckRatio*
+ name: CheckRatio
+ href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.html#LaunchDarkly_Sdk_Server_Integrations_TestData_FlagMigrationBuilder_CheckRatio_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.CheckRatio
+ fullName: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagMigrationBuilder.CheckRatio
+ nameWithType: TestData.FlagMigrationBuilder.CheckRatio
- uid: LaunchDarkly.Sdk.Server.Integrations.TestData.FlagRuleBuilder
name: TestData.FlagRuleBuilder
href: api/LaunchDarkly.Sdk.Server.Integrations.TestData.FlagRuleBuilder.html
@@ -5778,27 +6186,6 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.IFlagTracker.FlagValueChangeHandler
fullName: LaunchDarkly.Sdk.Server.Interfaces.IFlagTracker.FlagValueChangeHandler
nameWithType: IFlagTracker.FlagValueChangeHandler
-- uid: LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods
- name: IFlagTrackerExtensionMethods
- href: api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.html
- commentId: T:LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods
- fullName: LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods
- nameWithType: IFlagTrackerExtensionMethods
-- uid: LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.FlagValueChangeHandler(LaunchDarkly.Sdk.Server.Interfaces.IFlagTracker,System.String,LaunchDarkly.Sdk.User,System.EventHandler{LaunchDarkly.Sdk.Server.Interfaces.FlagValueChangeEvent})
- name: FlagValueChangeHandler(IFlagTracker, String, User, EventHandler)
- href: api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.html#LaunchDarkly_Sdk_Server_Interfaces_IFlagTrackerExtensionMethods_FlagValueChangeHandler_LaunchDarkly_Sdk_Server_Interfaces_IFlagTracker_System_String_LaunchDarkly_Sdk_User_System_EventHandler_LaunchDarkly_Sdk_Server_Interfaces_FlagValueChangeEvent__
- commentId: M:LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.FlagValueChangeHandler(LaunchDarkly.Sdk.Server.Interfaces.IFlagTracker,System.String,LaunchDarkly.Sdk.User,System.EventHandler{LaunchDarkly.Sdk.Server.Interfaces.FlagValueChangeEvent})
- name.vb: FlagValueChangeHandler(IFlagTracker, String, User, EventHandler(Of FlagValueChangeEvent))
- fullName: LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.FlagValueChangeHandler(LaunchDarkly.Sdk.Server.Interfaces.IFlagTracker, System.String, LaunchDarkly.Sdk.User, System.EventHandler)
- fullName.vb: LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.FlagValueChangeHandler(LaunchDarkly.Sdk.Server.Interfaces.IFlagTracker, System.String, LaunchDarkly.Sdk.User, System.EventHandler(Of LaunchDarkly.Sdk.Server.Interfaces.FlagValueChangeEvent))
- nameWithType: IFlagTrackerExtensionMethods.FlagValueChangeHandler(IFlagTracker, String, User, EventHandler)
- nameWithType.vb: IFlagTrackerExtensionMethods.FlagValueChangeHandler(IFlagTracker, String, User, EventHandler(Of FlagValueChangeEvent))
-- uid: LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.FlagValueChangeHandler*
- name: FlagValueChangeHandler
- href: api/LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.html#LaunchDarkly_Sdk_Server_Interfaces_IFlagTrackerExtensionMethods_FlagValueChangeHandler_
- commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.FlagValueChangeHandler
- fullName: LaunchDarkly.Sdk.Server.Interfaces.IFlagTrackerExtensionMethods.FlagValueChangeHandler
- nameWithType: IFlagTrackerExtensionMethods.FlagValueChangeHandler
- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient
name: ILdClient
href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html
@@ -5964,6 +6351,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.FlushAndWait
fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.FlushAndWait
nameWithType: ILdClient.FlushAndWait
+- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.GetLogger
+ name: GetLogger()
+ href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_GetLogger
+ commentId: M:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.GetLogger
+ fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.GetLogger()
+ nameWithType: ILdClient.GetLogger()
+- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.GetLogger*
+ name: GetLogger
+ href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_GetLogger_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.GetLogger
+ fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.GetLogger
+ nameWithType: ILdClient.GetLogger
- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.Identify(LaunchDarkly.Sdk.Context)
name: Identify(Context)
href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_Identify_LaunchDarkly_Sdk_Context_
@@ -6012,6 +6411,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.IntVariationDetail
fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.IntVariationDetail
nameWithType: ILdClient.IntVariationDetail
+- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.IsOffline
+ name: IsOffline()
+ href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_IsOffline
+ commentId: M:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.IsOffline
+ fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.IsOffline()
+ nameWithType: ILdClient.IsOffline()
+- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.IsOffline*
+ name: IsOffline
+ href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_IsOffline_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.IsOffline
+ fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.IsOffline
+ nameWithType: ILdClient.IsOffline
- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.JsonVariation(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.LdValue)
name: JsonVariation(String, Context, LdValue)
href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_JsonVariation_System_String_LaunchDarkly_Sdk_Context_LaunchDarkly_Sdk_LdValue_
@@ -6036,6 +6447,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.JsonVariationDetail
fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.JsonVariationDetail
nameWithType: ILdClient.JsonVariationDetail
+- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.MigrationVariation(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ name: MigrationVariation(String, Context, MigrationStage)
+ href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_MigrationVariation_System_String_LaunchDarkly_Sdk_Context_LaunchDarkly_Sdk_Server_Migrations_MigrationStage_
+ commentId: M:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.MigrationVariation(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.MigrationVariation(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ nameWithType: ILdClient.MigrationVariation(String, Context, MigrationStage)
+- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.MigrationVariation*
+ name: MigrationVariation
+ href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_MigrationVariation_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.MigrationVariation
+ fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.MigrationVariation
+ nameWithType: ILdClient.MigrationVariation
- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.SecureModeHash(LaunchDarkly.Sdk.Context)
name: SecureModeHash(Context)
href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_SecureModeHash_LaunchDarkly_Sdk_Context_
@@ -6096,6 +6519,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.Track
fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.Track
nameWithType: ILdClient.Track
+- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.TrackMigration(LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker)
+ name: TrackMigration(MigrationOpTracker)
+ href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_TrackMigration_LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_
+ commentId: M:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.TrackMigration(LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker)
+ fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.TrackMigration(LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker)
+ nameWithType: ILdClient.TrackMigration(MigrationOpTracker)
+- uid: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.TrackMigration*
+ name: TrackMigration
+ href: api/LaunchDarkly.Sdk.Server.Interfaces.ILdClient.html#LaunchDarkly_Sdk_Server_Interfaces_ILdClient_TrackMigration_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Interfaces.ILdClient.TrackMigration
+ fullName: LaunchDarkly.Sdk.Server.Interfaces.ILdClient.TrackMigration
+ nameWithType: ILdClient.TrackMigration
- uid: LaunchDarkly.Sdk.Server.Interfaces.ServiceEndpoints
name: ServiceEndpoints
href: api/LaunchDarkly.Sdk.Server.Interfaces.ServiceEndpoints.html
@@ -6297,6 +6732,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.LdClient.FlushAndWait
fullName: LaunchDarkly.Sdk.Server.LdClient.FlushAndWait
nameWithType: LdClient.FlushAndWait
+- uid: LaunchDarkly.Sdk.Server.LdClient.GetLogger
+ name: GetLogger()
+ href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_GetLogger
+ commentId: M:LaunchDarkly.Sdk.Server.LdClient.GetLogger
+ fullName: LaunchDarkly.Sdk.Server.LdClient.GetLogger()
+ nameWithType: LdClient.GetLogger()
+- uid: LaunchDarkly.Sdk.Server.LdClient.GetLogger*
+ name: GetLogger
+ href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_GetLogger_
+ commentId: Overload:LaunchDarkly.Sdk.Server.LdClient.GetLogger
+ fullName: LaunchDarkly.Sdk.Server.LdClient.GetLogger
+ nameWithType: LdClient.GetLogger
- uid: LaunchDarkly.Sdk.Server.LdClient.Identify(LaunchDarkly.Sdk.Context)
name: Identify(Context)
href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_Identify_LaunchDarkly_Sdk_Context_
@@ -6381,6 +6828,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.LdClient.JsonVariationDetail
fullName: LaunchDarkly.Sdk.Server.LdClient.JsonVariationDetail
nameWithType: LdClient.JsonVariationDetail
+- uid: LaunchDarkly.Sdk.Server.LdClient.MigrationVariation(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ name: MigrationVariation(String, Context, MigrationStage)
+ href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_MigrationVariation_System_String_LaunchDarkly_Sdk_Context_LaunchDarkly_Sdk_Server_Migrations_MigrationStage_
+ commentId: M:LaunchDarkly.Sdk.Server.LdClient.MigrationVariation(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ fullName: LaunchDarkly.Sdk.Server.LdClient.MigrationVariation(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ nameWithType: LdClient.MigrationVariation(String, Context, MigrationStage)
+- uid: LaunchDarkly.Sdk.Server.LdClient.MigrationVariation*
+ name: MigrationVariation
+ href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_MigrationVariation_
+ commentId: Overload:LaunchDarkly.Sdk.Server.LdClient.MigrationVariation
+ fullName: LaunchDarkly.Sdk.Server.LdClient.MigrationVariation
+ nameWithType: LdClient.MigrationVariation
- uid: LaunchDarkly.Sdk.Server.LdClient.SecureModeHash(LaunchDarkly.Sdk.Context)
name: SecureModeHash(Context)
href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_SecureModeHash_LaunchDarkly_Sdk_Context_
@@ -6441,6 +6900,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.LdClient.Track
fullName: LaunchDarkly.Sdk.Server.LdClient.Track
nameWithType: LdClient.Track
+- uid: LaunchDarkly.Sdk.Server.LdClient.TrackMigration(LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker)
+ name: TrackMigration(MigrationOpTracker)
+ href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_TrackMigration_LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_
+ commentId: M:LaunchDarkly.Sdk.Server.LdClient.TrackMigration(LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker)
+ fullName: LaunchDarkly.Sdk.Server.LdClient.TrackMigration(LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker)
+ nameWithType: LdClient.TrackMigration(MigrationOpTracker)
+- uid: LaunchDarkly.Sdk.Server.LdClient.TrackMigration*
+ name: TrackMigration
+ href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_TrackMigration_
+ commentId: Overload:LaunchDarkly.Sdk.Server.LdClient.TrackMigration
+ fullName: LaunchDarkly.Sdk.Server.LdClient.TrackMigration
+ nameWithType: LdClient.TrackMigration
- uid: LaunchDarkly.Sdk.Server.LdClient.Version
name: Version
href: api/LaunchDarkly.Sdk.Server.LdClient.html#LaunchDarkly_Sdk_Server_LdClient_Version
@@ -6453,6 +6924,831 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.LdClient.Version
fullName: LaunchDarkly.Sdk.Server.LdClient.Version
nameWithType: LdClient.Version
+- uid: LaunchDarkly.Sdk.Server.Migrations
+ name: LaunchDarkly.Sdk.Server.Migrations
+ href: api/LaunchDarkly.Sdk.Server.Migrations.html
+ commentId: N:LaunchDarkly.Sdk.Server.Migrations
+ fullName: LaunchDarkly.Sdk.Server.Migrations
+ nameWithType: LaunchDarkly.Sdk.Server.Migrations
+- uid: LaunchDarkly.Sdk.Server.Migrations.IMigration`4
+ name: IMigration
+ href: api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.IMigration`4
+ name.vb: IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.IMigration
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput)
+ nameWithType: IMigration
+ nameWithType.vb: IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput)
+- uid: LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Read(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ name: Read(String, Context, MigrationStage)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html#LaunchDarkly_Sdk_Server_Migrations_IMigration_4_Read_System_String_LaunchDarkly_Sdk_Context_LaunchDarkly_Sdk_Server_Migrations_MigrationStage_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Read(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.IMigration.Read(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ nameWithType: IMigration.Read(String, Context, MigrationStage)
+ nameWithType.vb: IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read(String, Context, MigrationStage)
+- uid: LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Read(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage,`2)
+ name: Read(String, Context, MigrationStage, TReadInput)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html#LaunchDarkly_Sdk_Server_Migrations_IMigration_4_Read_System_String_LaunchDarkly_Sdk_Context_LaunchDarkly_Sdk_Server_Migrations_MigrationStage__2_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Read(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage,`2)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.IMigration.Read(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage, TReadInput)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage, TReadInput)
+ nameWithType: IMigration.Read(String, Context, MigrationStage, TReadInput)
+ nameWithType.vb: IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read(String, Context, MigrationStage, TReadInput)
+- uid: LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Read*
+ name: Read
+ href: api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html#LaunchDarkly_Sdk_Server_Migrations_IMigration_4_Read_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Read
+ fullName: LaunchDarkly.Sdk.Server.Migrations.IMigration.Read
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read
+ nameWithType: IMigration.Read
+ nameWithType.vb: IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read
+- uid: LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Write(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ name: Write(String, Context, MigrationStage)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html#LaunchDarkly_Sdk_Server_Migrations_IMigration_4_Write_System_String_LaunchDarkly_Sdk_Context_LaunchDarkly_Sdk_Server_Migrations_MigrationStage_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Write(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.IMigration.Write(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ nameWithType: IMigration.Write(String, Context, MigrationStage)
+ nameWithType.vb: IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write(String, Context, MigrationStage)
+- uid: LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Write(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage,`3)
+ name: Write(String, Context, MigrationStage, TWriteInput)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html#LaunchDarkly_Sdk_Server_Migrations_IMigration_4_Write_System_String_LaunchDarkly_Sdk_Context_LaunchDarkly_Sdk_Server_Migrations_MigrationStage__3_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Write(System.String,LaunchDarkly.Sdk.Context,LaunchDarkly.Sdk.Server.Migrations.MigrationStage,`3)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.IMigration.Write(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage, TWriteInput)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write(System.String, LaunchDarkly.Sdk.Context, LaunchDarkly.Sdk.Server.Migrations.MigrationStage, TWriteInput)
+ nameWithType: IMigration.Write(String, Context, MigrationStage, TWriteInput)
+ nameWithType.vb: IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write(String, Context, MigrationStage, TWriteInput)
+- uid: LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Write*
+ name: Write
+ href: api/LaunchDarkly.Sdk.Server.Migrations.IMigration-4.html#LaunchDarkly_Sdk_Server_Migrations_IMigration_4_Write_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.IMigration`4.Write
+ fullName: LaunchDarkly.Sdk.Server.Migrations.IMigration.Write
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write
+ nameWithType: IMigration.Write
+ nameWithType.vb: IMigration(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4
+ name: MigrationBuilder
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4
+ name.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput)
+ nameWithType: MigrationBuilder
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.#ctor(LaunchDarkly.Sdk.Server.Interfaces.ILdClient)
+ name: MigrationBuilder(ILdClient)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4__ctor_LaunchDarkly_Sdk_Server_Interfaces_ILdClient_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.#ctor(LaunchDarkly.Sdk.Server.Interfaces.ILdClient)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.MigrationBuilder(LaunchDarkly.Sdk.Server.Interfaces.ILdClient)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).MigrationBuilder(LaunchDarkly.Sdk.Server.Interfaces.ILdClient)
+ nameWithType: MigrationBuilder.MigrationBuilder(ILdClient)
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).MigrationBuilder(ILdClient)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.#ctor*
+ name: MigrationBuilder
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4__ctor_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.#ctor
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.MigrationBuilder
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).MigrationBuilder
+ nameWithType: MigrationBuilder.MigrationBuilder
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).MigrationBuilder
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Build
+ name: Build()
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_Build
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Build
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.Build()
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Build()
+ nameWithType: MigrationBuilder.Build()
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Build()
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Build*
+ name: Build
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_Build_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Build
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.Build
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Build
+ nameWithType: MigrationBuilder.Build
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Build
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Read(System.Func{`2,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`0}},System.Func{`2,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`0}})
+ name: Read(Func>, Func>)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_Read_System_Func__2_LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result__0___System_Func__2_LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result__0___
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Read(System.Func{`2,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`0}},System.Func{`2,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`0}})
+ name.vb: Read(Func(Of TReadInput, MigrationMethod.Result(Of TReadResult)), Func(Of TReadInput, MigrationMethod.Result(Of TReadResult)))
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.Read(System.Func>, System.Func>)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read(System.Func(Of TReadInput, LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TReadResult)), System.Func(Of TReadInput, LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TReadResult)))
+ nameWithType: MigrationBuilder.Read(Func>, Func>)
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read(Func(Of TReadInput, MigrationMethod.Result(Of TReadResult)), Func(Of TReadInput, MigrationMethod.Result(Of TReadResult)))
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Read(System.Func{`2,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`0}},System.Func{`2,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`0}},System.Func{`0,`0,System.Boolean})
+ name: Read(Func>, Func>, Func)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_Read_System_Func__2_LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result__0___System_Func__2_LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result__0___System_Func__0__0_System_Boolean__
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Read(System.Func{`2,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`0}},System.Func{`2,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`0}},System.Func{`0,`0,System.Boolean})
+ name.vb: Read(Func(Of TReadInput, MigrationMethod.Result(Of TReadResult)), Func(Of TReadInput, MigrationMethod.Result(Of TReadResult)), Func(Of TReadResult, TReadResult, Boolean))
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.Read(System.Func>, System.Func>, System.Func)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read(System.Func(Of TReadInput, LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TReadResult)), System.Func(Of TReadInput, LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TReadResult)), System.Func(Of TReadResult, TReadResult, System.Boolean))
+ nameWithType: MigrationBuilder.Read(Func>, Func>, Func)
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read(Func(Of TReadInput, MigrationMethod.Result(Of TReadResult)), Func(Of TReadInput, MigrationMethod.Result(Of TReadResult)), Func(Of TReadResult, TReadResult, Boolean))
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Read*
+ name: Read
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_Read_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Read
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.Read
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read
+ nameWithType: MigrationBuilder.Read
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Read
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.ReadExecution(LaunchDarkly.Sdk.Server.Migrations.MigrationExecution)
+ name: ReadExecution(MigrationExecution)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_ReadExecution_LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.ReadExecution(LaunchDarkly.Sdk.Server.Migrations.MigrationExecution)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.ReadExecution(LaunchDarkly.Sdk.Server.Migrations.MigrationExecution)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).ReadExecution(LaunchDarkly.Sdk.Server.Migrations.MigrationExecution)
+ nameWithType: MigrationBuilder.ReadExecution(MigrationExecution)
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).ReadExecution(MigrationExecution)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.ReadExecution*
+ name: ReadExecution
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_ReadExecution_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.ReadExecution
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.ReadExecution
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).ReadExecution
+ nameWithType: MigrationBuilder.ReadExecution
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).ReadExecution
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.TrackErrors(System.Boolean)
+ name: TrackErrors(Boolean)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_TrackErrors_System_Boolean_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.TrackErrors(System.Boolean)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.TrackErrors(System.Boolean)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).TrackErrors(System.Boolean)
+ nameWithType: MigrationBuilder.TrackErrors(Boolean)
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).TrackErrors(Boolean)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.TrackErrors*
+ name: TrackErrors
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_TrackErrors_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.TrackErrors
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.TrackErrors
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).TrackErrors
+ nameWithType: MigrationBuilder.TrackErrors
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).TrackErrors
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.TrackLatency(System.Boolean)
+ name: TrackLatency(Boolean)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_TrackLatency_System_Boolean_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.TrackLatency(System.Boolean)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.TrackLatency(System.Boolean)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).TrackLatency(System.Boolean)
+ nameWithType: MigrationBuilder.TrackLatency(Boolean)
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).TrackLatency(Boolean)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.TrackLatency*
+ name: TrackLatency
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_TrackLatency_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.TrackLatency
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.TrackLatency
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).TrackLatency
+ nameWithType: MigrationBuilder.TrackLatency
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).TrackLatency
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Write(System.Func{`3,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`1}},System.Func{`3,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`1}})
+ name: Write(Func>, Func>)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_Write_System_Func__3_LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result__1___System_Func__3_LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result__1___
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Write(System.Func{`3,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`1}},System.Func{`3,LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result{`1}})
+ name.vb: Write(Func(Of TWriteInput, MigrationMethod.Result(Of TWriteResult)), Func(Of TWriteInput, MigrationMethod.Result(Of TWriteResult)))
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.Write(System.Func>, System.Func>)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write(System.Func(Of TWriteInput, LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TWriteResult)), System.Func(Of TWriteInput, LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TWriteResult)))
+ nameWithType: MigrationBuilder.Write(Func>, Func>)
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write(Func(Of TWriteInput, MigrationMethod.Result(Of TWriteResult)), Func(Of TWriteInput, MigrationMethod.Result(Of TWriteResult)))
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Write*
+ name: Write
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder-4.html#LaunchDarkly_Sdk_Server_Migrations_MigrationBuilder_4_Write_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder`4.Write
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder.Write
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write
+ nameWithType: MigrationBuilder.Write
+ nameWithType.vb: MigrationBuilder(Of TReadResult, TWriteResult, TReadInput, TWriteInput).Write
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution
+ name: MigrationExecution
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution
+ nameWithType: MigrationExecution
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Mode
+ name: Mode
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_Mode
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Mode
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Mode
+ nameWithType: MigrationExecution.Mode
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Mode*
+ name: Mode
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_Mode_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Mode
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Mode
+ nameWithType: MigrationExecution.Mode
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Order
+ name: Order
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_Order
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Order
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Order
+ nameWithType: MigrationExecution.Order
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Order*
+ name: Order
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_Order_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Order
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Order
+ nameWithType: MigrationExecution.Order
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Parallel
+ name: Parallel()
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_Parallel
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Parallel
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Parallel()
+ nameWithType: MigrationExecution.Parallel()
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Parallel*
+ name: Parallel
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_Parallel_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Parallel
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Parallel
+ nameWithType: MigrationExecution.Parallel
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Serial(LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder)
+ name: Serial(MigrationSerialOrder)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_Serial_LaunchDarkly_Sdk_Server_Migrations_MigrationSerialOrder_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Serial(LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Serial(LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder)
+ nameWithType: MigrationExecution.Serial(MigrationSerialOrder)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Serial*
+ name: Serial
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_Serial_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Serial
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.Serial
+ nameWithType: MigrationExecution.Serial
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.ToString
+ name: ToString()
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_ToString
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.ToString
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.ToString()
+ nameWithType: MigrationExecution.ToString()
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.ToString*
+ name: ToString
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecution_ToString_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.ToString
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecution.ToString
+ nameWithType: MigrationExecution.ToString
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode
+ name: MigrationExecutionMode
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode
+ nameWithType: MigrationExecutionMode
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.Parallel
+ name: Parallel
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecutionMode_Parallel
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.Parallel
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.Parallel
+ nameWithType: MigrationExecutionMode.Parallel
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.Serial
+ name: Serial
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecutionMode_Serial
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.Serial
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.Serial
+ nameWithType: MigrationExecutionMode.Serial
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.value__
+ name: value__
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.html#LaunchDarkly_Sdk_Server_Migrations_MigrationExecutionMode_value__
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.value__
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationExecutionMode.value__
+ nameWithType: MigrationExecutionMode.value__
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod
+ name: MigrationMethod
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod
+ nameWithType: MigrationMethod
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure*
+ name: Failure
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Failure_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure
+ nameWithType: MigrationMethod.Failure
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure``1
+ name: Failure()
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Failure__1
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure``1
+ name.vb: Failure(Of TResult)()
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure()
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure(Of TResult)()
+ nameWithType: MigrationMethod.Failure()
+ nameWithType.vb: MigrationMethod.Failure(Of TResult)()
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure``1(System.Exception)
+ name: Failure(Exception)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Failure__1_System_Exception_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure``1(System.Exception)
+ name.vb: Failure(Of TResult)(Exception)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure(System.Exception)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Failure(Of TResult)(System.Exception)
+ nameWithType: MigrationMethod.Failure(Exception)
+ nameWithType.vb: MigrationMethod.Failure(Of TResult)(Exception)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1
+ name: MigrationMethod.Result
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1
+ name.vb: MigrationMethod.Result(Of TResult)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TResult)
+ nameWithType: MigrationMethod.Result
+ nameWithType.vb: MigrationMethod.Result(Of TResult)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.Exception
+ name: Exception
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result_1_Exception
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.Exception
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result.Exception
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TResult).Exception
+ nameWithType: MigrationMethod.Result.Exception
+ nameWithType.vb: MigrationMethod.Result(Of TResult).Exception
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.Exception*
+ name: Exception
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result_1_Exception_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.Exception
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result.Exception
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TResult).Exception
+ nameWithType: MigrationMethod.Result.Exception
+ nameWithType.vb: MigrationMethod.Result(Of TResult).Exception
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.IsSuccessful
+ name: IsSuccessful
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result_1_IsSuccessful
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.IsSuccessful
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result.IsSuccessful
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TResult).IsSuccessful
+ nameWithType: MigrationMethod.Result.IsSuccessful
+ nameWithType.vb: MigrationMethod.Result(Of TResult).IsSuccessful
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.IsSuccessful*
+ name: IsSuccessful
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result_1_IsSuccessful_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.IsSuccessful
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result.IsSuccessful
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TResult).IsSuccessful
+ nameWithType: MigrationMethod.Result.IsSuccessful
+ nameWithType.vb: MigrationMethod.Result(Of TResult).IsSuccessful
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.Value
+ name: Value
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result_1_Value
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.Value
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result.Value
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TResult).Value
+ nameWithType: MigrationMethod.Result.Value
+ nameWithType.vb: MigrationMethod.Result(Of TResult).Value
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.Value*
+ name: Value
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Result_1_Value_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result`1.Value
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result.Value
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Result(Of TResult).Value
+ nameWithType: MigrationMethod.Result.Value
+ nameWithType.vb: MigrationMethod.Result(Of TResult).Value
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Success*
+ name: Success
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Success_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Success
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Success
+ nameWithType: MigrationMethod.Success
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Success``1(``0)
+ name: Success(TResult)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.html#LaunchDarkly_Sdk_Server_Migrations_MigrationMethod_Success__1___0_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Success``1(``0)
+ name.vb: Success(Of TResult)(TResult)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Success(TResult)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationMethod.Success(Of TResult)(TResult)
+ nameWithType: MigrationMethod.Success(TResult)
+ nameWithType.vb: MigrationMethod.Success(Of TResult)(TResult)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperation
+ name: MigrationOperation
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationOperation
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperation
+ nameWithType: MigrationOperation
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.Read
+ name: Read
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOperation_Read
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.Read
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.Read
+ nameWithType: MigrationOperation.Read
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.value__
+ name: value__
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOperation_value__
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.value__
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.value__
+ nameWithType: MigrationOperation.value__
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.Write
+ name: Write
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOperation_Write
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.Write
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperation.Write
+ nameWithType: MigrationOperation.Write
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions
+ name: MigrationOperationExtensions
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions
+ nameWithType: MigrationOperationExtensions
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.FromDataModelString(System.String)
+ name: FromDataModelString(String)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOperationExtensions_FromDataModelString_System_String_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.FromDataModelString(System.String)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.FromDataModelString(System.String)
+ nameWithType: MigrationOperationExtensions.FromDataModelString(String)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.FromDataModelString*
+ name: FromDataModelString
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOperationExtensions_FromDataModelString_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.FromDataModelString
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.FromDataModelString
+ nameWithType: MigrationOperationExtensions.FromDataModelString
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationOperation)
+ name: ToDataModelString(MigrationOperation)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOperationExtensions_ToDataModelString_LaunchDarkly_Sdk_Server_Migrations_MigrationOperation_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationOperation)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationOperation)
+ nameWithType: MigrationOperationExtensions.ToDataModelString(MigrationOperation)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.ToDataModelString*
+ name: ToDataModelString
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOperationExtensions_ToDataModelString_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.ToDataModelString
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOperationExtensions.ToDataModelString
+ nameWithType: MigrationOperationExtensions.ToDataModelString
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker
+ name: MigrationOpTracker
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker
+ nameWithType: MigrationOpTracker
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Consistency(System.Func{System.Boolean})
+ name: Consistency(Func)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Consistency_System_Func_System_Boolean__
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Consistency(System.Func{System.Boolean})
+ name.vb: Consistency(Func(Of Boolean))
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Consistency(System.Func)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Consistency(System.Func(Of System.Boolean))
+ nameWithType: MigrationOpTracker.Consistency(Func)
+ nameWithType.vb: MigrationOpTracker.Consistency(Func(Of Boolean))
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Consistency*
+ name: Consistency
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Consistency_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Consistency
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Consistency
+ nameWithType: MigrationOpTracker.Consistency
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Error(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ name: Error(MigrationOrigin)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Error_LaunchDarkly_Sdk_Server_Migrations_MigrationOrigin_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Error(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Error(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ nameWithType: MigrationOpTracker.Error(MigrationOrigin)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Error*
+ name: Error
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Error_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Error
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Error
+ nameWithType: MigrationOpTracker.Error
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Invoked(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ name: Invoked(MigrationOrigin)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Invoked_LaunchDarkly_Sdk_Server_Migrations_MigrationOrigin_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Invoked(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Invoked(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ nameWithType: MigrationOpTracker.Invoked(MigrationOrigin)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Invoked*
+ name: Invoked
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Invoked_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Invoked
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Invoked
+ nameWithType: MigrationOpTracker.Invoked
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Latency(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin,System.TimeSpan)
+ name: Latency(MigrationOrigin, TimeSpan)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Latency_LaunchDarkly_Sdk_Server_Migrations_MigrationOrigin_System_TimeSpan_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Latency(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin,System.TimeSpan)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Latency(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin, System.TimeSpan)
+ nameWithType: MigrationOpTracker.Latency(MigrationOrigin, TimeSpan)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Latency*
+ name: Latency
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Latency_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Latency
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Latency
+ nameWithType: MigrationOpTracker.Latency
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Op(LaunchDarkly.Sdk.Server.Migrations.MigrationOperation)
+ name: Op(MigrationOperation)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Op_LaunchDarkly_Sdk_Server_Migrations_MigrationOperation_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Op(LaunchDarkly.Sdk.Server.Migrations.MigrationOperation)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Op(LaunchDarkly.Sdk.Server.Migrations.MigrationOperation)
+ nameWithType: MigrationOpTracker.Op(MigrationOperation)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Op*
+ name: Op
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker_Op_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Op
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker.Op
+ nameWithType: MigrationOpTracker.Op
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin
+ name: MigrationOrigin
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin
+ nameWithType: MigrationOrigin
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.New
+ name: New
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOrigin_New
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.New
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.New
+ nameWithType: MigrationOrigin.New
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.Old
+ name: Old
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOrigin_Old
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.Old
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.Old
+ nameWithType: MigrationOrigin.Old
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.value__
+ name: value__
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOrigin_value__
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.value__
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin.value__
+ nameWithType: MigrationOrigin.value__
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions
+ name: MigrationOriginExtensions
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions
+ nameWithType: MigrationOriginExtensions
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.FromDataModelString(System.String)
+ name: FromDataModelString(String)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOriginExtensions_FromDataModelString_System_String_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.FromDataModelString(System.String)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.FromDataModelString(System.String)
+ nameWithType: MigrationOriginExtensions.FromDataModelString(String)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.FromDataModelString*
+ name: FromDataModelString
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOriginExtensions_FromDataModelString_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.FromDataModelString
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.FromDataModelString
+ nameWithType: MigrationOriginExtensions.FromDataModelString
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ name: ToDataModelString(MigrationOrigin)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOriginExtensions_ToDataModelString_LaunchDarkly_Sdk_Server_Migrations_MigrationOrigin_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationOrigin)
+ nameWithType: MigrationOriginExtensions.ToDataModelString(MigrationOrigin)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.ToDataModelString*
+ name: ToDataModelString
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationOriginExtensions_ToDataModelString_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.ToDataModelString
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationOriginExtensions.ToDataModelString
+ nameWithType: MigrationOriginExtensions.ToDataModelString
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1
+ name: MigrationResult
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1
+ name.vb: MigrationResult(Of TResult)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult)
+ nameWithType: MigrationResult
+ nameWithType.vb: MigrationResult(Of TResult)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Exception
+ name: Exception
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationResult_1_Exception
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Exception
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult.Exception
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult).Exception
+ nameWithType: MigrationResult.Exception
+ nameWithType.vb: MigrationResult(Of TResult).Exception
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Exception*
+ name: Exception
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationResult_1_Exception_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Exception
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult.Exception
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult).Exception
+ nameWithType: MigrationResult.Exception
+ nameWithType.vb: MigrationResult(Of TResult).Exception
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.IsSuccessful
+ name: IsSuccessful
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationResult_1_IsSuccessful
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.IsSuccessful
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult.IsSuccessful
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult).IsSuccessful
+ nameWithType: MigrationResult.IsSuccessful
+ nameWithType.vb: MigrationResult(Of TResult).IsSuccessful
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.IsSuccessful*
+ name: IsSuccessful
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationResult_1_IsSuccessful_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.IsSuccessful
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult.IsSuccessful
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult).IsSuccessful
+ nameWithType: MigrationResult.IsSuccessful
+ nameWithType.vb: MigrationResult(Of TResult).IsSuccessful
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Origin
+ name: Origin
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationResult_1_Origin
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Origin
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult.Origin
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult).Origin
+ nameWithType: MigrationResult.Origin
+ nameWithType.vb: MigrationResult(Of TResult).Origin
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Origin*
+ name: Origin
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationResult_1_Origin_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Origin
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult.Origin
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult).Origin
+ nameWithType: MigrationResult.Origin
+ nameWithType.vb: MigrationResult(Of TResult).Origin
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Value
+ name: Value
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationResult_1_Value
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Value
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult.Value
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult).Value
+ nameWithType: MigrationResult.Value
+ nameWithType.vb: MigrationResult(Of TResult).Value
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Value*
+ name: Value
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationResult_1_Value_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationResult`1.Value
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationResult.Value
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationResult(Of TResult).Value
+ nameWithType: MigrationResult.Value
+ nameWithType.vb: MigrationResult(Of TResult).Value
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder
+ name: MigrationSerialOrder
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder
+ nameWithType: MigrationSerialOrder
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.Fixed
+ name: Fixed
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.html#LaunchDarkly_Sdk_Server_Migrations_MigrationSerialOrder_Fixed
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.Fixed
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.Fixed
+ nameWithType: MigrationSerialOrder.Fixed
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.Random
+ name: Random
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.html#LaunchDarkly_Sdk_Server_Migrations_MigrationSerialOrder_Random
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.Random
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.Random
+ nameWithType: MigrationSerialOrder.Random
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.value__
+ name: value__
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.html#LaunchDarkly_Sdk_Server_Migrations_MigrationSerialOrder_value__
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.value__
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationSerialOrder.value__
+ nameWithType: MigrationSerialOrder.value__
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStage
+ name: MigrationStage
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationStage
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStage
+ nameWithType: MigrationStage
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Complete
+ name: Complete
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStage_Complete
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Complete
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Complete
+ nameWithType: MigrationStage.Complete
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.DualWrite
+ name: DualWrite
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStage_DualWrite
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationStage.DualWrite
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.DualWrite
+ nameWithType: MigrationStage.DualWrite
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Live
+ name: Live
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStage_Live
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Live
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Live
+ nameWithType: MigrationStage.Live
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Off
+ name: Off
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStage_Off
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Off
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Off
+ nameWithType: MigrationStage.Off
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.RampDown
+ name: RampDown
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStage_RampDown
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationStage.RampDown
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.RampDown
+ nameWithType: MigrationStage.RampDown
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Shadow
+ name: Shadow
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStage_Shadow
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Shadow
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.Shadow
+ nameWithType: MigrationStage.Shadow
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.value__
+ name: value__
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStage.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStage_value__
+ commentId: F:LaunchDarkly.Sdk.Server.Migrations.MigrationStage.value__
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStage.value__
+ nameWithType: MigrationStage.value__
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions
+ name: MigrationStageExtensions
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions
+ nameWithType: MigrationStageExtensions
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.FromDataModelString(System.String)
+ name: FromDataModelString(String)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStageExtensions_FromDataModelString_System_String_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.FromDataModelString(System.String)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.FromDataModelString(System.String)
+ nameWithType: MigrationStageExtensions.FromDataModelString(String)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.FromDataModelString*
+ name: FromDataModelString
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStageExtensions_FromDataModelString_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.FromDataModelString
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.FromDataModelString
+ nameWithType: MigrationStageExtensions.FromDataModelString
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ name: ToDataModelString(MigrationStage)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStageExtensions_ToDataModelString_LaunchDarkly_Sdk_Server_Migrations_MigrationStage_
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.ToDataModelString(LaunchDarkly.Sdk.Server.Migrations.MigrationStage)
+ nameWithType: MigrationStageExtensions.ToDataModelString(MigrationStage)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.ToDataModelString*
+ name: ToDataModelString
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.html#LaunchDarkly_Sdk_Server_Migrations_MigrationStageExtensions_ToDataModelString_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.ToDataModelString
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationStageExtensions.ToDataModelString
+ nameWithType: MigrationStageExtensions.ToDataModelString
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation
+ name: MigrationVariation
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationVariation
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation
+ nameWithType: MigrationVariation
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Deconstruct(LaunchDarkly.Sdk.Server.Migrations.MigrationStage@,LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker@)
+ name: Deconstruct(out MigrationStage, out MigrationOpTracker)
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationVariation_Deconstruct_LaunchDarkly_Sdk_Server_Migrations_MigrationStage__LaunchDarkly_Sdk_Server_Migrations_MigrationOpTracker__
+ commentId: M:LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Deconstruct(LaunchDarkly.Sdk.Server.Migrations.MigrationStage@,LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker@)
+ name.vb: Deconstruct(ByRef MigrationStage, ByRef MigrationOpTracker)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Deconstruct(out LaunchDarkly.Sdk.Server.Migrations.MigrationStage, out LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker)
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Deconstruct(ByRef LaunchDarkly.Sdk.Server.Migrations.MigrationStage, ByRef LaunchDarkly.Sdk.Server.Migrations.MigrationOpTracker)
+ nameWithType: MigrationVariation.Deconstruct(out MigrationStage, out MigrationOpTracker)
+ nameWithType.vb: MigrationVariation.Deconstruct(ByRef MigrationStage, ByRef MigrationOpTracker)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Deconstruct*
+ name: Deconstruct
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationVariation_Deconstruct_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Deconstruct
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Deconstruct
+ nameWithType: MigrationVariation.Deconstruct
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Stage
+ name: Stage
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationVariation_Stage
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Stage
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Stage
+ nameWithType: MigrationVariation.Stage
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Stage*
+ name: Stage
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationVariation_Stage_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Stage
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Stage
+ nameWithType: MigrationVariation.Stage
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Tracker
+ name: Tracker
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationVariation_Tracker
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Tracker
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Tracker
+ nameWithType: MigrationVariation.Tracker
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Tracker*
+ name: Tracker
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.html#LaunchDarkly_Sdk_Server_Migrations_MigrationVariation_Tracker_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Tracker
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationVariation.Tracker
+ nameWithType: MigrationVariation.Tracker
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1
+ name: MigrationWriteResult
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html
+ commentId: T:LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1
+ name.vb: MigrationWriteResult(Of TResult)
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult(Of TResult)
+ nameWithType: MigrationWriteResult
+ nameWithType.vb: MigrationWriteResult(Of TResult)
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1.Authoritative
+ name: Authoritative
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationWriteResult_1_Authoritative
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1.Authoritative
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult.Authoritative
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult(Of TResult).Authoritative
+ nameWithType: MigrationWriteResult.Authoritative
+ nameWithType.vb: MigrationWriteResult(Of TResult).Authoritative
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1.Authoritative*
+ name: Authoritative
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationWriteResult_1_Authoritative_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1.Authoritative
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult.Authoritative
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult(Of TResult).Authoritative
+ nameWithType: MigrationWriteResult.Authoritative
+ nameWithType.vb: MigrationWriteResult(Of TResult).Authoritative
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1.NonAuthoritative
+ name: NonAuthoritative
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationWriteResult_1_NonAuthoritative
+ commentId: P:LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1.NonAuthoritative
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult.NonAuthoritative
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult(Of TResult).NonAuthoritative
+ nameWithType: MigrationWriteResult.NonAuthoritative
+ nameWithType.vb: MigrationWriteResult(Of TResult).NonAuthoritative
+- uid: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1.NonAuthoritative*
+ name: NonAuthoritative
+ href: api/LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult-1.html#LaunchDarkly_Sdk_Server_Migrations_MigrationWriteResult_1_NonAuthoritative_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult`1.NonAuthoritative
+ fullName: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult.NonAuthoritative
+ fullName.vb: LaunchDarkly.Sdk.Server.Migrations.MigrationWriteResult(Of TResult).NonAuthoritative
+ nameWithType: MigrationWriteResult.NonAuthoritative
+ nameWithType.vb: MigrationWriteResult(Of TResult).NonAuthoritative
- uid: LaunchDarkly.Sdk.Server.Subsystems
name: LaunchDarkly.Sdk.Server.Subsystems
href: api/LaunchDarkly.Sdk.Server.Subsystems.html
@@ -7031,6 +8327,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.Default
fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.Default
nameWithType: EventProcessorTypes.EvaluationEvent.Default
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.ExcludeFromSummaries
+ name: ExcludeFromSummaries
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_EvaluationEvent_ExcludeFromSummaries
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.ExcludeFromSummaries
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.ExcludeFromSummaries
+ nameWithType: EventProcessorTypes.EvaluationEvent.ExcludeFromSummaries
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.ExcludeFromSummaries*
+ name: ExcludeFromSummaries
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_EvaluationEvent_ExcludeFromSummaries_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.ExcludeFromSummaries
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.ExcludeFromSummaries
+ nameWithType: EventProcessorTypes.EvaluationEvent.ExcludeFromSummaries
- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.FlagKey
name: FlagKey
href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_EvaluationEvent_FlagKey
@@ -7079,6 +8387,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.Reason
fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.Reason
nameWithType: EventProcessorTypes.EvaluationEvent.Reason
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.SamplingRatio
+ name: SamplingRatio
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_EvaluationEvent_SamplingRatio
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.SamplingRatio
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.SamplingRatio
+ nameWithType: EventProcessorTypes.EvaluationEvent.SamplingRatio
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.SamplingRatio*
+ name: SamplingRatio
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_EvaluationEvent_SamplingRatio_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.SamplingRatio
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.SamplingRatio
+ nameWithType: EventProcessorTypes.EvaluationEvent.SamplingRatio
- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.Timestamp
name: Timestamp
href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.EvaluationEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_EvaluationEvent_Timestamp
@@ -7157,6 +8477,300 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.IdentifyEvent.Timestamp
fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.IdentifyEvent.Timestamp
nameWithType: EventProcessorTypes.IdentifyEvent.Timestamp
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent
+ name: EventProcessorTypes.MigrationOpEvent
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html
+ commentId: T:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent
+ nameWithType: EventProcessorTypes.MigrationOpEvent
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Consistent
+ name: Consistent
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Consistent
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Consistent
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Consistent
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Consistent
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Consistent*
+ name: Consistent
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Consistent_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Consistent
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Consistent
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Consistent
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+ name: EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html
+ commentId: T:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.IsConsistent
+ name: IsConsistent
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_ConsistentMeasurement_IsConsistent
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.IsConsistent
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.IsConsistent
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.IsConsistent
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.IsConsistent*
+ name: IsConsistent
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_ConsistentMeasurement_IsConsistent_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.IsConsistent
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.IsConsistent
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.IsConsistent
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.SamplingRatio
+ name: SamplingRatio
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_ConsistentMeasurement_SamplingRatio
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.SamplingRatio
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.SamplingRatio
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.SamplingRatio
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.SamplingRatio*
+ name: SamplingRatio
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_ConsistentMeasurement_SamplingRatio_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.SamplingRatio
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.SamplingRatio
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ConsistentMeasurement.SamplingRatio
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Context
+ name: Context
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Context
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Context
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Context
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Context
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Context*
+ name: Context
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Context_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Context
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Context
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Context
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Default
+ name: Default
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Default
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Default
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Default
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Default
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Default*
+ name: Default
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Default_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Default
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Default
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Default
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Error
+ name: Error
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Error
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Error
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Error
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Error
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Error*
+ name: Error
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Error_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Error
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Error
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Error
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+ name: EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html
+ commentId: T:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ErrorMeasurement
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.New
+ name: New
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_ErrorMeasurement_New
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.New
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.New
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.New
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.New*
+ name: New
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_ErrorMeasurement_New_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.New
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.New
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.New
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.Old
+ name: Old
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_ErrorMeasurement_Old
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.Old
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.Old
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.Old
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.Old*
+ name: Old
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_ErrorMeasurement_Old_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.Old
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.Old
+ nameWithType: EventProcessorTypes.MigrationOpEvent.ErrorMeasurement.Old
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagKey
+ name: FlagKey
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_FlagKey
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagKey
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagKey
+ nameWithType: EventProcessorTypes.MigrationOpEvent.FlagKey
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagKey*
+ name: FlagKey
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_FlagKey_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagKey
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagKey
+ nameWithType: EventProcessorTypes.MigrationOpEvent.FlagKey
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagVersion
+ name: FlagVersion
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_FlagVersion
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagVersion
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagVersion
+ nameWithType: EventProcessorTypes.MigrationOpEvent.FlagVersion
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagVersion*
+ name: FlagVersion
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_FlagVersion_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagVersion
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.FlagVersion
+ nameWithType: EventProcessorTypes.MigrationOpEvent.FlagVersion
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Invoked
+ name: Invoked
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Invoked
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Invoked
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Invoked
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Invoked
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Invoked*
+ name: Invoked
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Invoked_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Invoked
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Invoked
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Invoked
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+ name: EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html
+ commentId: T:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+ nameWithType: EventProcessorTypes.MigrationOpEvent.InvokedMeasurement
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.New
+ name: New
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_InvokedMeasurement_New
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.New
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.New
+ nameWithType: EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.New
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.New*
+ name: New
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_InvokedMeasurement_New_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.New
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.New
+ nameWithType: EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.New
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.Old
+ name: Old
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_InvokedMeasurement_Old
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.Old
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.Old
+ nameWithType: EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.Old
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.Old*
+ name: Old
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_InvokedMeasurement_Old_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.Old
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.Old
+ nameWithType: EventProcessorTypes.MigrationOpEvent.InvokedMeasurement.Old
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Latency
+ name: Latency
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Latency
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Latency
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Latency
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Latency
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Latency*
+ name: Latency
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Latency_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Latency
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Latency
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Latency
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+ name: EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html
+ commentId: T:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+ nameWithType: EventProcessorTypes.MigrationOpEvent.LatencyMeasurement
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.New
+ name: New
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_LatencyMeasurement_New
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.New
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.New
+ nameWithType: EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.New
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.New*
+ name: New
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_LatencyMeasurement_New_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.New
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.New
+ nameWithType: EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.New
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.Old
+ name: Old
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_LatencyMeasurement_Old
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.Old
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.Old
+ nameWithType: EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.Old
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.Old*
+ name: Old
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_LatencyMeasurement_Old_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.Old
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.Old
+ nameWithType: EventProcessorTypes.MigrationOpEvent.LatencyMeasurement.Old
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Operation
+ name: Operation
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Operation
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Operation
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Operation
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Operation
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Operation*
+ name: Operation
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Operation_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Operation
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Operation
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Operation
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Reason
+ name: Reason
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Reason
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Reason
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Reason
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Reason
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Reason*
+ name: Reason
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Reason_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Reason
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Reason
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Reason
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.SamplingRatio
+ name: SamplingRatio
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_SamplingRatio
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.SamplingRatio
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.SamplingRatio
+ nameWithType: EventProcessorTypes.MigrationOpEvent.SamplingRatio
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.SamplingRatio*
+ name: SamplingRatio
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_SamplingRatio_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.SamplingRatio
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.SamplingRatio
+ nameWithType: EventProcessorTypes.MigrationOpEvent.SamplingRatio
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Timestamp
+ name: Timestamp
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Timestamp
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Timestamp
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Timestamp
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Timestamp
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Timestamp*
+ name: Timestamp
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Timestamp_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Timestamp
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Timestamp
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Timestamp
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Value
+ name: Value
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Value
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Value
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Value
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Value
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Value*
+ name: Value
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Value_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Value
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Value
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Value
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Variation
+ name: Variation
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Variation
+ commentId: P:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Variation
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Variation
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Variation
+- uid: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Variation*
+ name: Variation
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.html#LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_Variation_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Variation
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent.Variation
+ nameWithType: EventProcessorTypes.MigrationOpEvent.Variation
- uid: LaunchDarkly.Sdk.Server.Subsystems.HttpConfiguration
name: HttpConfiguration
href: api/LaunchDarkly.Sdk.Server.Subsystems.HttpConfiguration.html
@@ -7599,6 +9213,18 @@ references:
commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.RecordIdentifyEvent
fullName: LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.RecordIdentifyEvent
nameWithType: IEventProcessor.RecordIdentifyEvent
+- uid: LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.RecordMigrationEvent(LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent)
+ name: RecordMigrationEvent(EventProcessorTypes.MigrationOpEvent)
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.html#LaunchDarkly_Sdk_Server_Subsystems_IEventProcessor_RecordMigrationEvent_LaunchDarkly_Sdk_Server_Subsystems_EventProcessorTypes_MigrationOpEvent_
+ commentId: M:LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.RecordMigrationEvent(LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent)
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.RecordMigrationEvent(LaunchDarkly.Sdk.Server.Subsystems.EventProcessorTypes.MigrationOpEvent)
+ nameWithType: IEventProcessor.RecordMigrationEvent(EventProcessorTypes.MigrationOpEvent)
+- uid: LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.RecordMigrationEvent*
+ name: RecordMigrationEvent
+ href: api/LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.html#LaunchDarkly_Sdk_Server_Subsystems_IEventProcessor_RecordMigrationEvent_
+ commentId: Overload:LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.RecordMigrationEvent
+ fullName: LaunchDarkly.Sdk.Server.Subsystems.IEventProcessor.RecordMigrationEvent
+ nameWithType: IEventProcessor.RecordMigrationEvent
- uid: LaunchDarkly.Sdk.Server.Subsystems.IPersistentDataStore
name: IPersistentDataStore
href: api/LaunchDarkly.Sdk.Server.Subsystems.IPersistentDataStore.html