diff --git a/README.md b/README.md index d36d2267..66f20fef 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,12 @@ # Tortuga Anchor -Data Modeling Library in .NET +Data Modeling Library for .NET ## Documentation -* [Documentation Website](https://tortugaresearch.github.io/Anchor/) -* [API Reference](http://tortugaresearch.github.io/Anchor/API/Index.html) -* [Anchor Wiki](https://github.com/tortugaresearch/Anchor/wiki) +* [Documentation Website](https://tortugaresearch.github.io/Tortuga.Anchor/) +* [API Reference](http://tortugaresearch.github.io/Tortuga.Anchor/API/Index.html) +* [Anchor Wiki](https://github.com/TortugaResearch/Tortuga.Anchor/wiki) +* The [change log](Tortuga.Anchor/Changelog.md) starts with version 4.0. ## What does your entity base class really give you? diff --git a/Tortuga.Anchor/.editorconfig b/Tortuga.Anchor/.editorconfig index a9010297..ee00c2f6 100644 --- a/Tortuga.Anchor/.editorconfig +++ b/Tortuga.Anchor/.editorconfig @@ -15,6 +15,13 @@ csharp_style_deconstructed_variable_declaration = true:suggestion csharp_style_var_for_built_in_types = false:suggestion csharp_style_var_when_type_is_apparent = false:suggestion csharp_style_var_elsewhere = false:suggestion +csharp_indent_labels = one_less_than_current +csharp_style_expression_bodied_indexers = true:silent +csharp_style_expression_bodied_accessors = true:silent +csharp_style_expression_bodied_lambdas = true:silent +csharp_style_expression_bodied_local_functions = false:silent +csharp_style_throw_expression = true:suggestion +csharp_style_prefer_null_check_over_type_check = true:suggestion [*.{cs,vb}] dotnet_diagnostic.CA5394.severity=silent @@ -79,3 +86,20 @@ csharp_style_var_elsewhere = false:none # IDE0008: Use explicit type csharp_style_var_when_type_is_apparent = false:none +end_of_line = crlf +dotnet_style_coalesce_expression = true:suggestion +dotnet_style_null_propagation = true:suggestion +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion +dotnet_style_prefer_auto_properties = true:silent +dotnet_style_object_initializer = true:suggestion +dotnet_style_collection_initializer = true:suggestion +dotnet_style_prefer_simplified_boolean_expressions = true:suggestion +dotnet_style_prefer_conditional_expression_over_assignment = true:silent +dotnet_style_prefer_conditional_expression_over_return = true:silent +dotnet_style_explicit_tuple_names = true:suggestion +dotnet_style_prefer_inferred_tuple_names = true:suggestion +dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion +dotnet_style_prefer_compound_assignment = true:suggestion +dotnet_style_prefer_simplified_interpolation = true:suggestion +dotnet_style_namespace_match_folder = true:suggestion +indent_style = tab diff --git a/Tortuga.Anchor/Changelog.md b/Tortuga.Anchor/Changelog.md new file mode 100644 index 00000000..9c0a7004 --- /dev/null +++ b/Tortuga.Anchor/Changelog.md @@ -0,0 +1,58 @@ +## Version 4.1 + + +### Features + +[#77 PropertyMetadata should cache attributes](https://github.com/TortugaResearch/Tortuga.Anchor/issues/77) + +All attributes are now being cached by the `PropertyMetadata`. + +We still have dedicated attribute lists for performance senstive areas like validation. + +[#78 Expose the PropertyInfo class from the PropertyMetadata class](https://github.com/TortugaResearch/Tortuga.Anchor/issues/78) + +This is basically an 'esacpe hatch' for when someone needs additional information not exposed via the `PropertyMetadata`. + +[#74 ConstructorMetadataCollection needs a DefaultConstructor property](https://github.com/TortugaResearch/Tortuga.Anchor/issues/74) + +We often need to grab the default constructor. A lot of code in Chain duplicates this search, which is silly because the `ConstructorMetadataCollection` already knows that the constructor exists. + + +### Bug Fixes + +[#76 Test attribute inheritance on properties](https://github.com/TortugaResearch/Tortuga.Anchor/issues/76) + +If a property is virtual, and overriden by a subclass, the attributes on the base class's property were not being acknowledged up by the subclass. + +[#70 Column attribute doesn't handle missing column name](https://github.com/TortugaResearch/Tortuga.Anchor/issues/70) + +It is possible to construct a `Column` attribute in a way where it doesn't have a column name. This happens when you need to override another column-related value. + + + +## Version 4.0 + +**Breaking Change** `PropertyMetadata.CanRead` and `PropertyMetadata.CanWrite` were incorrectly returning true for protected properties. It has been fixed to only return true for properties that are actually public. #61 + +To determine if you can read or write to protected/private properties, use one of: + + * `CanReadRestricted` + * `CanReadIndexedAndRestricted` + * `CanWriteRestricted` + * `CanWriteIndexedAndRestricted` + +To actually perform the read or write, use `InvokeGet` and `InvokeSet`. + +`ClassMetadata.ColumnsFor` has been affected by this change. + +**Feature** A `MetadataCache.Clone` method has been added. The purpose of this is to make it easier to implement a clone method on a class. #28 + +**Feature** CollectionUtilities.BatchAsSegments is a lightweight LINQ batcher. #36 + +In order to avoid memory allocations, this uses a `ReadOnlyListSegment` struct. + +For more information on these changes, see these blog posts. + +* [Anchor 4 Breaking Changes](https://tortugaresearch.com/anchor-4-breaking-changes/) +* [Allocation-free Batching in Anchor 4](https://tortugaresearch.com/allocation-free-batching-in-anchor-4/) +* [Supporting Clone with Anchor 4](https://tortugaresearch.com/supporting-clone-with-anchor-4/) \ No newline at end of file diff --git a/Tortuga.Anchor/Tortuga.Anchor.Tests/Metadata/MetadataCacheTests.cs b/Tortuga.Anchor/Tortuga.Anchor.Tests/Metadata/MetadataCacheTests.cs index bfed9b2b..412d6b92 100644 --- a/Tortuga.Anchor/Tortuga.Anchor.Tests/Metadata/MetadataCacheTests.cs +++ b/Tortuga.Anchor/Tortuga.Anchor.Tests/Metadata/MetadataCacheTests.cs @@ -12,1097 +12,1120 @@ namespace Tests.Metadata; public class NullTestsA { - public object NotNull { get; set; } = null!; - public object? Nullable { get; set; } + public object NotNull { get; set; } = null!; + public object? Nullable { get; set; } #nullable disable - public object NullUnknown { get; set; } + public object NullUnknown { get; set; } #nullable enable } +public class EmptyColumn +{ + [Column(TypeName = "money")] + public int Property0 { get; set; } +} + [Table("TableBase")] public class Base { - [Decompose] - public ChildA ChildA { get; set; } = null!; + [Decompose] + public ChildA ChildA { get; set; } = null!; - [Decompose("Bbb")] - public ChildB ChildB { get; set; } = null!; + [Decompose("Bbb")] + public ChildB ChildB { get; set; } = null!; - public int Property0 { get; set; } + public int Property0 { get; set; } } [Table("ChildTable")] [View("ChildView")] public class ChildA { - [Column("PropertyA2")] - public int Property { get; set; } + [Column("PropertyA2")] + public int Property { get; set; } - public int PropertyA1 { get; set; } + public int PropertyA1 { get; set; } - [NotMapped] - public int PropertyAX { get; set; } + [NotMapped] + public int PropertyAX { get; set; } } public class ChildB { - [Column("PropertyB2")] - public int Property { get; set; } + [Column("PropertyB2")] + public int Property { get; set; } - public int PropertyB1 { get; set; } + public int PropertyB1 { get; set; } - [NotMapped] - public int PropertyBX { get; set; } + [NotMapped] + public int PropertyBX { get; set; } } public class Generic { - public class GenericNestedInGeneric { } + public class GenericNestedInGeneric { } - public class NestedInGeneric { } + public class NestedInGeneric { } } [TestClass] public class MetadataCacheTests { - [TestMethod] - public void TableAttribute() - { - var meta = MetadataCache.GetMetadata(); - Assert.AreEqual("TableBase", meta.MappedTableName); - } - - [TestMethod] - public void TableAndViewAttribute() - { - var meta = MetadataCache.GetMetadata(); - Assert.AreEqual("ChildTable", meta.MappedTableName); - Assert.AreEqual("ChildView", meta.MappedViewName); - } - - [TestMethod] - public void NullableProperty() - { - var meta = MetadataCache.GetMetadata(); - Assert.AreEqual(false, meta.Properties.Single(x => x.Name == "NotNull").IsReferenceNullable); - } - - [TestMethod] - public void NonNullableProperty() - { - var meta = MetadataCache.GetMetadata(); - Assert.AreEqual(true, meta.Properties.Single(x => x.Name == "Nullable").IsReferenceNullable); - } - - [TestMethod] - public void NullAgnostic() - { - var meta = MetadataCache.GetMetadata(); - Assert.IsNull(meta.Properties.Single(x => x.Name == "NullUnknown").IsReferenceNullable); - } - - [TestMethod] - public void MetadataCache_Constructors_Test() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(MultiConstructor)); - - var a = result.Constructors.Find(typeof(int)); - var b = result.Constructors.Find(typeof(string)); - var c = result.Constructors.Find(typeof(int), typeof(string)); - var d = result.Constructors.Find(typeof(long), typeof(string)); - - verify.IsNotNull(a, "int"); - verify.IsNotNull(b, "string"); - verify.IsNotNull(c, "int, string"); - verify.IsNull(d, "long, string shouldn't exist"); - } - } - - [TestMethod] - public void MetadataCache_CSharp_Generic() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic)).CSharpFullName; - verify.AreEqual("Tests.Metadata.Generic", name, "C# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_CSharp_Generic_Dictionary() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Dictionary)).CSharpFullName; - verify.AreEqual("System.Collections.Generic.Dictionary", name, "C# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_CSharp_Generic_Of_Generic() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic>)).CSharpFullName; - verify.AreEqual("Tests.Metadata.Generic>", name, "C# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_CSharp_GenericNestedInGeneric() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic.GenericNestedInGeneric)).CSharpFullName; - verify.AreEqual("Tests.Metadata.Generic.GenericNestedInGeneric", name, "C# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_CSharp_Nested() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Normal.Nested)).CSharpFullName; - verify.AreEqual("Tests.Metadata.Normal.Nested", name, "C# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_CSharp_NestedInGeneric() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic.NestedInGeneric)).CSharpFullName; - verify.AreEqual("Tests.Metadata.Generic.NestedInGeneric", name, "C# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_CSharp_Normal() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Normal)).CSharpFullName; - verify.AreEqual("Tests.Metadata.Normal", name, "C# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_DefaultConstructor_Test() - { - using (var verify = new Verify()) - { - var a = MetadataCache.GetMetadata(typeof(AutoConstructor)); - verify.IsTrue(a.Constructors.HasDefaultConstructor, "AutoConstructor should have a automatically implemented default constructor"); - - var b = MetadataCache.GetMetadata(typeof(DefaultConstructor)); - verify.IsTrue(b.Constructors.HasDefaultConstructor, "DefaultConstructor should have a automatically implemented default constructor"); - - var c = MetadataCache.GetMetadata(typeof(DefaultConstructorPrivateClass)); - verify.IsTrue(c.Constructors.HasDefaultConstructor, "DefaultConstructorPrivateClass should have a automatically implemented default constructor"); - - var d = MetadataCache.GetMetadata(typeof(PrivateDefaultConstructor)); - verify.IsFalse(d.Constructors.HasDefaultConstructor, "PrivateDefaultConstructor does not have a visible default constructor"); - - var e = MetadataCache.GetMetadata(typeof(NonDefaultConstructor)); - verify.IsFalse(e.Constructors.HasDefaultConstructor, "NonDefaultConstructor does not have a default constructor"); - - var f = MetadataCache.GetMetadata(typeof(StaticConstructor)); - verify.IsTrue(f.Constructors.HasDefaultConstructor, "NonDefaultConstructor does not have a default constructor"); - } - } - - [TestMethod] - public void MetadataCache_FSharp_Generic() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic)).FSharpFullName; - verify.AreEqual("Tests.Metadata.Generic<'System.Int32>", name, "F# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_FSharp_Generic_Dictionary() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Dictionary)).FSharpFullName; - verify.AreEqual("System.Collections.Generic.Dictionary<'System.Int32, 'System.String>", name, "F# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_FSharp_Generic_Of_Generic() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic>)).FSharpFullName; - verify.AreEqual("Tests.Metadata.Generic<'Tests.Metadata.Generic<'System.Int32>>", name, "F# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_FSharp_GenericNestedInGeneric() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic.GenericNestedInGeneric)).FSharpFullName; - verify.AreEqual("Tests.Metadata.Generic<'System.Int32>.GenericNestedInGeneric<'System.Int64>", name, "F# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_FSharp_Nested() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Normal.Nested)).FSharpFullName; - verify.AreEqual("Tests.Metadata.Normal.Nested", name, "F# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_FSharp_NestedInGeneric() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic.NestedInGeneric)).FSharpFullName; - verify.AreEqual("Tests.Metadata.Generic<'System.Int32>.NestedInGeneric", name, "F# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_FSharp_Normal() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Normal)).FSharpFullName; - verify.AreEqual("Tests.Metadata.Normal", name, "F# type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_IsNullable_Int() - { - var x = MetadataCache.GetMetadata(typeof(int)); - var y = x.IsNullable; - Assert.AreEqual(false, y); - } - - [TestMethod] - public void MetadataCache_IsNullable_Nullable_Int() - { - var x = MetadataCache.GetMetadata(typeof(int?)); - var y = x.IsNullable; - Assert.AreEqual(true, y); - } - - [TestMethod] - public void MetadataCache_IsNullable_Object() - { - var x = MetadataCache.GetMetadata(typeof(object)); - var y = x.IsNullable; - Assert.AreEqual(true, y); - } - - [TestMethod] - public void MetadataCache_MakeNonNullable_Int() - { - var x = MetadataCache.GetMetadata(typeof(int)); - var y = x.MakeNonNullable().TypeInfo; - Assert.AreEqual(typeof(int), y); - } - - [TestMethod] - public void MetadataCache_MakeNonNullable_Nullable_Int() - { - var x = MetadataCache.GetMetadata(typeof(int?)); - var y = x.MakeNonNullable().TypeInfo; - Assert.AreEqual(typeof(int), y); - } - - [TestMethod] - public void MetadataCache_MakeNonNullable_Object() - { - var x = MetadataCache.GetMetadata(typeof(object)); - var y = x.MakeNonNullable().TypeInfo; - Assert.AreEqual(typeof(object), y); - } - - [TestMethod] - public void MetadataCache_MakeNullable_Int() - { - var x = MetadataCache.GetMetadata(typeof(int)); - var y = x.MakeNullable().TypeInfo; - Assert.AreEqual(typeof(int?), y); - } - - [TestMethod] - public void MetadataCache_MakeNullable_Nullable_Int() - { - var x = MetadataCache.GetMetadata(typeof(int?)); - var y = x.MakeNullable().TypeInfo; - Assert.AreEqual(typeof(int?), y); - } - - [TestMethod] - public void MetadataCache_MakeNullable_Object() - { - var x = MetadataCache.GetMetadata(typeof(object)); - var y = x.MakeNullable().TypeInfo; - Assert.AreEqual(typeof(object), y); - } - - [TestMethod] - public void MetadataCache_PrivateProperty_Test() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsNotNull(result, "GetMetadata returned a null"); - - var privateProperty = result.Properties["PrivateProperty"]; - verify.IsNotNull(privateProperty, "property wasn't found"); - verify.IsFalse(privateProperty.AffectsCalculatedFields, "not used in calculated fields"); - verify.AreEqual(0, privateProperty.CalculatedFields.Length, "not used in calculated fields"); - verify.IsFalse(privateProperty.CanRead, "CanRead"); - verify.IsFalse(privateProperty.CanWrite, "CanWrite"); - verify.AreEqual("PrivateProperty", privateProperty.Name, "Name"); - verify.AreEqual("PrivateProperty", privateProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); - verify.AreEqual(typeof(int), privateProperty.PropertyType, "PropertyType"); - - verify.AreEqual(0, privateProperty.Validators.Length, "not used in validation"); - } - } - - [TestMethod] - public void MetadataCache_ProtectedProperty_Test() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsNotNull(result, "GetMetadata returned a null"); - var protectedProperty = result.Properties["ProtectedProperty"]; - verify.IsNotNull(protectedProperty, "property wasn't found"); - verify.IsFalse(protectedProperty.AffectsCalculatedFields, "not used in calculated fields"); - verify.AreEqual(0, protectedProperty.CalculatedFields.Length, "not used in calculated fields"); - verify.IsFalse(protectedProperty.CanRead, "CanRead"); - verify.IsFalse(protectedProperty.CanWrite, "CanWrite"); - verify.AreEqual("ProtectedProperty", protectedProperty.Name, "Name"); - verify.AreEqual("ProtectedProperty", protectedProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); - verify.AreEqual(typeof(int), protectedProperty.PropertyType, "PropertyType"); - - verify.AreEqual(0, protectedProperty.Validators.Length, "not used in validation"); - } - } - - [TestMethod] - public void MetadataCache_PublicPrivateProperty_Test() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsNotNull(result, "GetMetadata returned a null"); - var publicPrivateProperty = result.Properties["PublicPrivateProperty"]; - verify.IsNotNull(publicPrivateProperty, "property wasn't found"); - verify.IsFalse(publicPrivateProperty.AffectsCalculatedFields, "not used in calculated fields"); - verify.AreEqual(0, publicPrivateProperty.CalculatedFields.Length, "not used in calculated fields"); - verify.IsTrue(publicPrivateProperty.CanRead, "CanRead"); - verify.IsFalse(publicPrivateProperty.CanWrite, "CanWrite"); - verify.AreEqual("PublicPrivateProperty", publicPrivateProperty.Name, "Name"); - verify.AreEqual("PublicPrivateProperty", publicPrivateProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); - verify.AreEqual(typeof(int), publicPrivateProperty.PropertyType, "PropertyType"); - - verify.AreEqual(0, publicPrivateProperty.Validators.Length, "not used in validation"); - } - } - - [TestMethod] - public void MetadataCache_PublicProperty_Test() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsNotNull(result, "GetMetadata returned a null"); - - var publicProperty = result.Properties["PublicProperty"]; - verify.IsNotNull(publicProperty, "property wasn't found"); - verify.IsFalse(publicProperty.AffectsCalculatedFields, "not used in calculated fields"); - verify.AreEqual(0, publicProperty.CalculatedFields.Length, "not used in calculated fields"); - verify.IsTrue(publicProperty.CanRead, "CanRead"); - verify.IsTrue(publicProperty.CanWrite, "CanWrite"); - verify.AreEqual("PublicProperty", publicProperty.Name, "Name"); - verify.AreEqual("PublicProperty", publicProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); - verify.AreEqual(typeof(int), publicProperty.PropertyType, "PropertyType"); - - verify.AreEqual(0, publicProperty.Validators.Length, "not used in validation"); - - verify.IsTrue(result.Constructors.HasDefaultConstructor, "this should have a automatically implemented default constructor"); - } - } - - [TestMethod] - public void MetadataCache_PublicProtectedProperty_Test() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsNotNull(result, "GetMetadata returned a null"); - var publicProtectedProperty = result.Properties["PublicProtectedProperty"]; - verify.IsNotNull(publicProtectedProperty, "property wasn't found"); - verify.IsFalse(publicProtectedProperty.AffectsCalculatedFields, "not used in calculated fields"); - verify.AreEqual(0, publicProtectedProperty.CalculatedFields.Length, "not used in calculated fields"); - verify.IsTrue(publicProtectedProperty.CanRead, "CanRead"); - verify.IsFalse(publicProtectedProperty.CanWrite, "CanWrite"); - verify.AreEqual("PublicProtectedProperty", publicProtectedProperty.Name, "Name"); - verify.AreEqual("PublicProtectedProperty", publicProtectedProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); - verify.AreEqual(typeof(int), publicProtectedProperty.PropertyType, "PropertyType"); - - verify.AreEqual(0, publicProtectedProperty.Validators.Length, "not used in validation"); - } - } - - [TestMethod] - public void MetadataCache_ReflexiveTest1() - { - using (var verify = new Verify()) - { - var fromType = MetadataCache.GetMetadata(typeof(Mock)); - var fromTypeInfo = MetadataCache.GetMetadata(typeof(Mock).GetTypeInfo()); - - verify.AreSame(fromType, fromTypeInfo, "From Type was not cached"); - } - } - - [TestMethod] - public void MetadataCache_ReflexiveTest2() - { - using (var verify = new Verify()) - { - var fromTypeInfo = MetadataCache.GetMetadata(typeof(Mock).GetTypeInfo()); - var fromType = MetadataCache.GetMetadata(typeof(Mock)); - - verify.AreSame(fromType, fromTypeInfo, "From TypeInfo was not cached"); - } - } - - [TestMethod] - public void MetadataCache_SetOnlyProperty_Test() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsNotNull(result, "GetMetadata returned a null"); - - var setOnlyProperty = result.Properties["SetOnlyProperty"]; - verify.IsNotNull(setOnlyProperty, "property wasn't found"); - verify.IsFalse(setOnlyProperty.AffectsCalculatedFields, "not used in calculated fields"); - verify.AreEqual(0, setOnlyProperty.CalculatedFields.Length, "not used in calculated fields"); - verify.IsFalse(setOnlyProperty.CanRead, "CanRead"); - verify.IsTrue(setOnlyProperty.CanWrite, "CanWrite"); - verify.AreEqual("SetOnlyProperty", setOnlyProperty.Name, "Name"); - verify.AreEqual("SetOnlyProperty", setOnlyProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); - verify.AreEqual(typeof(int), setOnlyProperty.PropertyType, "PropertyType"); - - verify.AreEqual(0, setOnlyProperty.Validators.Length, "not used in validation"); - } - } - - [TestMethod] - public void MetadataCache_Test11() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - var mock = new Mock(); - var prop = result.Properties["PublicProperty"]; - prop.InvokeSet(mock, 5); - var value = (int)prop.InvokeGet(mock)!; - verify.AreEqual(5, value, "InvokeGet"); - } - } - - [TestMethod] - public void MetadataCache_Test12() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.ArgumentException("propertyName", () => - { - var x = result.Properties[null!]; - }); - } - } - - [TestMethod] - public void MetadataCache_Test13() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.ArgumentException("propertyName", () => - { - var x = result.Properties[null!]; - }, "empty strings are not allowed"); - } - } - - [TestMethod] - public void MetadataCache_Test14() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(List)); - - foreach (var item in result.Properties) - { - Debug.WriteLine(item.Name); - } - - var x = result.Properties["Item [Int32]"]; - verify.IsNotNull(x, "Item [Int32] property is missing"); - - var y = result.Properties["Item[]"]; - verify.IsNotNull(y, "Item[] property is missing"); - verify.AreSame(x, y, "Item[] and Item [Int32] don't match"); - } - } - - [TestMethod] - public void MetadataCache_Test14B() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(StringIndexedMock)); - var x = result.Properties["Item [System.String]"]; - verify.IsNotNull(x, "Item [System.String] property is missing"); - - var y = result.Properties["Item[]"]; - verify.IsNotNull(y, "Item[] property is missing"); - verify.AreSame(x, y, "Item[] and Item [System.String] don't match"); - } - } - - [TestMethod] - public void MetadataCache_Test15() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsTrueForAll(result.Properties.PropertyNames, p => result.Properties.Contains(p), "Failed the contains test"); - } - } - - [TestMethod] - public void MetadataCache_Test16() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsTrueForAll(result.Properties, p => result.Properties.Contains(p), "failed the contains test"); - } - } - - [TestMethod] - public void MetadataCache_Test17() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.ArgumentNullException("item", () => result.Properties.Contains((PropertyMetadata)null!)); - } - } - - [TestMethod] - public void MetadataCache_Test18() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.ArgumentException("propertyName", () => result.Properties.Contains((string)null!)); - } - } - - [TestMethod] - public void MetadataCache_Test2() - { - using (var verify = new Verify()) - { - verify.ArgumentNullException("type", () => MetadataCache.GetMetadata((Type)null!)); - } - } - - [TestMethod] - public void MetadataCache_Test20() - { - using (var verify = new Verify()) - { - var result = (ICollection)MetadataCache.GetMetadata(typeof(Mock)).Properties; - verify.NotSupportedException(() => result.Add(MetadataCache.GetMetadata(typeof(String)).Properties.First())); - } - } - - [TestMethod] - public void MetadataCache_Test21() - { - using (var verify = new Verify()) - { - var result = (ICollection)MetadataCache.GetMetadata(typeof(Mock)).Properties; - verify.NotSupportedException(() => result.Remove(MetadataCache.GetMetadata(typeof(String)).Properties.First())); - } - } - - [TestMethod] - public void MetadataCache_Test22() - { - using (var verify = new Verify()) - { - var result = (ICollection)MetadataCache.GetMetadata(typeof(Mock)).Properties; - verify.NotSupportedException(() => result.Clear()); - } - } - - [TestMethod] - public void MetadataCache_Test23() - { - using (var verify = new Verify()) - { - var result = (ICollection)MetadataCache.GetMetadata(typeof(Mock)).Properties; - verify.IsTrue(result.IsReadOnly, "Collection should be read only"); - } - } - - [TestMethod] - public void MetadataCache_Test24() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.ArgumentOutOfRangeException("propertyName", "DOES_NOT_EXIST", () => - { - var p = result.Properties["DOES_NOT_EXIST"]; - }); - } - } - - [TestMethod] - public void MetadataCache_Test25() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsFalse(result.Properties.TryGetValue("DOES_NOT_EXIST", out var p), "TryGet expected to fail here"); - verify.IsNull(p, "TryGet failed, so this should be null."); - } - } - - [TestMethod] - public void MetadataCache_Test26() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.IsTrue(result.Properties.TryGetValue("PublicProperty", out var p), "TryGet should have succeeded"); - verify.IsNotNull(p, "TryGet should have succeeded"); - } - } - - [TestMethod] - public void MetadataCache_Test27() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.ArgumentException("propertyName", () => result.Properties.TryGetValue("", out var p), "can't use empty strings for property name"); - } - } - - [TestMethod] - public void MetadataCache_Test28() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - verify.ArgumentException("propertyName", () => result.Properties.TryGetValue(null!, out var p)); - } - } - - [TestMethod] - public void MetadataCache_Test29() - { - using (var verify = new Verify()) - { - var result = (IEnumerable)MetadataCache.GetMetadata(typeof(Mock)).Properties; - verify.IsNotNull(result.GetEnumerator(), "basic enumerator check"); - } - } - - [TestMethod] - public void MetadataCache_Test2b() - { - using (var verify = new Verify()) - { - verify.ArgumentNullException("type", () => MetadataCache.GetMetadata((TypeInfo)null!)); - } - } - - [TestMethod] - public void MetadataCache_Test30() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(object)); - var mockProperty = MetadataCache.GetMetadata(typeof(Mock)).Properties.First(); - verify.AreEqual(0, result.Properties.Count, "the type System.Object has no properties"); - verify.IsFalse(result.Properties.Contains(mockProperty), "contains test"); - } - } - - [TestMethod] - public void MetadataCache_Test31() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(ShadowedMock)); - verify.IsNotNull(result, "cache should never return null"); - } - } - - [TestMethod] - public void MetadataCache_Test32() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Base)).ColumnsFor.OrderBy(x => x).ToList(); - verify.AreEqual(5, result.Count, ""); - verify.AreEqual("BbbPropertyB1", result[0], ""); - verify.AreEqual("BbbPropertyB2", result[1], ""); - verify.AreEqual("Property0", result[2], ""); - verify.AreEqual("PropertyA1", result[3], ""); - verify.AreEqual("PropertyA2", result[4], ""); - } - } - - [TestMethod] - public void MetadataCache_Test4() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - - var source1 = result.Properties["CalculatedSource1"]; - var target = result.Properties["CalculatedTarget"]; - - verify.IsTrue(source1.AffectsCalculatedFields, "AffectsCalculatedFields"); - CollectionAssert.Contains(source1.CalculatedFields, target); - } - } - - [TestMethod] - public void MetadataCache_Test5() - { - using (var verify = new Verify()) - { - try - { - MetadataCache.GetMetadata(typeof(BadMock)); - verify.Fail("This should have thrown an exception because of the unmatched calculated field."); - } - catch (InvalidOperationException) - { - } - } - } - - [TestMethod] - public void MetadataCache_Test7() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - var mock = new Mock(); - var prop = result.Properties["PrivateProperty"]; - - try - { - prop.InvokeGet(mock); - } - catch (InvalidOperationException) - { - } - } - } - - [TestMethod] - public void MetadataCache_Test8() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(Mock)); - var mock = new Mock(); - var prop = result.Properties["PrivateProperty"]; - - try - { - prop.InvokeSet(mock, 5); - } - catch (InvalidOperationException) - { - } - } - } - - [TestMethod] - public void MetadataCache_VisualBasic_Generic() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic)).VisualBasicFullName; - verify.AreEqual("Tests.Metadata.Generic(Of System.Int32)", name, "VB type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_VisualBasic_Generic_Dictionary() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Dictionary)).VisualBasicFullName; - verify.AreEqual("System.Collections.Generic.Dictionary(Of System.Int32, System.String)", name, "VB type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_VisualBasic_Generic_Of_Generic() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic>)).VisualBasicFullName; - verify.AreEqual("Tests.Metadata.Generic(Of Tests.Metadata.Generic(Of System.Int32))", name, "VB type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_VisualBasic_GenericNestedInGeneric() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic.GenericNestedInGeneric)).VisualBasicFullName; - verify.AreEqual("Tests.Metadata.Generic(Of System.Int32).GenericNestedInGeneric(Of System.Int64)", name, "VB type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_VisualBasic_Nested() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Normal.Nested)).VisualBasicFullName; - verify.AreEqual("Tests.Metadata.Normal.Nested", name, "VB type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_VisualBasic_NestedInGeneric() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Generic.NestedInGeneric)).VisualBasicFullName; - verify.AreEqual("Tests.Metadata.Generic(Of System.Int32).NestedInGeneric", name, "VB type name was not correct"); - } - } - - [TestMethod] - public void MetadataCache_VisualBasic_Normal() - { - using (var verify = new Verify()) - { - var name = MetadataCache.GetMetadata(typeof(Normal)).VisualBasicFullName; - verify.AreEqual("Tests.Metadata.Normal", name, "VB type name was not correct"); - } - } - - - [TestMethod] - public void CloneTest_Shallow() - { - var original = new Base(); - original.Property0 = 10; - original.ChildA = new() { Property = 100, PropertyA1 = 110, PropertyAX = 120 }; - original.ChildB = new() { Property = 200, PropertyB1 = 220, PropertyBX = 230 }; - - var copy = MetadataCache.Clone(original, CloneOptions.None); - Assert.IsNotNull(copy); - Assert.AreEqual(original.Property0, copy.Property0); - Assert.AreSame(original.ChildA, copy.ChildA); - Assert.AreSame(original.ChildB, copy.ChildB); - } - - [TestMethod] - public void CloneTest_Deep() - { - var original = new Base - { - Property0 = 10, - ChildA = new() { Property = 100, PropertyA1 = 110, PropertyAX = 120 }, - ChildB = new() { Property = 200, PropertyB1 = 220, PropertyBX = 230 } - }; - - var copy = MetadataCache.Clone(original, CloneOptions.DeepClone); - Assert.IsNotNull(copy); - Assert.AreEqual(original.Property0, copy.Property0); - - Assert.AreNotSame(original.ChildA, copy.ChildA); - Assert.AreEqual(original.ChildA.Property, copy.ChildA.Property); - Assert.AreEqual(original.ChildA.PropertyA1, copy.ChildA.PropertyA1); - Assert.AreEqual(original.ChildA.PropertyAX, copy.ChildA.PropertyAX); - - Assert.AreNotSame(original.ChildB, copy.ChildB); - Assert.AreEqual(original.ChildB.Property, copy.ChildB.Property); - Assert.AreEqual(original.ChildB.PropertyB1, copy.ChildB.PropertyB1); - Assert.AreEqual(original.ChildB.PropertyBX, copy.ChildB.PropertyBX); - } - - - [TestMethod] - public void CloneTest_BypassProperties() - { - var original = new SimplePerson() - { - FirstName = "A", - LastName = "B" - }; - original.Boss.FirstName = "Tom"; - var copy = MetadataCache.Clone(original, CloneOptions.BypassProperties); - Assert.AreEqual(original.Boss.FirstName, copy.Boss.FirstName); - Assert.AreSame(original.Boss, copy.Boss); - } - - [TestMethod] - public void CloneTest_BypassProperties_DeepClone() - { - var original = new SimplePerson() - { - FirstName = "A", - LastName = "B" - }; - original.Boss.FirstName = "Tom"; - var copy = MetadataCache.Clone(original, CloneOptions.BypassProperties | CloneOptions.DeepClone); - Assert.AreEqual(original.Boss.FirstName, copy.Boss.FirstName); - Assert.AreNotSame(original.Boss, copy.Boss); - } - - [TestMethod] - public void CloneTest_DeepClone_ReadonlyProperties() - { - var original = new SimplePerson() - { - FirstName = "A", - LastName = "B" - }; - original.Boss.FirstName = "Tom"; - var copy = MetadataCache.Clone(original, CloneOptions.DeepClone, 1); - Assert.AreEqual(original.Boss.FirstName, copy.Boss.FirstName); - - - } - - [TestMethod] - public void SkipRecordSpecialProperties() - { - using (var verify = new Verify()) - { - var result = MetadataCache.GetMetadata(typeof(BarRecord)); - - verify.AreEqual(2, result.Properties.Where(p => p.CanRead).Count(), "CanRead"); - verify.AreEqual(2, result.Properties.Where(p => p.CanWrite).Count(), "CanWrite"); - verify.AreEqual(2, result.ColumnsFor.Count(), "ColumnsFor"); - - - verify.AreEqual(3, result.Properties.Where(p => p.CanReadRestricted).Count(), "CanReadRestricted"); - verify.AreEqual(2, result.Properties.Where(p => p.CanWriteRestricted).Count(), "CanWriteRestricted"); - - } - - } - - public class AutoConstructor { } - - public class DefaultConstructor - { - public DefaultConstructor() - { - } - } - - public class MultiConstructor - { - public MultiConstructor() - { - } + [TestMethod] + public void AttributeInheritanceForProperties() + { + var metaBase = MetadataCache.GetMetadata(); + var metaSub = MetadataCache.GetMetadata(); + + Assert.IsTrue(metaBase.Properties["Name"].Validators.Length == 1, "Base class is missing its validation attribute."); + Assert.IsTrue(metaSub.Properties["Name"].Validators.Length == 1, "Subclass didn't inherit its validation attribute."); + } + + [TestMethod] + public void TableAttribute() + { + var meta = MetadataCache.GetMetadata(); + Assert.AreEqual("TableBase", meta.MappedTableName); + } + + [TestMethod] + public void TableAndViewAttribute() + { + var meta = MetadataCache.GetMetadata(); + Assert.AreEqual("ChildTable", meta.MappedTableName); + Assert.AreEqual("ChildView", meta.MappedViewName); + } + + [TestMethod] + public void NullableProperty() + { + var meta = MetadataCache.GetMetadata(); + Assert.AreEqual(false, meta.Properties.Single(x => x.Name == "NotNull").IsReferenceNullable); + } + + [TestMethod] + public void NonNullableProperty() + { + var meta = MetadataCache.GetMetadata(); + Assert.AreEqual(true, meta.Properties.Single(x => x.Name == "Nullable").IsReferenceNullable); + } + + [TestMethod] + public void NullAgnostic() + { + var meta = MetadataCache.GetMetadata(); + Assert.IsNull(meta.Properties.Single(x => x.Name == "NullUnknown").IsReferenceNullable); + } + + [TestMethod] + public void MetadataCache_Constructors_Test() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(MultiConstructor)); + + var a = result.Constructors.Find(typeof(int)); + var b = result.Constructors.Find(typeof(string)); + var c = result.Constructors.Find(typeof(int), typeof(string)); + var d = result.Constructors.Find(typeof(long), typeof(string)); + + verify.IsNotNull(a, "int"); + verify.IsNotNull(b, "string"); + verify.IsNotNull(c, "int, string"); + verify.IsNull(d, "long, string shouldn't exist"); + } + } + + [TestMethod] + public void MetadataCache_CSharp_Generic() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic)).CSharpFullName; + verify.AreEqual("Tests.Metadata.Generic", name, "C# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_CSharp_Generic_Dictionary() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Dictionary)).CSharpFullName; + verify.AreEqual("System.Collections.Generic.Dictionary", name, "C# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_CSharp_Generic_Of_Generic() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic>)).CSharpFullName; + verify.AreEqual("Tests.Metadata.Generic>", name, "C# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_CSharp_GenericNestedInGeneric() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic.GenericNestedInGeneric)).CSharpFullName; + verify.AreEqual("Tests.Metadata.Generic.GenericNestedInGeneric", name, "C# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_CSharp_Nested() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Normal.Nested)).CSharpFullName; + verify.AreEqual("Tests.Metadata.Normal.Nested", name, "C# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_CSharp_NestedInGeneric() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic.NestedInGeneric)).CSharpFullName; + verify.AreEqual("Tests.Metadata.Generic.NestedInGeneric", name, "C# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_CSharp_Normal() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Normal)).CSharpFullName; + verify.AreEqual("Tests.Metadata.Normal", name, "C# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_DefaultConstructor_Test() + { + using (var verify = new Verify()) + { + var a = MetadataCache.GetMetadata(typeof(AutoConstructor)); + verify.IsTrue(a.Constructors.HasDefaultConstructor, "AutoConstructor should have a automatically implemented default constructor"); + + var b = MetadataCache.GetMetadata(typeof(DefaultConstructor)); + verify.IsTrue(b.Constructors.HasDefaultConstructor, "DefaultConstructor should have a automatically implemented default constructor"); + + var c = MetadataCache.GetMetadata(typeof(DefaultConstructorPrivateClass)); + verify.IsTrue(c.Constructors.HasDefaultConstructor, "DefaultConstructorPrivateClass should have a automatically implemented default constructor"); + + var d = MetadataCache.GetMetadata(typeof(PrivateDefaultConstructor)); + verify.IsFalse(d.Constructors.HasDefaultConstructor, "PrivateDefaultConstructor does not have a visible default constructor"); + + var e = MetadataCache.GetMetadata(typeof(NonDefaultConstructor)); + verify.IsFalse(e.Constructors.HasDefaultConstructor, "NonDefaultConstructor does not have a default constructor"); + + var f = MetadataCache.GetMetadata(typeof(StaticConstructor)); + verify.IsTrue(f.Constructors.HasDefaultConstructor, "NonDefaultConstructor does not have a default constructor"); + } + } + + [TestMethod] + public void MetadataCache_FSharp_Generic() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic)).FSharpFullName; + verify.AreEqual("Tests.Metadata.Generic<'System.Int32>", name, "F# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_FSharp_Generic_Dictionary() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Dictionary)).FSharpFullName; + verify.AreEqual("System.Collections.Generic.Dictionary<'System.Int32, 'System.String>", name, "F# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_FSharp_Generic_Of_Generic() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic>)).FSharpFullName; + verify.AreEqual("Tests.Metadata.Generic<'Tests.Metadata.Generic<'System.Int32>>", name, "F# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_FSharp_GenericNestedInGeneric() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic.GenericNestedInGeneric)).FSharpFullName; + verify.AreEqual("Tests.Metadata.Generic<'System.Int32>.GenericNestedInGeneric<'System.Int64>", name, "F# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_FSharp_Nested() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Normal.Nested)).FSharpFullName; + verify.AreEqual("Tests.Metadata.Normal.Nested", name, "F# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_FSharp_NestedInGeneric() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic.NestedInGeneric)).FSharpFullName; + verify.AreEqual("Tests.Metadata.Generic<'System.Int32>.NestedInGeneric", name, "F# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_FSharp_Normal() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Normal)).FSharpFullName; + verify.AreEqual("Tests.Metadata.Normal", name, "F# type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_IsNullable_Int() + { + var x = MetadataCache.GetMetadata(typeof(int)); + var y = x.IsNullable; + Assert.AreEqual(false, y); + } + + [TestMethod] + public void MetadataCache_IsNullable_Nullable_Int() + { + var x = MetadataCache.GetMetadata(typeof(int?)); + var y = x.IsNullable; + Assert.AreEqual(true, y); + } + + [TestMethod] + public void MetadataCache_IsNullable_Object() + { + var x = MetadataCache.GetMetadata(typeof(object)); + var y = x.IsNullable; + Assert.AreEqual(true, y); + } + + [TestMethod] + public void MetadataCache_MakeNonNullable_Int() + { + var x = MetadataCache.GetMetadata(typeof(int)); + var y = x.MakeNonNullable().TypeInfo; + Assert.AreEqual(typeof(int), y); + } + + [TestMethod] + public void MetadataCache_MakeNonNullable_Nullable_Int() + { + var x = MetadataCache.GetMetadata(typeof(int?)); + var y = x.MakeNonNullable().TypeInfo; + Assert.AreEqual(typeof(int), y); + } + + [TestMethod] + public void MetadataCache_MakeNonNullable_Object() + { + var x = MetadataCache.GetMetadata(typeof(object)); + var y = x.MakeNonNullable().TypeInfo; + Assert.AreEqual(typeof(object), y); + } + + [TestMethod] + public void MetadataCache_MakeNullable_Int() + { + var x = MetadataCache.GetMetadata(typeof(int)); + var y = x.MakeNullable().TypeInfo; + Assert.AreEqual(typeof(int?), y); + } + + [TestMethod] + public void MetadataCache_MakeNullable_Nullable_Int() + { + var x = MetadataCache.GetMetadata(typeof(int?)); + var y = x.MakeNullable().TypeInfo; + Assert.AreEqual(typeof(int?), y); + } + + [TestMethod] + public void MetadataCache_MakeNullable_Object() + { + var x = MetadataCache.GetMetadata(typeof(object)); + var y = x.MakeNullable().TypeInfo; + Assert.AreEqual(typeof(object), y); + } + + [TestMethod] + public void MetadataCache_PrivateProperty_Test() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsNotNull(result, "GetMetadata returned a null"); + + var privateProperty = result.Properties["PrivateProperty"]; + verify.IsNotNull(privateProperty, "property wasn't found"); + verify.IsFalse(privateProperty.AffectsCalculatedFields, "not used in calculated fields"); + verify.AreEqual(0, privateProperty.CalculatedFields.Length, "not used in calculated fields"); + verify.IsFalse(privateProperty.CanRead, "CanRead"); + verify.IsFalse(privateProperty.CanWrite, "CanWrite"); + verify.AreEqual("PrivateProperty", privateProperty.Name, "Name"); + verify.AreEqual("PrivateProperty", privateProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); + verify.AreEqual(typeof(int), privateProperty.PropertyType, "PropertyType"); + + verify.AreEqual(0, privateProperty.Validators.Length, "not used in validation"); + } + } + + [TestMethod] + public void MetadataCache_ProtectedProperty_Test() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsNotNull(result, "GetMetadata returned a null"); + var protectedProperty = result.Properties["ProtectedProperty"]; + verify.IsNotNull(protectedProperty, "property wasn't found"); + verify.IsFalse(protectedProperty.AffectsCalculatedFields, "not used in calculated fields"); + verify.AreEqual(0, protectedProperty.CalculatedFields.Length, "not used in calculated fields"); + verify.IsFalse(protectedProperty.CanRead, "CanRead"); + verify.IsFalse(protectedProperty.CanWrite, "CanWrite"); + verify.AreEqual("ProtectedProperty", protectedProperty.Name, "Name"); + verify.AreEqual("ProtectedProperty", protectedProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); + verify.AreEqual(typeof(int), protectedProperty.PropertyType, "PropertyType"); + + verify.AreEqual(0, protectedProperty.Validators.Length, "not used in validation"); + } + } + + [TestMethod] + public void MetadataCache_PublicPrivateProperty_Test() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsNotNull(result, "GetMetadata returned a null"); + var publicPrivateProperty = result.Properties["PublicPrivateProperty"]; + verify.IsNotNull(publicPrivateProperty, "property wasn't found"); + verify.IsFalse(publicPrivateProperty.AffectsCalculatedFields, "not used in calculated fields"); + verify.AreEqual(0, publicPrivateProperty.CalculatedFields.Length, "not used in calculated fields"); + verify.IsTrue(publicPrivateProperty.CanRead, "CanRead"); + verify.IsFalse(publicPrivateProperty.CanWrite, "CanWrite"); + verify.AreEqual("PublicPrivateProperty", publicPrivateProperty.Name, "Name"); + verify.AreEqual("PublicPrivateProperty", publicPrivateProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); + verify.AreEqual(typeof(int), publicPrivateProperty.PropertyType, "PropertyType"); + + verify.AreEqual(0, publicPrivateProperty.Validators.Length, "not used in validation"); + } + } + + [TestMethod] + public void MetadataCache_PublicProperty_Test() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsNotNull(result, "GetMetadata returned a null"); + + var publicProperty = result.Properties["PublicProperty"]; + verify.IsNotNull(publicProperty, "property wasn't found"); + verify.IsFalse(publicProperty.AffectsCalculatedFields, "not used in calculated fields"); + verify.AreEqual(0, publicProperty.CalculatedFields.Length, "not used in calculated fields"); + verify.IsTrue(publicProperty.CanRead, "CanRead"); + verify.IsTrue(publicProperty.CanWrite, "CanWrite"); + verify.AreEqual("PublicProperty", publicProperty.Name, "Name"); + verify.AreEqual("PublicProperty", publicProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); + verify.AreEqual(typeof(int), publicProperty.PropertyType, "PropertyType"); + + verify.AreEqual(0, publicProperty.Validators.Length, "not used in validation"); + + verify.IsTrue(result.Constructors.HasDefaultConstructor, "this should have a automatically implemented default constructor"); + } + } + + [TestMethod] + public void MetadataCache_PublicProtectedProperty_Test() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsNotNull(result, "GetMetadata returned a null"); + var publicProtectedProperty = result.Properties["PublicProtectedProperty"]; + verify.IsNotNull(publicProtectedProperty, "property wasn't found"); + verify.IsFalse(publicProtectedProperty.AffectsCalculatedFields, "not used in calculated fields"); + verify.AreEqual(0, publicProtectedProperty.CalculatedFields.Length, "not used in calculated fields"); + verify.IsTrue(publicProtectedProperty.CanRead, "CanRead"); + verify.IsFalse(publicProtectedProperty.CanWrite, "CanWrite"); + verify.AreEqual("PublicProtectedProperty", publicProtectedProperty.Name, "Name"); + verify.AreEqual("PublicProtectedProperty", publicProtectedProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); + verify.AreEqual(typeof(int), publicProtectedProperty.PropertyType, "PropertyType"); + + verify.AreEqual(0, publicProtectedProperty.Validators.Length, "not used in validation"); + } + } + + [TestMethod] + public void MetadataCache_ReflexiveTest1() + { + using (var verify = new Verify()) + { + var fromType = MetadataCache.GetMetadata(typeof(Mock)); + var fromTypeInfo = MetadataCache.GetMetadata(typeof(Mock).GetTypeInfo()); + + verify.AreSame(fromType, fromTypeInfo, "From Type was not cached"); + } + } + + [TestMethod] + public void MetadataCache_ReflexiveTest2() + { + using (var verify = new Verify()) + { + var fromTypeInfo = MetadataCache.GetMetadata(typeof(Mock).GetTypeInfo()); + var fromType = MetadataCache.GetMetadata(typeof(Mock)); + + verify.AreSame(fromType, fromTypeInfo, "From TypeInfo was not cached"); + } + } + + [TestMethod] + public void MetadataCache_SetOnlyProperty_Test() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsNotNull(result, "GetMetadata returned a null"); + + var setOnlyProperty = result.Properties["SetOnlyProperty"]; + verify.IsNotNull(setOnlyProperty, "property wasn't found"); + verify.IsFalse(setOnlyProperty.AffectsCalculatedFields, "not used in calculated fields"); + verify.AreEqual(0, setOnlyProperty.CalculatedFields.Length, "not used in calculated fields"); + verify.IsFalse(setOnlyProperty.CanRead, "CanRead"); + verify.IsTrue(setOnlyProperty.CanWrite, "CanWrite"); + verify.AreEqual("SetOnlyProperty", setOnlyProperty.Name, "Name"); + verify.AreEqual("SetOnlyProperty", setOnlyProperty.PropertyChangedEventArgs.PropertyName, "PropertyName"); + verify.AreEqual(typeof(int), setOnlyProperty.PropertyType, "PropertyType"); + + verify.AreEqual(0, setOnlyProperty.Validators.Length, "not used in validation"); + } + } + + [TestMethod] + public void MetadataCache_Test11() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + var mock = new Mock(); + var prop = result.Properties["PublicProperty"]; + prop.InvokeSet(mock, 5); + var value = (int)prop.InvokeGet(mock)!; + verify.AreEqual(5, value, "InvokeGet"); + } + } + + [TestMethod] + public void MetadataCache_Test12() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.ArgumentException("propertyName", () => + { + var x = result.Properties[null!]; + }); + } + } + + [TestMethod] + public void MetadataCache_Test13() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.ArgumentException("propertyName", () => + { + var x = result.Properties[null!]; + }, "empty strings are not allowed"); + } + } + + [TestMethod] + public void MetadataCache_Test14() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(List)); + + foreach (var item in result.Properties) + { + Debug.WriteLine(item.Name); + } + + var x = result.Properties["Item [Int32]"]; + verify.IsNotNull(x, "Item [Int32] property is missing"); + + var y = result.Properties["Item[]"]; + verify.IsNotNull(y, "Item[] property is missing"); + verify.AreSame(x, y, "Item[] and Item [Int32] don't match"); + } + } + + [TestMethod] + public void MetadataCache_Test14B() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(StringIndexedMock)); + var x = result.Properties["Item [System.String]"]; + verify.IsNotNull(x, "Item [System.String] property is missing"); + + var y = result.Properties["Item[]"]; + verify.IsNotNull(y, "Item[] property is missing"); + verify.AreSame(x, y, "Item[] and Item [System.String] don't match"); + } + } + + [TestMethod] + public void MetadataCache_Test15() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsTrueForAll(result.Properties.PropertyNames, p => result.Properties.Contains(p), "Failed the contains test"); + } + } + + [TestMethod] + public void MetadataCache_Test16() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsTrueForAll(result.Properties, p => result.Properties.Contains(p), "failed the contains test"); + } + } + + [TestMethod] + public void MetadataCache_Test17() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.ArgumentNullException("item", () => result.Properties.Contains((PropertyMetadata)null!)); + } + } + + [TestMethod] + public void MetadataCache_Test18() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.ArgumentException("propertyName", () => result.Properties.Contains((string)null!)); + } + } + + [TestMethod] + public void MetadataCache_Test2() + { + using (var verify = new Verify()) + { + verify.ArgumentNullException("type", () => MetadataCache.GetMetadata((Type)null!)); + } + } + + [TestMethod] + public void MetadataCache_Test20() + { + using (var verify = new Verify()) + { + var result = (ICollection)MetadataCache.GetMetadata(typeof(Mock)).Properties; + verify.NotSupportedException(() => result.Add(MetadataCache.GetMetadata(typeof(String)).Properties.First())); + } + } + + [TestMethod] + public void MetadataCache_Test21() + { + using (var verify = new Verify()) + { + var result = (ICollection)MetadataCache.GetMetadata(typeof(Mock)).Properties; + verify.NotSupportedException(() => result.Remove(MetadataCache.GetMetadata(typeof(String)).Properties.First())); + } + } + + [TestMethod] + public void MetadataCache_Test22() + { + using (var verify = new Verify()) + { + var result = (ICollection)MetadataCache.GetMetadata(typeof(Mock)).Properties; + verify.NotSupportedException(() => result.Clear()); + } + } + + [TestMethod] + public void MetadataCache_Test23() + { + using (var verify = new Verify()) + { + var result = (ICollection)MetadataCache.GetMetadata(typeof(Mock)).Properties; + verify.IsTrue(result.IsReadOnly, "Collection should be read only"); + } + } + + [TestMethod] + public void MetadataCache_Test24() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.ArgumentOutOfRangeException("propertyName", "DOES_NOT_EXIST", () => + { + var p = result.Properties["DOES_NOT_EXIST"]; + }); + } + } + + [TestMethod] + public void MetadataCache_Test25() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsFalse(result.Properties.TryGetValue("DOES_NOT_EXIST", out var p), "TryGet expected to fail here"); + verify.IsNull(p, "TryGet failed, so this should be null."); + } + } + + [TestMethod] + public void MetadataCache_Test26() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.IsTrue(result.Properties.TryGetValue("PublicProperty", out var p), "TryGet should have succeeded"); + verify.IsNotNull(p, "TryGet should have succeeded"); + } + } + + [TestMethod] + public void MetadataCache_Test27() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.ArgumentException("propertyName", () => result.Properties.TryGetValue("", out var p), "can't use empty strings for property name"); + } + } + + [TestMethod] + public void MetadataCache_Test28() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + verify.ArgumentException("propertyName", () => result.Properties.TryGetValue(null!, out var p)); + } + } + + [TestMethod] + public void MetadataCache_Test29() + { + using (var verify = new Verify()) + { + var result = (IEnumerable)MetadataCache.GetMetadata(typeof(Mock)).Properties; + verify.IsNotNull(result.GetEnumerator(), "basic enumerator check"); + } + } + + [TestMethod] + public void MetadataCache_Test2b() + { + using (var verify = new Verify()) + { + verify.ArgumentNullException("type", () => MetadataCache.GetMetadata((TypeInfo)null!)); + } + } + + [TestMethod] + public void MetadataCache_Test30() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(object)); + var mockProperty = MetadataCache.GetMetadata(typeof(Mock)).Properties.First(); + verify.AreEqual(0, result.Properties.Count, "the type System.Object has no properties"); + verify.IsFalse(result.Properties.Contains(mockProperty), "contains test"); + } + } + + [TestMethod] + public void MetadataCache_Test31() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(ShadowedMock)); + verify.IsNotNull(result, "cache should never return null"); + } + } + + [TestMethod] + public void MetadataCache_Test32() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Base)).ColumnsFor.OrderBy(x => x).ToList(); + verify.AreEqual(5, result.Count, ""); + verify.AreEqual("BbbPropertyB1", result[0], ""); + verify.AreEqual("BbbPropertyB2", result[1], ""); + verify.AreEqual("Property0", result[2], ""); + verify.AreEqual("PropertyA1", result[3], ""); + verify.AreEqual("PropertyA2", result[4], ""); + } + } + + [TestMethod] + public void MetadataCache_Test33() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(EmptyColumn)); + verify.AreEqual("Property0", result.Properties["Property0"].MappedColumnName, "Column wasn't mapped correctly."); + } + } + + [TestMethod] + public void MetadataCache_Test4() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + + var source1 = result.Properties["CalculatedSource1"]; + var target = result.Properties["CalculatedTarget"]; + + verify.IsTrue(source1.AffectsCalculatedFields, "AffectsCalculatedFields"); + CollectionAssert.Contains(source1.CalculatedFields, target); + } + } + + [TestMethod] + public void MetadataCache_Test5() + { + using (var verify = new Verify()) + { + try + { + MetadataCache.GetMetadata(typeof(BadMock)); + verify.Fail("This should have thrown an exception because of the unmatched calculated field."); + } + catch (InvalidOperationException) + { + } + } + } + + [TestMethod] + public void MetadataCache_Test7() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + var mock = new Mock(); + var prop = result.Properties["PrivateProperty"]; + + try + { + prop.InvokeGet(mock); + } + catch (InvalidOperationException) + { + } + } + } + + [TestMethod] + public void MetadataCache_Test8() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(Mock)); + var mock = new Mock(); + var prop = result.Properties["PrivateProperty"]; + + try + { + prop.InvokeSet(mock, 5); + } + catch (InvalidOperationException) + { + } + } + } + + [TestMethod] + public void MetadataCache_VisualBasic_Generic() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic)).VisualBasicFullName; + verify.AreEqual("Tests.Metadata.Generic(Of System.Int32)", name, "VB type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_VisualBasic_Generic_Dictionary() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Dictionary)).VisualBasicFullName; + verify.AreEqual("System.Collections.Generic.Dictionary(Of System.Int32, System.String)", name, "VB type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_VisualBasic_Generic_Of_Generic() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic>)).VisualBasicFullName; + verify.AreEqual("Tests.Metadata.Generic(Of Tests.Metadata.Generic(Of System.Int32))", name, "VB type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_VisualBasic_GenericNestedInGeneric() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic.GenericNestedInGeneric)).VisualBasicFullName; + verify.AreEqual("Tests.Metadata.Generic(Of System.Int32).GenericNestedInGeneric(Of System.Int64)", name, "VB type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_VisualBasic_Nested() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Normal.Nested)).VisualBasicFullName; + verify.AreEqual("Tests.Metadata.Normal.Nested", name, "VB type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_VisualBasic_NestedInGeneric() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Generic.NestedInGeneric)).VisualBasicFullName; + verify.AreEqual("Tests.Metadata.Generic(Of System.Int32).NestedInGeneric", name, "VB type name was not correct"); + } + } + + [TestMethod] + public void MetadataCache_VisualBasic_Normal() + { + using (var verify = new Verify()) + { + var name = MetadataCache.GetMetadata(typeof(Normal)).VisualBasicFullName; + verify.AreEqual("Tests.Metadata.Normal", name, "VB type name was not correct"); + } + } + + [TestMethod] + public void CloneTest_Shallow() + { + var original = new Base(); + original.Property0 = 10; + original.ChildA = new() { Property = 100, PropertyA1 = 110, PropertyAX = 120 }; + original.ChildB = new() { Property = 200, PropertyB1 = 220, PropertyBX = 230 }; + + var copy = MetadataCache.Clone(original, CloneOptions.None); + Assert.IsNotNull(copy); + Assert.AreEqual(original.Property0, copy.Property0); + Assert.AreSame(original.ChildA, copy.ChildA); + Assert.AreSame(original.ChildB, copy.ChildB); + } + + [TestMethod] + public void CloneTest_Deep() + { + var original = new Base + { + Property0 = 10, + ChildA = new() { Property = 100, PropertyA1 = 110, PropertyAX = 120 }, + ChildB = new() { Property = 200, PropertyB1 = 220, PropertyBX = 230 } + }; + + var copy = MetadataCache.Clone(original, CloneOptions.DeepClone); + Assert.IsNotNull(copy); + Assert.AreEqual(original.Property0, copy.Property0); + + Assert.AreNotSame(original.ChildA, copy.ChildA); + Assert.AreEqual(original.ChildA.Property, copy.ChildA.Property); + Assert.AreEqual(original.ChildA.PropertyA1, copy.ChildA.PropertyA1); + Assert.AreEqual(original.ChildA.PropertyAX, copy.ChildA.PropertyAX); + + Assert.AreNotSame(original.ChildB, copy.ChildB); + Assert.AreEqual(original.ChildB.Property, copy.ChildB.Property); + Assert.AreEqual(original.ChildB.PropertyB1, copy.ChildB.PropertyB1); + Assert.AreEqual(original.ChildB.PropertyBX, copy.ChildB.PropertyBX); + } + + [TestMethod] + public void CloneTest_BypassProperties() + { + var original = new SimplePerson() + { + FirstName = "A", + LastName = "B" + }; + original.Boss.FirstName = "Tom"; + var copy = MetadataCache.Clone(original, CloneOptions.BypassProperties); + Assert.AreEqual(original.Boss.FirstName, copy.Boss.FirstName); + Assert.AreSame(original.Boss, copy.Boss); + } + + [TestMethod] + public void CloneTest_BypassProperties_DeepClone() + { + var original = new SimplePerson() + { + FirstName = "A", + LastName = "B" + }; + original.Boss.FirstName = "Tom"; + var copy = MetadataCache.Clone(original, CloneOptions.BypassProperties | CloneOptions.DeepClone); + Assert.AreEqual(original.Boss.FirstName, copy.Boss.FirstName); + Assert.AreNotSame(original.Boss, copy.Boss); + } + + [TestMethod] + public void CloneTest_DeepClone_ReadonlyProperties() + { + var original = new SimplePerson() + { + FirstName = "A", + LastName = "B" + }; + original.Boss.FirstName = "Tom"; + var copy = MetadataCache.Clone(original, CloneOptions.DeepClone, 1); + Assert.AreEqual(original.Boss.FirstName, copy.Boss.FirstName); + } + + [TestMethod] + public void SkipRecordSpecialProperties() + { + using (var verify = new Verify()) + { + var result = MetadataCache.GetMetadata(typeof(BarRecord)); + + verify.AreEqual(2, result.Properties.Where(p => p.CanRead).Count(), "CanRead"); + verify.AreEqual(2, result.Properties.Where(p => p.CanWrite).Count(), "CanWrite"); + verify.AreEqual(2, result.ColumnsFor.Count(), "ColumnsFor"); + + verify.AreEqual(3, result.Properties.Where(p => p.CanReadRestricted).Count(), "CanReadRestricted"); + verify.AreEqual(2, result.Properties.Where(p => p.CanWriteRestricted).Count(), "CanWriteRestricted"); + } + } + + public class AutoConstructor { } + + public class DefaultConstructor + { + public DefaultConstructor() + { + } + } + + public class MultiConstructor + { + public MultiConstructor() + { + } #pragma warning disable IDE0060 // Remove unused parameter - public MultiConstructor(int x) - { - } - public MultiConstructor(string x) - { - } + public MultiConstructor(int x) + { + } + + public MultiConstructor(string x) + { + } + + public MultiConstructor(int a, string b) + { + } - public MultiConstructor(int a, string b) - { - } #pragma warning restore IDE0060 // Remove unused parameter - } + } - public class NonDefaultConstructor - { + public class NonDefaultConstructor + { #pragma warning disable IDE0060 // Remove unused parameter - public NonDefaultConstructor(int x) - { - } + + public NonDefaultConstructor(int x) + { + } + #pragma warning restore IDE0060 // Remove unused parameter - } - - public class PrivateDefaultConstructor - { - private PrivateDefaultConstructor() - { - } - } - - public class StaticConstructor - { - static StaticConstructor() - { - } - } - - private class DefaultConstructorPrivateClass - { - public DefaultConstructorPrivateClass() - { - } - } - - class StringIndexedMock - { - public bool this[string index] - { - get { return true; } - set { } - } - } + } + + public class PrivateDefaultConstructor + { + private PrivateDefaultConstructor() + { + } + } + + public class StaticConstructor + { + static StaticConstructor() + { + } + } + + private class DefaultConstructorPrivateClass + { + public DefaultConstructorPrivateClass() + { + } + } + + class StringIndexedMock + { + public bool this[string index] + { + get { return true; } + set { } + } + } } public class Normal { - public class Nested { } + public class Nested { } } diff --git a/Tortuga.Anchor/Tortuga.Anchor.Tests/Metadata/Mock.cs b/Tortuga.Anchor/Tortuga.Anchor.Tests/Metadata/Mock.cs index 48eed023..45f338a1 100644 --- a/Tortuga.Anchor/Tortuga.Anchor.Tests/Metadata/Mock.cs +++ b/Tortuga.Anchor/Tortuga.Anchor.Tests/Metadata/Mock.cs @@ -5,22 +5,33 @@ namespace Tests.Metadata; class Mock { - private int PrivateProperty { get; set; } + private int PrivateProperty { get; set; } - public int PublicProperty { get; set; } - protected int ProtectedProperty { get; set; } - public int PublicPrivateProperty { get; private set; } - public int PublicProtectedProperty { get; protected set; } + public int PublicProperty { get; set; } + protected int ProtectedProperty { get; set; } + public int PublicPrivateProperty { get; private set; } + public int PublicProtectedProperty { get; protected set; } #pragma warning disable CA1822 // Mark members as static - public int SetOnlyProperty { set { } } + public int SetOnlyProperty { set { } } #pragma warning restore CA1822 // Mark members as static - [Required()] - public string CalculatedSource1 { get; set; } = null!; - public string CalculatedSource2 { get; set; } = null!; + [Required()] + public string CalculatedSource1 { get; set; } = null!; - [CalculatedField("CalculatedSource1")] - [CalculatedField("CalculatedSource2")] - public int CalculatedTarget { get { return 0; } } + public string CalculatedSource2 { get; set; } = null!; + [CalculatedField("CalculatedSource1")] + [CalculatedField("CalculatedSource2")] + public int CalculatedTarget { get { return 0; } } +} + +class BaseClass +{ + [Required] + public virtual string? Name { get; set; } +} + +class SubClass : BaseClass +{ + public override string? Name { get; set; } } diff --git a/Tortuga.Anchor/Tortuga.Anchor.sln b/Tortuga.Anchor/Tortuga.Anchor.sln index 4f727843..cc1ac366 100644 --- a/Tortuga.Anchor/Tortuga.Anchor.sln +++ b/Tortuga.Anchor/Tortuga.Anchor.sln @@ -12,6 +12,8 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8BAB13C9-B76B-4E67-9CF2-4D41B6EAD7FD}" ProjectSection(SolutionItems) = preProject .editorconfig = .editorconfig + Changelog.md = Changelog.md + ..\README.md = ..\README.md EndProjectSection EndProject Global diff --git a/Tortuga.Anchor/Tortuga.Anchor/Legacy/LegacyUtilities.cs b/Tortuga.Anchor/Tortuga.Anchor/Legacy/LegacyUtilities.cs index e2e3b697..298c4c8e 100644 --- a/Tortuga.Anchor/Tortuga.Anchor/Legacy/LegacyUtilities.cs +++ b/Tortuga.Anchor/Tortuga.Anchor/Legacy/LegacyUtilities.cs @@ -1,19 +1,19 @@ -#if !ORDINAL_STRINGS && !NET5_0_OR_GREATER +#if !NETCOREAPP3_1_OR_GREATER namespace Tortuga.Anchor; static class LegacyUtilities { - public static int GetHashCode(this string source, StringComparison stringComparison) - { - return stringComparison switch - { - StringComparison.CurrentCultureIgnoreCase or - StringComparison.OrdinalIgnoreCase or - StringComparison.InvariantCultureIgnoreCase - => source.ToUpperInvariant().GetHashCode(), - _ => source.GetHashCode(), - }; - } + public static int GetHashCode(this string source, StringComparison stringComparison) + { + return stringComparison switch + { + StringComparison.CurrentCultureIgnoreCase or + StringComparison.OrdinalIgnoreCase or + StringComparison.InvariantCultureIgnoreCase + => source.ToUpperInvariant().GetHashCode(), + _ => source.GetHashCode(), + }; + } } #endif diff --git a/Tortuga.Anchor/Tortuga.Anchor/Metadata/ConstructorMetadataCollection.cs b/Tortuga.Anchor/Tortuga.Anchor/Metadata/ConstructorMetadataCollection.cs index 2218b5dc..a2b441a6 100644 --- a/Tortuga.Anchor/Tortuga.Anchor/Metadata/ConstructorMetadataCollection.cs +++ b/Tortuga.Anchor/Tortuga.Anchor/Metadata/ConstructorMetadataCollection.cs @@ -8,168 +8,181 @@ namespace Tortuga.Anchor.Metadata; /// Class ConstructorMetadataCollection. /// /// -public sealed class ConstructorMetadataCollection : ICollection +public sealed class ConstructorMetadataCollection : IList, IReadOnlyList { - readonly ImmutableArray m_Constructors; - - internal ConstructorMetadataCollection(IEnumerable constructors) - { - m_Constructors = ImmutableArray.CreateRange(constructors.Where(c => c.IsPublic).Select(c => new ConstructorMetadata(c))); - HasDefaultConstructor = m_Constructors.Any(c => c.Signature.Length == 0); - } - - /// - /// Gets the number of elements contained in the . - /// - /// The count. - public int Count => m_Constructors.Length; - - /// - /// Gets a value indicating whether this instance has a default constructor. - /// - /// true if this instance has a default constructor; otherwise, false. - public bool HasDefaultConstructor { get; } - - /// - /// Gets a value indicating whether the is read-only. - /// - /// true if this instance is read only; otherwise, false. - public bool IsReadOnly => true; - - void ICollection.Add(ConstructorMetadata item) - { - throw new NotSupportedException(); - } - - void ICollection.Clear() - { - throw new NotSupportedException(); - } - - /// - /// Determines whether the contains a specific value. - /// - /// The object to locate in the . - /// true if is found in the ; otherwise, false. - public bool Contains(ConstructorMetadata item) - { - if (item == null) - throw new ArgumentNullException(nameof(item), $"{nameof(item)} is null."); - - return m_Constructors.Contains(item); - } - - /// - /// Determines whether [contains] [the specified signature]. - /// - /// The signature. - /// true if [contains] [the specified signature]; otherwise, false. - public bool Contains(IReadOnlyList signature) - { - if (signature == null) - throw new ArgumentNullException(nameof(signature), $"{nameof(signature)} is null"); - - return Find(signature) != null; - } - - /// - /// Determines whether [contains] [the specified signature]. - /// - /// The signature. - /// true if [contains] [the specified signature]; otherwise, false. - public bool Contains(params Type[] signature) - { - return Find(signature) != null; - } - - /// - /// Copies the elements of the to an , starting at a particular index. - /// - /// The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. - /// The zero-based index in at which copying begins. - public void CopyTo(ConstructorMetadata[] array, int arrayIndex) - { - if (array == null) - throw new ArgumentNullException(nameof(array), $"{nameof(array)} is null"); - - m_Constructors.CopyTo(array, arrayIndex); - } - - /// - /// Attempts to find the specified constructor. Returns null if no match was found. - /// - /// The signature. - /// true if XXXX, false otherwise. - public ConstructorMetadata? Find(IReadOnlyList signature) - { - if (signature == null) - throw new ArgumentNullException(nameof(signature), $"{nameof(signature)} is null"); - - foreach (var item in m_Constructors) - { - if (item.Signature.Length != signature.Count) - continue; - - var isMatch = true; - for (var i = 0; i < item.Signature.Length; i++) - { - if (item.Signature[i] != signature[i]) - { - isMatch = false; - break; - } - } - if (isMatch) - return item; - } - return null; - } - - /// - /// Attempts to find the specified constructor. Returns null if no match was found. - /// - /// The signature. - public ConstructorMetadata? Find(params Type[] signature) - { - if (signature == null) - throw new ArgumentNullException(nameof(signature), $"{nameof(signature)} is null"); - - foreach (var item in m_Constructors) - { - if (item.Signature.Length != signature.Length) - continue; - - var isMatch = true; - for (var i = 0; i < item.Signature.Length; i++) - { - if (item.Signature[i] != signature[i]) - { - isMatch = false; - break; - } - } - if (isMatch) - return item; - } - return null; - } - - /// - /// Returns an enumerator that iterates through the collection. - /// - /// A that can be used to iterate through the collection. - public IEnumerator GetEnumerator() - { - return ((ICollection)m_Constructors).GetEnumerator(); - } - - IEnumerator IEnumerable.GetEnumerator() - { - return ((ICollection)m_Constructors).GetEnumerator(); - } - - bool ICollection.Remove(ConstructorMetadata item) - { - throw new NotSupportedException(); - } + readonly ImmutableArray m_Constructors; + + internal ConstructorMetadataCollection(IEnumerable constructors) + { + m_Constructors = ImmutableArray.CreateRange(constructors.Where(c => c.IsPublic).Select(c => new ConstructorMetadata(c))); + DefaultConstructor = m_Constructors.SingleOrDefault(c => c.Signature.Length == 0); + } + + /// + /// Gets the number of elements contained in the . + /// + /// The count. + public int Count => m_Constructors.Length; + + /// + /// Gets a the default constructor, if it has one.. + /// + public ConstructorMetadata? DefaultConstructor { get; } + + /// + /// Gets a value indicating whether this instance has a default constructor. + /// + /// true if this instance has a default constructor; otherwise, false. + public bool HasDefaultConstructor => DefaultConstructor != null; + + /// + /// Gets a value indicating whether the is read-only. + /// + /// true if this instance is read only; otherwise, false. + public bool IsReadOnly => true; + + /// + /// Gets the at the specified index. + /// + /// The index. + /// ConstructorMetadata. + public ConstructorMetadata this[int index] => m_Constructors[index]; + + ConstructorMetadata IList.this[int index] { get => m_Constructors[index]; set => throw new NotImplementedException(); } + + void ICollection.Add(ConstructorMetadata item) => throw new NotSupportedException(); + + void ICollection.Clear() => throw new NotSupportedException(); + + /// + /// Determines whether the contains a specific value. + /// + /// The object to locate in the . + /// true if is found in the ; otherwise, false. + public bool Contains(ConstructorMetadata item) + { + if (item == null) + throw new ArgumentNullException(nameof(item), $"{nameof(item)} is null."); + + return m_Constructors.Contains(item); + } + + /// + /// Determines whether [contains] [the specified signature]. + /// + /// The signature. + /// true if [contains] [the specified signature]; otherwise, false. + public bool Contains(IReadOnlyList signature) + { + if (signature == null) + throw new ArgumentNullException(nameof(signature), $"{nameof(signature)} is null"); + + return Find(signature) != null; + } + + /// + /// Determines whether [contains] [the specified signature]. + /// + /// The signature. + /// true if [contains] [the specified signature]; otherwise, false. + public bool Contains(params Type[] signature) => Find(signature) != null; + + /// + /// Copies the elements of the to an , starting at a particular index. + /// + /// The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. + /// The zero-based index in at which copying begins. + public void CopyTo(ConstructorMetadata[] array, int arrayIndex) + { + if (array == null) + throw new ArgumentNullException(nameof(array), $"{nameof(array)} is null"); + + m_Constructors.CopyTo(array, arrayIndex); + } + + /// + /// Attempts to find the specified constructor. Returns null if no match was found. + /// + /// The signature. + /// true if XXXX, false otherwise. + public ConstructorMetadata? Find(IReadOnlyList signature) + { + if (signature == null) + throw new ArgumentNullException(nameof(signature), $"{nameof(signature)} is null"); + + foreach (var item in m_Constructors) + { + if (item.Signature.Length != signature.Count) + continue; + + var isMatch = true; + for (var i = 0; i < item.Signature.Length; i++) + { + if (item.Signature[i] != signature[i]) + { + isMatch = false; + break; + } + } + if (isMatch) + return item; + } + return null; + } + + /// + /// Attempts to find the specified constructor. Returns null if no match was found. + /// + /// The signature. + public ConstructorMetadata? Find(params Type[] signature) + { + if (signature == null) + throw new ArgumentNullException(nameof(signature), $"{nameof(signature)} is null"); + + foreach (var item in m_Constructors) + { + if (item.Signature.Length != signature.Length) + continue; + + var isMatch = true; + for (var i = 0; i < item.Signature.Length; i++) + { + if (item.Signature[i] != signature[i]) + { + isMatch = false; + break; + } + } + if (isMatch) + return item; + } + return null; + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return ((ICollection)m_Constructors).GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return ((ICollection)m_Constructors).GetEnumerator(); + } + + /// + /// Determines the index of a specific item in the collection. />. + /// + /// The object to locate in the collection />. + /// The index of if found in the list; otherwise, -1. + public int IndexOf(ConstructorMetadata item) => m_Constructors.IndexOf(item); + + void IList.Insert(int index, ConstructorMetadata item) => throw new NotImplementedException(); + + bool ICollection.Remove(ConstructorMetadata item) => throw new NotSupportedException(); + + void IList.RemoveAt(int index) => throw new NotImplementedException(); } diff --git a/Tortuga.Anchor/Tortuga.Anchor/Metadata/PropertyMetadata.cs b/Tortuga.Anchor/Tortuga.Anchor/Metadata/PropertyMetadata.cs index 6095612b..2e22147b 100644 --- a/Tortuga.Anchor/Tortuga.Anchor/Metadata/PropertyMetadata.cs +++ b/Tortuga.Anchor/Tortuga.Anchor/Metadata/PropertyMetadata.cs @@ -11,50 +11,51 @@ namespace Tortuga.Anchor.Metadata; #pragma warning disable IDE0057 // Use range operator #endif - /// /// This is a cache of metadata about a specific property. /// public partial class PropertyMetadata { - readonly List m_CalculatedFieldsBuilder = new(); - readonly MethodInfo? m_GetMethod; - readonly MethodInfo? m_SetMethod; + readonly List m_CalculatedFieldsBuilder = new(); + readonly MethodInfo? m_GetMethod; + readonly MethodInfo? m_SetMethod; + + internal PropertyMetadata(PropertyInfo info, int propertyIndex) + { + PropertyInfo = info; + PropertyIndex = propertyIndex; - internal PropertyMetadata(PropertyInfo info, int propertyIndex) - { - PropertyInfo = info; - PropertyIndex = propertyIndex; + Attributes = ImmutableArray.CreateRange(Attribute.GetCustomAttributes(PropertyInfo, true)); - Validators = ImmutableArray.CreateRange(info.GetCustomAttributes(typeof(ValidationAttribute), true).OfType()); + Validators = ImmutableArray.CreateRange(Attributes.OfType()); - IsIndexed = info.GetIndexParameters().Length > 0; + IsIndexed = info.GetIndexParameters().Length > 0; - m_GetMethod = PropertyInfo.GetMethod; - m_SetMethod = PropertyInfo.SetMethod; + m_GetMethod = PropertyInfo.GetMethod; + m_SetMethod = PropertyInfo.SetMethod; - PropertyType = info.PropertyType; + PropertyType = info.PropertyType; - var name = info.ToString()!; - Name = name.Substring(name.IndexOf(" ", StringComparison.Ordinal) + 1); + var name = info.ToString()!; + Name = name.Substring(name.IndexOf(" ", StringComparison.Ordinal) + 1); - if (IsIndexed) - PropertyChangedEventArgs = new PropertyChangedEventArgs(info.Name + "[]"); - else - PropertyChangedEventArgs = new PropertyChangedEventArgs(info.Name); + if (IsIndexed) + PropertyChangedEventArgs = new PropertyChangedEventArgs(info.Name + "[]"); + else + PropertyChangedEventArgs = new PropertyChangedEventArgs(info.Name); - if (IsIndexed) - PropertyChangingEventArgs = new PropertyChangingEventArgs(info.Name + "[]"); - else - PropertyChangingEventArgs = new PropertyChangingEventArgs(info.Name); + if (IsIndexed) + PropertyChangingEventArgs = new PropertyChangingEventArgs(info.Name + "[]"); + else + PropertyChangingEventArgs = new PropertyChangingEventArgs(info.Name); - IsKey = info.GetCustomAttributes(typeof(KeyAttribute), true).Length > 0; + IsKey = info.GetCustomAttributes(typeof(KeyAttribute), true).Length > 0; var doNotMap = info.GetCustomAttributes(typeof(NotMappedAttribute), true).Length > 0; if (!doNotMap) { var column = (ColumnAttribute?)info.GetCustomAttributes(typeof(ColumnAttribute), true).SingleOrDefault(); - MappedColumnName = column != null ? column.Name : Name; + MappedColumnName = (column != null && !column.Name.IsNullOrEmpty()) ? column.Name : Name; } var decomposeAttribute = (DecomposeAttribute?)(info.GetCustomAttributes(typeof(DecomposeAttribute), true).FirstOrDefault()); if (decomposeAttribute != null) @@ -65,371 +66,379 @@ internal PropertyMetadata(PropertyInfo info, int propertyIndex) IgnoreOnInsert = info.GetCustomAttributes(typeof(IgnoreOnInsertAttribute), true).Length > 0; IgnoreOnUpdate = info.GetCustomAttributes(typeof(IgnoreOnUpdateAttribute), true).Length > 0; - if (!PropertyType.IsValueType) - { - var nullableAttribute = info.GetCustomAttributes().Where(a => a.GetType().FullName == "System.Runtime.CompilerServices.NullableAttribute").FirstOrDefault(); - - if (nullableAttribute != null) - { - byte[] bytes = (byte[])nullableAttribute.GetType().GetField("NullableFlags")!.GetValue(nullableAttribute)!; - - if (bytes.Length >= 1) - IsReferenceNullable = bytes[0] switch - { - 0 => (bool?)null, - 1 => false, - 2 => true, - _ => null - }; - - NullabilityFlags = ImmutableArray.Create(bytes); - } - } - } - - /// - /// Returns true of this property needs to trigger updates to calculated fields - /// - public bool AffectsCalculatedFields - { - get { return m_CalculatedFieldsBuilder.Count > 0; } - } - - /// - /// This returns a list of calculated fields that need to be updated when this property is changed. - /// - public ImmutableArray CalculatedFields { get; private set; } - - /// - /// Returns true if there is a public getter and it is not an indexed property. - /// - public bool CanRead - { - get { return m_GetMethod?.IsPublic == true && m_GetMethod?.IsFamily == false && !IsIndexed; } - } - - /// - /// Returns true if there is a getter and it is not an indexed property, even if that getter isn't public. - /// - public bool CanReadRestricted - { - get { return m_GetMethod != null && !IsIndexed; } - } - - - /// - /// Returns true if there is a public getter and it is an indexed property. - /// - public bool CanReadIndexed - { - get { return m_GetMethod?.IsPublic == true && m_GetMethod?.IsFamily == false && IsIndexed; } - } - - /// - /// Returns true if there is a getter and it is an indexed property, even if that getter isn't public. - /// - public bool CanReadIndexedAndRestricted - { - get { return m_GetMethod != null && IsIndexed; } - } - - /// - /// Returns true is there is a public setter and it is not an indexed property. - /// - public bool CanWrite - { - get { return m_SetMethod?.IsPublic == true && m_SetMethod?.IsFamily == false && !IsIndexed; } - } - - /// - /// Returns true is there is a setter and it is not an indexed property, even if that setter isn't public. - /// - public bool CanWriteRestricted - { - get { return m_SetMethod != null && !IsIndexed; } - } - - /// - /// Returns true is there is a public setter and it is an indexed property - /// - public bool CanWriteIndexed - { - get { return m_SetMethod?.IsPublic == true && m_SetMethod?.IsFamily == false && IsIndexed; } - } - - /// - /// Returns true is there is a setter and and it is an indexed property, even if that setter isn't public. - /// - public bool CanWriteIndexedAndRestricted - { - get { return m_SetMethod != null && !IsIndexed; } - } - - /// - /// Gets a value indicating whether to map this object's columns to the child object's properties. - /// - public bool Decompose { get; } - - /// - /// Gets the decomposition prefix. - /// - /// The decomposition prefix. - public string? DecompositionPrefix { get; } - - /// - /// Gets a value indicating whether to ignore this property during insert operations. - /// - public bool IgnoreOnInsert { get; } - - /// - /// Gets a value indicating whether to ignore this property during update operations. - /// - public bool IgnoreOnUpdate { get; } - - /// - /// Returns true if this represents an indexed property - /// - public bool IsIndexed { get; } - - /// - /// Property implements the Key attribute. - /// - public bool IsKey { get; } - - /// - /// Gets a value indicating whether this is nullable reference type. - /// - /// null if null agnostic, true if nullable; false is non-nullable. - public bool? IsReferenceNullable { get; } - - /// - /// Column that this attribute is mapped to. Defaults to the property's name, but may be overridden by ColumnAttribute. - /// - public string? MappedColumnName { get; } - - /// - /// Public name of the property - /// - public string Name { get; } - - /// - /// Gets the nullability flags from the property's NullableAttribute. - /// - /// The nullability flags. - /// See https://github.com/dotnet/roslyn/blob/master/docs/features/nullable-metadata.md for more information. - public ImmutableArray NullabilityFlags { get; } - - /// - /// Gets a cached instance of PropertyChangedEventArgs - /// - /// For indexed properties such as "Item [Int32]" the property name will be reduced to "Item[]" to match ObservableCollection. - public PropertyChangedEventArgs PropertyChangedEventArgs { get; } - - /// - /// Gets a cached instance of PropertyChangingEventArgs - /// - /// For indexed properties such as "Item [Int32]" the property name will be reduced to "Item[]" to match ObservableCollection. - public PropertyChangingEventArgs PropertyChangingEventArgs { get; } - - /// - /// Gets the type of this property. - /// - public Type PropertyType { get; } - - /// - /// List of validators that apply to the property - /// - public ImmutableArray Validators { get; } - - /// - /// Cached PropertyInfo for the property. - /// - internal PropertyInfo PropertyInfo { get; } - - /// Creates the delegate setter. - /// The type of the target object. - /// The type of the property. - /// Func<TTarget, TProperty>. - /// CanRead is false for property {Name} - /// This is much faster than calling InvokeGet, but you must provide the correct TTarget and TProperty arguments. - public Func CreateDelegateGetter() - { - if (CanRead) - { - return (Func)Delegate.CreateDelegate(typeof(Func), m_GetMethod!); - } - else - throw new InvalidOperationException($"CanRead is false for property {Name}"); - } - - /// Creates the delegate setter for an indexed property. - /// The type of the target object. - /// The type of the index parameter. - /// The type of the property. - /// Func<TTarget, TProperty>. - /// CanReadIndexed is false for property {Name} - /// This is much faster than calling InvokeGet, but you must provide the correct TTarget and TProperty arguments. - public Func CreateDelegateGetter() - { - if (CanReadIndexed) - { - return (Func)Delegate.CreateDelegate(typeof(Func), m_GetMethod!); - } - else - throw new InvalidOperationException($"CanReadIndexed is false for property {Name}"); - } - - /// Creates the delegate setter. - /// The type of the target object. - /// The type of the property. - /// Action<TTarget, TProperty>. - /// CanWrite is false for property {Name} - /// This is much faster than calling InvokeSet, but you must provide the correct TTarget and TProperty arguments. - public Action CreateDelegateSetter() - { - if (CanWrite) - { - return (Action)Delegate.CreateDelegate(typeof(Action), m_SetMethod!); - } - else - throw new InvalidOperationException($"CanWrite is false for property {Name}"); - } - - /// Creates the delegate setter for an indexed property. - /// The type of the target object. - /// The type of the index parameter. - /// The type of the property. - /// Action<TTarget, TProperty>. - /// CanWriteIndexed is false for property {Name} - /// This is much faster than calling InvokeSet, but you must provide the correct TTarget and TProperty arguments. - public Action CreateDelegateSetter() - { - if (CanWriteIndexed) - { - return (Action)Delegate.CreateDelegate(typeof(Action), m_SetMethod!); - } - else - throw new InvalidOperationException($"CanWriteIndexed is false for property {Name}"); - } - - /// - /// Invokes this property's getter on the supplied object - /// - /// The target. - /// System.Object. - /// Error getting property " + Name - /// CanRead and CanReadRestricted is false on property {Name}. - public object? InvokeGet(object target) - { - if (CanRead || CanReadRestricted) - { - try - { - return m_GetMethod!.Invoke(target, null); - } - catch (ArgumentException ex) - { - throw new ArgumentException("Error getting property " + Name, ex); - } - } - else - throw new InvalidOperationException($"CanRead is false on property {Name}."); - } - - /// - /// Invokes this property's getter on the supplied object - /// - /// The target. - /// The index. - /// System.Object. - /// Error getting property " + Name - /// CanReadIndexed and CanReadIndexedRestrictedis false on property {Name}. - public object? InvokeGet(object target, object? index) - { - if (CanReadIndexed || CanReadIndexedAndRestricted) - { - try - { - return m_GetMethod!.Invoke(target, new object?[] { index }); - } - catch (ArgumentException ex) - { - throw new ArgumentException("Error getting property " + Name, ex); - } - } - else - throw new InvalidOperationException($"CanReadIndexed is false on property {Name}."); - } - - /// - /// Invokes this property's setter on the supplied object - /// - /// The target. - /// The value. - /// System.Object. - /// Error setting property " + Name - /// CanWrite and CanWriteRestricted is false for property {Name} - public void InvokeSet(object target, object? value) - { - if (CanWrite || CanWriteRestricted) - { - try - { - m_SetMethod!.Invoke(target, new object?[] { value }); - } - catch (ArgumentException ex) - { - throw new ArgumentException("Error setting property " + Name, ex); - } - } - else - throw new InvalidOperationException($"CanWrite is false for property {Name}"); - } - - /// - /// Invokes this property's setter on the supplied object - /// - /// The target. - /// The index. - /// The value. - /// System.Object. - /// Error setting property " + Name - /// CanWriteIndexed and CanWriteIndexedRestricted is false for property {Name} - public void InvokeSet(object target, object? index, object? value) - { - if (CanWriteIndexed || CanWriteIndexedAndRestricted) - { - try - { - m_SetMethod!.Invoke(target, new object?[] { index, value }); - } - catch (ArgumentException ex) - { - throw new ArgumentException("Error setting property " + Name, ex); - } - } - else - throw new InvalidOperationException($"CanWriteIndexed is false for property {Name}"); - } - - /// - /// Adds a property to the list of calculated values watching this property. - /// - /// - internal void AddCalculatedField(PropertyMetadata affectedProperty) - { - m_CalculatedFieldsBuilder.Add(affectedProperty); - } - - internal void EndInit() - { - CalculatedFields = ImmutableArray.CreateRange(m_CalculatedFieldsBuilder); - } - - /// - /// Gets or sets the index of the property. - /// - /// The index of the property. - /// Used by property bags and other things that need to store property values in arrays. - public int PropertyIndex { get; } + if (!PropertyType.IsValueType) + { + var nullableAttribute = info.GetCustomAttributes().Where(a => a.GetType().FullName == "System.Runtime.CompilerServices.NullableAttribute").FirstOrDefault(); + + if (nullableAttribute != null) + { + byte[] bytes = (byte[])nullableAttribute.GetType().GetField("NullableFlags")!.GetValue(nullableAttribute)!; + + if (bytes.Length >= 1) + IsReferenceNullable = bytes[0] switch + { + 0 => (bool?)null, + 1 => false, + 2 => true, + _ => null + }; + + NullabilityFlags = ImmutableArray.Create(bytes); + } + } + } + + /// + /// Returns true of this property needs to trigger updates to calculated fields + /// + public bool AffectsCalculatedFields => m_CalculatedFieldsBuilder.Count > 0; + + /// + /// This returns a list of calculated fields that need to be updated when this property is changed. + /// + public ImmutableArray CalculatedFields { get; private set; } + + /// + /// Returns true if there is a public getter and it is not an indexed property. + /// + public bool CanRead + { + get { return m_GetMethod?.IsPublic == true && m_GetMethod?.IsFamily == false && !IsIndexed; } + } + + /// + /// Returns true if there is a getter and it is not an indexed property, even if that getter isn't public. + /// + public bool CanReadRestricted + { + get { return m_GetMethod != null && !IsIndexed; } + } + + /// + /// Returns true if there is a public getter and it is an indexed property. + /// + public bool CanReadIndexed + { + get { return m_GetMethod?.IsPublic == true && m_GetMethod?.IsFamily == false && IsIndexed; } + } + + /// + /// Returns true if there is a getter and it is an indexed property, even if that getter isn't public. + /// + public bool CanReadIndexedAndRestricted + { + get { return m_GetMethod != null && IsIndexed; } + } + + /// + /// Returns true is there is a public setter and it is not an indexed property. + /// + public bool CanWrite + { + get { return m_SetMethod?.IsPublic == true && m_SetMethod?.IsFamily == false && !IsIndexed; } + } + + /// + /// Returns true is there is a setter and it is not an indexed property, even if that setter isn't public. + /// + public bool CanWriteRestricted + { + get { return m_SetMethod != null && !IsIndexed; } + } + + /// + /// Returns true is there is a public setter and it is an indexed property + /// + public bool CanWriteIndexed + { + get { return m_SetMethod?.IsPublic == true && m_SetMethod?.IsFamily == false && IsIndexed; } + } + + /// + /// Returns true is there is a setter and and it is an indexed property, even if that setter isn't public. + /// + public bool CanWriteIndexedAndRestricted + { + get { return m_SetMethod != null && !IsIndexed; } + } + + /// + /// Gets a value indicating whether to map this object's columns to the child object's properties. + /// + public bool Decompose { get; } + + /// + /// Gets the decomposition prefix. + /// + /// The decomposition prefix. + public string? DecompositionPrefix { get; } + + /// + /// Gets a value indicating whether to ignore this property during insert operations. + /// + public bool IgnoreOnInsert { get; } + + /// + /// Gets a value indicating whether to ignore this property during update operations. + /// + public bool IgnoreOnUpdate { get; } + + /// + /// Returns true if this represents an indexed property + /// + public bool IsIndexed { get; } + + /// + /// Property implements the Key attribute. + /// + public bool IsKey { get; } + + /// + /// Gets a value indicating whether this is nullable reference type. + /// + /// null if null agnostic, true if nullable; false is non-nullable. + public bool? IsReferenceNullable { get; } + + /// + /// Column that this attribute is mapped to. Defaults to the property's name, but may be overridden by ColumnAttribute. + /// + public string? MappedColumnName { get; } + + /// + /// Public name of the property + /// + public string Name { get; } + + /// + /// Gets the nullability flags from the property's NullableAttribute. + /// + /// The nullability flags. + /// See https://github.com/dotnet/roslyn/blob/master/docs/features/nullable-metadata.md for more information. + public ImmutableArray NullabilityFlags { get; } + + /// + /// Gets a cached instance of PropertyChangedEventArgs + /// + /// For indexed properties such as "Item [Int32]" the property name will be reduced to "Item[]" to match ObservableCollection. + public PropertyChangedEventArgs PropertyChangedEventArgs { get; } + + /// + /// Gets a cached instance of PropertyChangingEventArgs + /// + /// For indexed properties such as "Item [Int32]" the property name will be reduced to "Item[]" to match ObservableCollection. + public PropertyChangingEventArgs PropertyChangingEventArgs { get; } + + /// + /// Gets the type of this property. + /// + public Type PropertyType { get; } + + /// + /// List of validators that apply to the property + /// + public ImmutableArray Validators { get; } + + /// + /// Complete list of attributes that apply to the property + /// + public ImmutableArray Attributes { get; } + + /// + /// Cached PropertyInfo for the property. + /// + public PropertyInfo PropertyInfo { get; } + + /// Creates the delegate setter. + /// The type of the target object. + /// The type of the property. + /// Func<TTarget, TProperty>. + /// CanRead is false for property {Name} + /// This is much faster than calling InvokeGet, but you must provide the correct TTarget and TProperty arguments. + public Func CreateDelegateGetter() + { + if (CanRead) + { + return (Func)Delegate.CreateDelegate(typeof(Func), m_GetMethod!); + } + else + throw new InvalidOperationException($"CanRead is false for property {Name}"); + } + + /// Creates the delegate setter for an indexed property. + /// The type of the target object. + /// The type of the index parameter. + /// The type of the property. + /// Func<TTarget, TProperty>. + /// CanReadIndexed is false for property {Name} + /// This is much faster than calling InvokeGet, but you must provide the correct TTarget and TProperty arguments. + public Func CreateDelegateGetter() + { + if (CanReadIndexed) + { + return (Func)Delegate.CreateDelegate(typeof(Func), m_GetMethod!); + } + else + throw new InvalidOperationException($"CanReadIndexed is false for property {Name}"); + } + + /// Creates the delegate setter. + /// The type of the target object. + /// The type of the property. + /// Action<TTarget, TProperty>. + /// CanWrite is false for property {Name} + /// This is much faster than calling InvokeSet, but you must provide the correct TTarget and TProperty arguments. + public Action CreateDelegateSetter() + { + if (CanWrite) + { + return (Action)Delegate.CreateDelegate(typeof(Action), m_SetMethod!); + } + else + throw new InvalidOperationException($"CanWrite is false for property {Name}"); + } + + /// Creates the delegate setter for an indexed property. + /// The type of the target object. + /// The type of the index parameter. + /// The type of the property. + /// Action<TTarget, TProperty>. + /// CanWriteIndexed is false for property {Name} + /// This is much faster than calling InvokeSet, but you must provide the correct TTarget and TProperty arguments. + public Action CreateDelegateSetter() + { + if (CanWriteIndexed) + { + return (Action)Delegate.CreateDelegate(typeof(Action), m_SetMethod!); + } + else + throw new InvalidOperationException($"CanWriteIndexed is false for property {Name}"); + } + + /// + /// Invokes this property's getter on the supplied object + /// + /// The target. + /// System.Object. + /// Error getting property " + Name + /// CanRead and CanReadRestricted is false on property {Name}. + public object? InvokeGet(object target) + { + if (CanRead || CanReadRestricted) + { + try + { + return m_GetMethod!.Invoke(target, null); + } + catch (ArgumentException ex) + { + throw new ArgumentException("Error getting property " + Name, ex); + } + } + else + throw new InvalidOperationException($"CanRead is false on property {Name}."); + } + + /// + /// Invokes this property's getter on the supplied object + /// + /// The target. + /// The index. + /// System.Object. + /// Error getting property " + Name + /// CanReadIndexed and CanReadIndexedRestrictedis false on property {Name}. + public object? InvokeGet(object target, object? index) + { + if (CanReadIndexed || CanReadIndexedAndRestricted) + { + try + { + return m_GetMethod!.Invoke(target, new object?[] { index }); + } + catch (ArgumentException ex) + { + throw new ArgumentException("Error getting property " + Name, ex); + } + } + else + throw new InvalidOperationException($"CanReadIndexed is false on property {Name}."); + } + + /// + /// Invokes this property's setter on the supplied object + /// + /// The target. + /// The value. + /// System.Object. + /// Error setting property " + Name + /// CanWrite and CanWriteRestricted is false for property {Name} + public void InvokeSet(object target, object? value) + { + if (CanWrite || CanWriteRestricted) + { + try + { + m_SetMethod!.Invoke(target, new object?[] { value }); + } + catch (ArgumentException ex) + { + throw new ArgumentException("Error setting property " + Name, ex); + } + } + else + throw new InvalidOperationException($"CanWrite is false for property {Name}"); + } + + /// + /// Invokes this property's setter on the supplied object + /// + /// The target. + /// The index. + /// The value. + /// System.Object. + /// Error setting property " + Name + /// CanWriteIndexed and CanWriteIndexedRestricted is false for property {Name} + public void InvokeSet(object target, object? index, object? value) + { + if (CanWriteIndexed || CanWriteIndexedAndRestricted) + { + try + { + m_SetMethod!.Invoke(target, new object?[] { index, value }); + } + catch (ArgumentException ex) + { + throw new ArgumentException("Error setting property " + Name, ex); + } + } + else + throw new InvalidOperationException($"CanWriteIndexed is false for property {Name}"); + } + + /// + /// Adds a property to the list of calculated values watching this property. + /// + /// + /// This must not be called after EndInit is called. + internal void AddCalculatedField(PropertyMetadata affectedProperty) + { + if (CalculatedFields != null) + throw new InvalidOperationException("EndInit was previosuly called. No further changes are allowed."); + + m_CalculatedFieldsBuilder.Add(affectedProperty); + } + + /// + /// This freezes the object, preventing further changes. + /// + internal void EndInit() + { + CalculatedFields = ImmutableArray.CreateRange(m_CalculatedFieldsBuilder); + } + + /// + /// Gets or sets the index of the property. + /// + /// The index of the property. + /// Used by property bags and other things that need to store property values in arrays. + public int PropertyIndex { get; } } diff --git a/Tortuga.Anchor/Tortuga.Anchor/Tortuga.Anchor.csproj b/Tortuga.Anchor/Tortuga.Anchor/Tortuga.Anchor.csproj index d2be5990..b854f395 100644 --- a/Tortuga.Anchor/Tortuga.Anchor/Tortuga.Anchor.csproj +++ b/Tortuga.Anchor/Tortuga.Anchor/Tortuga.Anchor.csproj @@ -3,7 +3,7 @@ net462;netstandard2.0;netcoreapp3.1;net6.0 David Tomcik, Jonathan Allen - Tortuga Technologies + Tortuga Research Commons and data modeling library for the Tortuga project. MVVM,Reflection 10.0 @@ -15,13 +15,13 @@ latest - 4.0.0 - 4.0.0 - 4.0.0.0 + 4.1.0 + 4.1.0 + 4.1.0.0 MIT - David Tomcik, Jonathan Allen 2016-2021 + David Tomcik, Jonathan Allen 2016-2022 https://github.com/TortugaResearch/Anchor @@ -46,9 +46,6 @@ NULL_MISSING;HASHCODE_MISSING - - ORDINAL_STRINGS - diff --git a/docs/API/WebKI.xml b/docs/API/WebKI.xml index 30dec141..10981c67 100644 --- a/docs/API/WebKI.xml +++ b/docs/API/WebKI.xml @@ -150,6 +150,7 @@ + @@ -371,10 +372,13 @@ + + + @@ -410,6 +414,7 @@ + @@ -665,6 +670,7 @@ + @@ -760,6 +766,7 @@ + @@ -1081,6 +1088,7 @@ + @@ -1090,6 +1098,7 @@ + @@ -1114,6 +1123,7 @@ + diff --git a/docs/API/WebTOC.xml b/docs/API/WebTOC.xml index 47fd3af6..4e7a8f8a 100644 --- a/docs/API/WebTOC.xml +++ b/docs/API/WebTOC.xml @@ -1,11 +1,11 @@  - - + + - - + + @@ -22,7 +22,7 @@ - + @@ -30,123 +30,123 @@ - + - + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - - + + - + @@ -155,45 +155,45 @@ - - + + - + - + - + - + - + - + - - + + @@ -205,7 +205,7 @@ - + @@ -213,113 +213,113 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + @@ -329,81 +329,81 @@ - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - + @@ -411,87 +411,87 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + @@ -507,68 +507,72 @@ - + - + - + - - + + - + + - + + + - + - + - + - + - - + + - + - + - + - + + @@ -591,14 +595,15 @@ + - + - - + + @@ -606,68 +611,68 @@ - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -676,27 +681,27 @@ - + - + - + - + - + @@ -704,16 +709,16 @@ - + - + - + @@ -722,33 +727,33 @@ - + - + - + - + - - + + - + - + @@ -758,28 +763,28 @@ - + - + - + - + - + - + @@ -787,28 +792,28 @@ - + - + - + - + - + - + @@ -816,25 +821,25 @@ - + - + - + - + - + @@ -843,47 +848,47 @@ - + - + - + - + - + - + - + - + - + - + @@ -891,32 +896,32 @@ - + - + - + - + - + - + @@ -926,10 +931,10 @@ - + - + @@ -937,12 +942,12 @@ - + - + - + diff --git a/docs/API/fti/FTI_100.json b/docs/API/fti/FTI_100.json index b8f0ee4d..ac50c3ea 100644 --- a/docs/API/fti/FTI_100.json +++ b/docs/API/fti/FTI_100.json @@ -1 +1 @@ -{"dictionary":[65554,2883586,2949122,7536645,7602185,7667725,7733253,7798789,7864329,7929861,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,13238276,13303812,29556739,32636930,33226770,33292291,33357827,33423363,33488899,36896770,36962306,37027842,37093378,37158914,37224450,42270722,42729475,44302338,44367874,44892165,45219841,45285377],"description":[65539,131076,196610,262148,327684,393217,458755,524290,589825,655361,720897,786433,851970,917507,983042,1048578,1114113,1179649,1245185,1310721,1376257,1441793,1507330,1572866,1638402,1703938,1769473,1835009,1900546,1966081,2031618,2097153,2162690,2228226,2293762,2359300,2424836,2490370,2555908,2621444,2686980,2752516,2818052,2883588,2949124,3014657,3080196,3145732,3211266,3276804,3342340,3407874,3473410,3538946,3604482,3670018,3735553,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,7405569,7471105,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636930,32702466,32768001,32833539,32899074,32964610,33030147,33095682,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,46858241,48300033,48627713,48955393],"determines":[65538,262146,393217,458753,2031619,2883585,2949121,8257537,8323073,10158081,10485761,11730945,11927553,16646145,16711681,16777217,23396353,29556738,29753346,29884417,29949953,31195139,31916033,31981569,33357826,33882113,34537475],"defined":[131073,196609,2424836,2621444,2686977,2818052,3342337,9633793,10354689,18677761,18743297,18808833,19660801,19726337,19791873,20185089,21757953,21823489,21889025,23134209,23330817,24313857,25034753,29622273,29687809,31522817,31653889,31850497,32309249,34865155,34996227,35258371],"dispose":[196609,10354691,29687809],"destination":[262146,8388610,10223621,10289155,12386305,16842753,18022401,29753346,33816578],"dead":[524289,12189697,16318465,16384001,30015489],"dataannotations":[983041,14352386,14417922,14483458,21495809,21561345,22609921,22675457,30343169,32768001,34471937,45809666,48562177,48758785],"detachfromevent":[1048577,1114113,1507329,1638401,14680067,14876675,15663107,15990787,30408705,30474241,30801921,30932993],"detach":[1048577,1114113,1507329,1638401,14680065,14876673,15663105,15990785,30408705,30474241,30801921,30932993],"dispatches":[1048577,1114113,1507329,1638401,14942209,30408705,30474241,30801921,30932993],"delegate":[1572865,2162692,9633793,15794177,17367041,17432577,17498113,17563649,20774913,25624577,30867457,31326212,32833537,33030146,46661635,48693252],"disposed":[1835010,3735554,16187393,16252929,28901377,28966913,31064066,32571394,36700162],"database":[1900545,33030146,38141953,43384833,48562177,48758785],"default":[2031617,2359298,2424834,2555906,2621442,2686978,2818050,2883586,2949122,3080194,3145730,3211266,3276803,3342341,6946820,7471106,8716289,8781825,20250626,20316163,20447233,20512769,22020098,22151171,22413313,22478849,24641538,24707075,24838145,26214401,26279937,26345473,26411009,31457282,31522818,31588354,31653890,31719426,31850498,31916034,31981570,32047106,32112642,32243714,32309250,33030146,35913731,37027841,37093377,37486593,39190530,41025537,41091073,42663937,43515905,48431105,48496641],"decompose":[2162689,33030145,38141953,39976963,43581441,47448065],"decompositionprefix":[2162689,40042499,43581441],"decomposition":[2162689,40042498,43581441],"defaults":[2162689,40435713,43581441],"deserialized":[2359297,18546689,31457281],"discards":[2359297,2424833,2555906,2621442,18612225,18939905,19333121,19595265,19988481,20119553,31457281,31522817,31588354,31653890],"decomposeattribute":[2490375,19005445,19070981,33030145,34930695,41615362,43909123,47448068],"directly":[2883585,2949121,6160385,9371649,9895937,9961473,33095683,42270721,44302337,44367873,46858241,47775745,47841281,47906817],"derived":[3211265,26148865,32178177],"datetime":[3604483,27197450,27394054,32440323,36175875],"date":[3604484,27197441,27262977,27328513,27394049,32440324,36175874,36241410],"datetimeoffset":[3604483,27262982,27328522,32440323,36241411],"decimal":[3604485,27459591,27525131,32440325,36306949],"delay":[3735558,28377093,28442630,28508165,28573701,28639237,28704770,28770310,28835846,28901380,28966913,32571398,36503556,36634626],"delaysafe":[3735554,28901380,28966916,32571394,36700163],"dll":[3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465],"dataerrorschangedeventargs":[4390914,4521986,4653058],"deepclone":[6225923,17104897,17170433,46858241],"deep":[6225921,46858241],"depth":[6225921],"discardemptyandnull":[7208963,48955393],"discardnulls":[7274499,48955393],"dimensional":[8388609,12386305,16842753,18022401],"defines":[9633793],"data":[10682369,11796481,11993089,26148865],"designed":[12845057,33030145,47513601],"disguised":[12845057],"defaultvalue":[20316163,22151171,24707075],"declarative":[21495809,21561345,22609921,22675457],"detected":[23920641,23986177,24051713],"desired":[27852801,47775745,47906817],"determine":[32702465,33030145,45613057,47316993],"delegates":[32833537,33030145],"dialogs":[33030146,47513601,47579137],"different":[33030146,48562177,48758785],"deal":[33095681,47841281],"dotnet":[40566785],"docs":[40566785],"directional":[45219841,45285377]} \ No newline at end of file +{"dictionary":[65554,2883586,2949122,7536645,7602185,7667725,7733253,7798789,7864329,7929861,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,13238276,13303812,29622275,32702466,33292306,33357827,33423363,33488899,33554435,36962306,37027842,37093378,37158914,37224450,37289986,42598402,43057155,44630018,44695554,45219845,45547521,45613057],"description":[65539,131076,196610,262148,327684,393217,458755,524290,589825,655361,720897,786433,851970,917507,983042,1048578,1114113,1179649,1245185,1310721,1376257,1441793,1507330,1572866,1638402,1703938,1769473,1835009,1900546,1966081,2031618,2097153,2162690,2228226,2293762,2359300,2424836,2490370,2555908,2621444,2686980,2752516,2818052,2883588,2949124,3014657,3080196,3145732,3211266,3276804,3342340,3407874,3473410,3538946,3604482,3670018,3735553,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,7405569,7471105,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702466,32768002,32833537,32899075,32964610,33030146,33095683,33161218,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,47185921,48627713,48955393,49283073],"determines":[65538,262146,393217,458753,2031620,2883585,2949121,8257537,8323073,10158081,10485761,11730945,11927553,16646145,16711681,16777217,17104897,23461889,29622274,29818882,29949953,30015489,31260676,31981569,32047105,33423362,33947649,34603011],"defined":[131073,196609,2424836,2621444,2686977,2818052,3342337,9633793,10354689,18743297,18808833,18874369,19726337,19791873,19857409,20250625,21823489,21889025,21954561,23199745,23396353,24379393,25100289,29687809,29753345,31588353,31719425,31916033,32374785,34930691,35061763,35323907],"dispose":[196609,10354691,29753345],"destination":[262146,8388610,10223621,10289155,12386305,16842753,18087937,29818882,33882114],"dead":[524289,12189697,16318465,16384001,30081025],"dataannotations":[983041,14352386,14417922,14483458,21561345,21626881,22675457,22740993,30408705,32833537,34537473,46137346,48889857,49086465],"detachfromevent":[1048577,1114113,1507329,1638401,14680067,14876675,15663107,15990787,30474241,30539777,30867457,30998529],"detach":[1048577,1114113,1507329,1638401,14680065,14876673,15663105,15990785,30474241,30539777,30867457,30998529],"dispatches":[1048577,1114113,1507329,1638401,14942209,30474241,30539777,30867457,30998529],"delegate":[1572865,2162692,9633793,15794177,17432577,17498113,17563649,17629185,20840449,25690113,30932993,31391748,32899073,33095682,46989315,49020932],"disposed":[1835010,3735554,16187393,16252929,28966913,29032449,31129602,32636930,36765698],"database":[1900545,33095682,38207489,43712513,48889857,49086465],"defaultconstructor":[2031617,39256067,43843585],"default":[2031618,2359298,2424834,2555906,2621442,2686978,2818050,2883586,2949122,3080194,3145730,3211266,3276803,3342341,6946820,7471106,8716289,8781825,20316162,20381699,20512769,20578305,22085634,22216707,22478849,22544385,24707074,24772611,24903681,26279937,26345473,26411009,26476545,31522818,31588354,31653890,31719426,31784962,31916034,31981570,32047106,32112642,32178178,32309250,32374786,33095682,35979267,37093377,37158913,37552129,39256065,39321602,39452673,41353217,41418753,42991617,43843586,48758785,48824321],"decompose":[2162689,33095681,38207489,40239107,43909121,47775745],"decompositionprefix":[2162689,40304643,43909121],"decomposition":[2162689,40304642,43909121],"defaults":[2162689,40697857,43909121],"deserialized":[2359297,18612225,31522817],"discards":[2359297,2424833,2555906,2621442,18677761,19005441,19398657,19660801,20054017,20185089,31522817,31588353,31653890,31719426],"decomposeattribute":[2490375,19070981,19136517,33095681,34996231,41943042,44236803,47775748],"directly":[2883585,2949121,6160385,9371649,9895937,9961473,33161219,42598401,44630017,44695553,47185921,48103425,48168961,48234497],"derived":[3211265,26214401,32243713],"datetime":[3604483,27262986,27459590,32505859,36241411],"date":[3604484,27262977,27328513,27394049,27459585,32505860,36241410,36306946],"datetimeoffset":[3604483,27328518,27394058,32505859,36306947],"decimal":[3604485,27525127,27590667,32505861,36372485],"delay":[3735558,28442629,28508166,28573701,28639237,28704773,28770306,28835846,28901382,28966916,29032449,32636934,36569092,36700162],"delaysafe":[3735554,28966916,29032452,32636930,36765699],"dll":[3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145],"dataerrorschangedeventargs":[4390914,4521986,4653058],"deepclone":[6225923,17170433,17235969,47185921],"deep":[6225921,47185921],"depth":[6225921],"discardemptyandnull":[7208963,49283073],"discardnulls":[7274499,49283073],"dimensional":[8388609,12386305,16842753,18087937],"defines":[9633793],"data":[10682369,11796481,11993089,26214401],"designed":[12845057,33095681,47841281],"disguised":[12845057],"defaultvalue":[20381699,22216707,24772611],"declarative":[21561345,21626881,22675457,22740993],"detected":[23986177,24051713,24117249],"desired":[27918337,48103425,48234497],"determine":[32768001,33095681,45940737,47644673],"delegates":[32899073,33095681],"dialogs":[33095682,47841281,47906817],"different":[33095682,48889857,49086465],"deal":[33161217,48168961],"dotnet":[40828929],"docs":[40828929],"directional":[45547521,45613057]} \ No newline at end of file diff --git a/docs/API/fti/FTI_101.json b/docs/API/fti/FTI_101.json index b64d1ded..4f9e7e0e 100644 --- a/docs/API/fti/FTI_101.json +++ b/docs/API/fti/FTI_101.json @@ -1 +1 @@ -{"exe":[1],"exposes":[65537,131074,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424834,2490369,2555905,2621442,2686977,2752513,2818050,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342338,3407873,3473409,3538945,3670017,3735553,3997697,4980738,5046273,5111809,5177345,5242881,5308417,5373954,5439489,5505026,5570561,5636097,5701634,5767169,5832705,5898241,5963777,6029313,6094850,7405569,7471105,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32505857,32571393,32702465,33161217,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,45744129],"element":[65543,131074,196610,2424834,2621442,2818050,3342338,3735553,7995396,8060931,8257538,8323074,8519683,8585218,8716289,8781825,9895938,9961475,10420226,29032450,29556742,29622274,29687809,31522818,31653890,31850498,32309250,32571393,33292290,33357826,33423362,37093377,37421057,42729473,42860545],"elements":[65538,131076,2031618,2228225,2424834,2621442,2818050,3342338,8388611,8912897,8978433,9306113,9633795,12386305,13172737,16842754,18022402,18743297,18808833,19726337,19791873,21823489,21889025,26345473,26411009,29556737,29622274,31195137,31391745,31522818,31653890,31850498,32309250,33554434,36962306,39124993,42729473,43515905,44957697,45154305,45350913],"enumerator":[65537,196613,262145,524289,2031617,2228225,8454145,10354690,10420229,10616836,12451841,17039361,18087937,29556737,29687812,29753345,30015489,31195137,31391745,32636930,37421059,42860548,45023237],"event":[131083,327689,720898,1048583,1114119,1245186,1310722,1376258,1441794,1507335,1638407,1703940,1769474,2359301,2424844,2555909,2621452,2686981,2752515,2818060,2883586,2949122,3080194,3145734,3276805,3342348,3801092,3866629,3932164,3997699,4063235,4128773,4194307,4259844,4325380,4390915,4456453,4521987,4587523,4653059,4718595,4784131,4849667,4915203,4980740,5046274,5111810,5242882,5373956,5505028,5701636,6094852,6619137,9043970,9109505,9175041,9568257,9699329,9764865,9830401,11206657,11272193,11337730,11403266,11468802,11599873,11665409,14614530,14680066,14745602,14811138,14876674,14942209,15007746,15138817,15204353,15269889,15335425,15400961,15466497,15597570,15663106,15728641,15925250,15990786,16056323,16121859,20250625,20316161,20381697,20447233,20578305,20643841,20709378,20840450,21102593,21430273,21626881,22020097,22151169,22347777,22413313,22544385,22740994,22806530,24641537,24707073,24838145,24903681,25165825,25231361,25296897,25362433,25427969,25493505,25690114,25755650,29622279,29818887,30408711,30474247,30605314,30670850,30736386,30801927,30932999,30998530,31457285,31522824,31588357,31653896,31719429,31784963,31850504,31916034,31981570,32047106,32112646,32243717,32309256,32833550,33619971,33685507,34078722,34144258,34209794,35717122,35782658,38010881,38076417,43319298,45875201,45940738,46006273,46071809,46202881,46268417,46333953,46465025,46530562,46596098,46661634,48300033],"events":[131073,327681,720897,917505,1310721,2293761,2359297,2424833,2555905,2621441,2686977,2752513,2818049,2883587,2949123,3080195,3145730,3276801,3342337,4849665,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767171,5832707,5898243,5963779,6029314,6094850,6553601,18219009,24182785,24248321,24510465,24772609,25886721,32636931,32702465,32833539,33030145,33095681,42270721,44302337,44367873,44957699,45678593,46071809,46202881,46268417,47251457,48168961,48300033],"explicitly":[131073,327681,1310721,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849],"equals":[262146,393217,458753,3211265,10485764,10551300,11730947,11927555,26083332,26869761,29753346,29884417,29949953,32178177,32636930,33882115,45219841,45285377],"equal":[262145,393217,458753,3538945,9895937,10485762,11730946,11927554,26083329,26869761,27131906,27197441,27328513,27459585,27525121,27590657,27656193,27787266,29753345,29884417,29949953,32374785,33882113],"equality":[262145,10747905,32636930,33161217,45219841,45285377],"enumeration":[589829,6160385,6225921,6291457,6356993,6488065,6553601,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,12845058,13041665,13107201,13172738,30081029,32899073,32964609,33030146,33095681,46858242,48300034,48627715,48955394],"emd":[589825,13172737,30081025],"error":[917505,2228226,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3211266,3276801,3342337,14024705,14483457,17629185,17694721,17760257,17825793,18153473,21168129,21954561,26083329,26148865,30277633,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32178178,32243713,32309249,41091073,43646977],"errors":[917509,2359301,2424837,2555909,2621445,2686980,2752517,2818053,3276805,3342341,4390913,4521985,4653057,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,6029313,6094849,14090241,14155777,14221314,14286849,20971521,21233665,21299201,21364738,21495810,21561346,21692417,22085633,22216705,22282242,22609922,22675458,22937601,30277635,31457283,31522819,31588355,31653891,31719426,31784963,31850499,32243715,32309251,34406402,35192834,35323906,37945346,42008578,42074114,43253761,43778049,43843585,43974657,44040193,44105729,44171265,44236801,44564481,44630017],"errorschanged":[917505,2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,4390915,4521987,4653059,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,6029313,6094849,21430273,22544385,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"eventmanager":[1048579,1114115,1507331,1638403,14745602,14811138,14876674,14942210,15007746,30408707,30474243,30801923,30932995,32833537,45875203,45940740,46333955,46465027],"eventfired":[1048579,1114115,1507331,1638403,14614529,14680065,14811137,14876673,14942211,15597569,15663105,15925249,15990785,30408707,30474243,30801923,30932995],"eventing":[1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,4456450,5242881,9043969,9109505,9175041,9699329,9764865,9830401,11206657,11272193,11599873,11665409,14548994,14614530,14680066,14745603,14811138,14876674,14942210,15007747,15073282,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,21102593,21626881,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,32833537,38010882,38076418,43319297,45875204,45940738,46006274,46071810,46137346,46202882,46268418,46333956,46399491,46465028,46530562,46596098,46661635],"eventhandler":[1572865,3801090,3932162,4259842,4325378,4390914,4521986,4653058,4849666,9043972,9109507,9175043,9699331,9764867,9830403,11206659,11272195,11599875,11665411,14745604,15007748,15138819,15204355,15269891,15335427,15400963,15466499,15728645,21102597,21626885,32833537,46399489],"existing":[1703937,1769473,2228225,16056321,16121857,18022401,30998529,31391745],"eventargs":[1703937,16056324,16121862,32833537,38010883,43319297,45940738,46006274,46399490,46530564,46661634],"exist":[2359301,2424837,2555909,2621445,2686981,2818053,2883588,2949124,3080196,3145732,3276805,3342341,20250625,20316161,20381697,20447234,20512769,22020097,22151169,22347777,22413314,22478849,23592961,24444929,24641537,24707073,24838146,24903681,25821185,31457285,31522821,31588357,31653893,31719429,31850501,31916036,31981572,32047108,32112644,32243717,32309253,35061763,35389443,35651586],"empty":[2359297,2424833,2555905,2621441,2686977,2818049,3276801,3342337,3670018,7208961,14221313,20250625,20316161,20381697,20447233,20512770,20709377,20774913,20840449,20905985,21364737,22020097,22151169,22282241,22347777,22413313,22478850,22740993,22806529,22872065,23134209,23461889,23592961,24313857,24379393,24444929,24641537,24707073,24838145,24903681,25624578,25690113,25755649,25952257,26017793,27918337,27983873,31457281,31522817,31588353,31653889,31719425,31850497,32243713,32309249,32505858,35061761,35389441,37552129,48955393],"editableobjectmodelbase":[2555909,5439491,19136516,19202050,19267586,19333122,19398658,19464194,19529730,19595266,31588355,33030145,41680898,41746434,43974659,47513605],"edit":[2555905,2621441,19267585,19922945,31588353,31653889],"endedit":[2555905,2621441,2949123,19464195,20054019,23920641,24051717,31588353,31653889,31981571],"editableobjectmodelcollection":[2621446,5505027,19660804,19726340,19791876,19857410,19922946,19988482,20054018,20119554,31653891,33030145,34996230,41811970,41877506,44040195,47579141],"extreme":[2883585,2949121,42270721,44302337,44367873],"editableobjectpropertybag":[2949124,5832707,23789571,23855106,23920642,23986178,24051714,24117250,31981571,33095681,42336258,44367875,47513603,47579139,48037893],"editing":[2949121,42336258,44367873],"exception":[3735554,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8388609,8519681,8650753,9043969,9895937,10027009,10092545,12058625,12124161,12386305,12517377,13041665,13107201,13369345,13565953,13631489,13697025,13762561,14483457,14548993,14745601,15007745,15728641,15859713,16056321,16121857,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18153473,18219009,20250625,20316161,20381697,20447233,20512769,20709377,20774913,20840449,20905985,21102593,21626881,22020097,22151169,22347777,22413313,22478849,22740993,22806529,22872065,23134209,23330817,23461889,23592961,23920641,23986177,24051713,24313857,24379393,24444929,24576001,24641537,24707073,24838145,24903681,25165825,25296897,25493505,25624577,25690113,25755649,25952257,26017793,27066369,27131905,27197441,27328513,27459585,27525121,27590657,27656193,27721729,27787265,28049409,28114945,28639233,28704769,28770305,28901378,28966914,29032449,29097985,29163521,29229057,29360129,29491201,32571394,36700162,37486593,37552129,41091073],"extension":[3735553,29360129,32571393,32899074,36765697,49020929,49086465],"effects":[6553601,48300033],"exceptions":[7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8388609,8519681,8650753,9043969,9895937,10027009,10092545,12058625,12124161,12386305,12517377,13041665,13107201,13369345,13565953,13631489,13697025,13762561,14483457,14548993,14745601,15007745,15728641,15859713,16056321,16121857,16318465,16384001,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18153473,18219009,20250625,20316161,20381697,20447233,20512769,20709377,20774913,20840449,20905985,21102593,21626881,22020097,22151169,22347777,22413313,22478849,22740993,22806529,22872065,23134209,23330817,23461889,23592961,23920641,23986177,24051713,24313857,24379393,24444929,24576001,24641537,24707073,24838145,24903681,25165825,25296897,25493505,25624577,25690113,25755649,25952257,26017793,27066369,27131905,27197441,27328513,27459585,27525121,27590657,27656193,27721729,27787265,28049409,28114945,28639233,28704769,28770305,28901377,28966913,29032449,29097985,29163521,29229057,29360129,29491201,37486593,37552129,41091073],"exists":[7995393,8060929,20709377,20840449,22740993,22806529,25690113,25755649],"end":[8388609,10420225],"enumerable":[13172737],"enumerated":[13172737],"errormessage":[14483460],"environment":[16318465,16384001],"echoes":[16449537,16515073],"expected":[20250625,20316161,20381697,20447233,22020097,22151169,22347777,22413313,24641537,24707073,24838145,24903681],"executing":[20381697,20447233,22347777,22413313,24838145,24903681],"execute":[20447233,22413313,24838145],"equivalent":[20512769,22478849],"ends":[23855105],"edits":[23855105,24117249],"effect":[23920641,23986177,24051713],"extremely":[24248321,24510465,24772609,25886721],"exclusive":[27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193],"extendedobservablecollection":[32636929,45154305],"extended":[32899073,48889857],"enumerations":[32899073,32964609,33030145,33095681],"enum":[32964609,46858242,48300033,48627713,48955393],"easy":[33030145,47316993],"entities":[33095682,47775745,47906817],"example":[41091073],"easier":[45744129],"encapsulates":[45875201,46333953,46465025]} \ No newline at end of file +{"exe":[1],"exposes":[65537,131074,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424834,2490369,2555905,2621442,2686977,2752513,2818050,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342338,3407873,3473409,3538945,3670017,3735553,3997697,4980738,5046273,5111809,5177345,5242881,5308417,5373954,5439489,5505026,5570561,5636097,5701634,5767169,5832705,5898241,5963777,6029313,6094850,7405569,7471105,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32571393,32636929,32768001,33226753,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,46071809],"element":[65543,131074,196610,2424834,2621442,2818050,3342338,3735553,7995396,8060931,8257538,8323074,8519683,8585218,8716289,8781825,9895938,9961475,10420226,29097986,29622278,29687810,29753345,31588354,31719426,31916034,32374786,32636929,33357826,33423362,33488898,37158913,37486593,43057153,43188225],"elements":[65538,131076,2031618,2228225,2424834,2621442,2818050,3342338,8388611,8912897,8978433,9306113,9633795,12386305,13172737,16842754,18087938,18808833,18874369,19791873,19857409,21889025,21954561,26411009,26476545,29622273,29687810,31260673,31457281,31588354,31719426,31916034,32374786,33619970,37027842,39190529,43057153,43843585,45285377,45481985,45678593],"enumerator":[65537,196613,262145,524289,2031617,2228225,8454145,10354690,10420229,10616836,12451841,17039361,18153473,29622273,29753348,29818881,30081025,31260673,31457281,32702466,37486595,43188228,45350917],"event":[131083,327689,720898,1048583,1114119,1245186,1310722,1376258,1441794,1507335,1638407,1703940,1769474,2359301,2424844,2555909,2621452,2686981,2752515,2818060,2883586,2949122,3080194,3145734,3276805,3342348,3801092,3866629,3932164,3997699,4063235,4128773,4194307,4259844,4325380,4390915,4456453,4521987,4587523,4653059,4718595,4784131,4849667,4915203,4980740,5046274,5111810,5242882,5373956,5505028,5701636,6094852,6619137,9043970,9109505,9175041,9568257,9699329,9764865,9830401,11206657,11272193,11337730,11403266,11468802,11599873,11665409,14614530,14680066,14745602,14811138,14876674,14942209,15007746,15138817,15204353,15269889,15335425,15400961,15466497,15597570,15663106,15728641,15925250,15990786,16056323,16121859,20316161,20381697,20447233,20512769,20643841,20709377,20774914,20905986,21168129,21495809,21692417,22085633,22216705,22413313,22478849,22609921,22806530,22872066,24707073,24772609,24903681,24969217,25231361,25296897,25362433,25427969,25493505,25559041,25755650,25821186,29687815,29884423,30474247,30539783,30670850,30736386,30801922,30867463,30998535,31064066,31522821,31588360,31653893,31719432,31784965,31850499,31916040,31981570,32047106,32112642,32178182,32309253,32374792,32899086,33685507,33751043,34144258,34209794,34275330,35782658,35848194,38076417,38141953,43646978,46202881,46268418,46333953,46399489,46530561,46596097,46661633,46792705,46858242,46923778,46989314,48627713],"events":[131073,327681,720897,917505,1310721,2293761,2359297,2424833,2555905,2621441,2686977,2752513,2818049,2883587,2949123,3080195,3145730,3276801,3342337,4849665,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767171,5832707,5898243,5963779,6029314,6094850,6553601,18284545,23724033,24248321,24576001,24838145,25952257,32702467,32768001,32899075,33095681,33161217,42598401,44630017,44695553,45285379,46006273,46399489,46530561,46596097,47579137,48496641,48627713],"explicitly":[131073,327681,1310721,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849],"equals":[262146,393217,458753,3211265,10485764,10551300,11730947,11927555,26148868,26935297,29818882,29949953,30015489,32243713,32702466,33947651,45547521,45613057],"equal":[262145,393217,458753,3538945,9895937,10485762,11730946,11927554,26148865,26935297,27197442,27262977,27394049,27525121,27590657,27656193,27721729,27852802,29818881,29949953,30015489,32440321,33947649],"equality":[262145,10747905,32702466,33226753,45547521,45613057],"enumeration":[589829,6160385,6225921,6291457,6356993,6488065,6553601,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,12845058,13041665,13107201,13172738,30146565,32964609,33030145,33095682,33161217,47185922,48627714,48955395,49283074],"emd":[589825,13172737,30146561],"error":[917505,2228226,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3211266,3276801,3342337,14024705,14483457,17694721,17760257,17825793,17891329,18219009,21233665,22020097,26148865,26214401,30343169,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32243714,32309249,32374785,41418753,43974657],"errors":[917509,2359301,2424837,2555909,2621445,2686980,2752517,2818053,3276805,3342341,4390913,4521985,4653057,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,6029313,6094849,14090241,14155777,14221314,14286849,21037057,21299201,21364737,21430274,21561346,21626882,21757953,22151169,22282241,22347778,22675458,22740994,23003137,30343171,31522819,31588355,31653891,31719427,31784962,31850499,31916035,32309251,32374787,34471938,35258370,35389442,38010882,42336258,42401794,43581441,44105729,44171265,44302337,44367873,44433409,44498945,44564481,44892161,44957697],"errorschanged":[917505,2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,4390915,4521987,4653059,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,6029313,6094849,21495809,22609921,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"eventmanager":[1048579,1114115,1507331,1638403,14745602,14811138,14876674,14942210,15007746,30474243,30539779,30867459,30998531,32899073,46202883,46268420,46661635,46792707],"eventfired":[1048579,1114115,1507331,1638403,14614529,14680065,14811137,14876673,14942211,15597569,15663105,15925249,15990785,30474243,30539779,30867459,30998531],"eventing":[1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,4456450,5242881,9043969,9109505,9175041,9699329,9764865,9830401,11206657,11272193,11599873,11665409,14548994,14614530,14680066,14745603,14811138,14876674,14942210,15007747,15073282,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,21168129,21692417,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,32899073,38076418,38141954,43646977,46202884,46268418,46333954,46399490,46465026,46530562,46596098,46661636,46727171,46792708,46858242,46923778,46989315],"eventhandler":[1572865,3801090,3932162,4259842,4325378,4390914,4521986,4653058,4849666,9043972,9109507,9175043,9699331,9764867,9830403,11206659,11272195,11599875,11665411,14745604,15007748,15138819,15204355,15269891,15335427,15400963,15466499,15728645,21168133,21692421,32899073,46727169],"existing":[1703937,1769473,2228225,16056321,16121857,18087937,31064065,31457281],"eventargs":[1703937,16056324,16121862,32899073,38076419,43646977,46268418,46333954,46727170,46858244,46989314],"exist":[2359301,2424837,2555909,2621445,2686981,2818053,2883588,2949124,3080196,3145732,3276805,3342341,20316161,20381697,20447233,20512770,20578305,22085633,22216705,22413313,22478850,22544385,23658497,24510465,24707073,24772609,24903682,24969217,25886721,31522821,31588357,31653893,31719429,31784965,31916037,31981572,32047108,32112644,32178180,32309253,32374789,35127299,35454979,35717122],"empty":[2359297,2424833,2555905,2621441,2686977,2818049,3276801,3342337,3670018,7208961,14221313,20316161,20381697,20447233,20512769,20578306,20774913,20840449,20905985,20971521,21430273,22085633,22216705,22347777,22413313,22478849,22544386,22806529,22872065,22937601,23199745,23527425,23658497,24379393,24444929,24510465,24707073,24772609,24903681,24969217,25690114,25755649,25821185,26017793,26083329,27983873,28049409,31522817,31588353,31653889,31719425,31784961,31916033,32309249,32374785,32571394,35127297,35454977,37617665,49283073],"editableobjectmodelbase":[2555909,5439491,19202052,19267586,19333122,19398658,19464194,19529730,19595266,19660802,31653891,33095681,42008578,42074114,44302339,47841285],"edit":[2555905,2621441,19333121,19988481,31653889,31719425],"endedit":[2555905,2621441,2949123,19529731,20119555,23986177,24117253,31653889,31719425,32047107],"editableobjectmodelcollection":[2621446,5505027,19726340,19791876,19857412,19922946,19988482,20054018,20119554,20185090,31719427,33095681,35061766,42139650,42205186,44367875,47906821],"extreme":[2883585,2949121,42598401,44630017,44695553],"editableobjectpropertybag":[2949124,5832707,23855107,23920642,23986178,24051714,24117250,24182786,32047107,33161217,42663938,44695555,47841283,47906819,48365573],"editing":[2949121,42663938,44695553],"exception":[3735554,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8388609,8519681,8650753,9043969,9895937,10027009,10092545,12058625,12124161,12386305,12517377,13041665,13107201,13369345,13565953,13631489,13697025,13762561,14483457,14548993,14745601,15007745,15728641,15859713,16056321,16121857,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18219009,18284545,20316161,20381697,20447233,20512769,20578305,20774913,20840449,20905985,20971521,21168129,21692417,22085633,22216705,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23527425,23658497,23986177,24051713,24117249,24379393,24444929,24510465,24641537,24707073,24772609,24903681,24969217,25231361,25362433,25559041,25690113,25755649,25821185,26017793,26083329,27131905,27197441,27262977,27394049,27525121,27590657,27656193,27721729,27787265,27852801,28114945,28180481,28704769,28770305,28835841,28966914,29032450,29097985,29163521,29229057,29294593,29425665,29556737,32636930,36765698,37552129,37617665,41418753],"extension":[3735553,29425665,32636929,32964610,36831233,49348609,49414145],"effects":[6553601,48627713],"exceptions":[7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8388609,8519681,8650753,9043969,9895937,10027009,10092545,12058625,12124161,12386305,12517377,13041665,13107201,13369345,13565953,13631489,13697025,13762561,14483457,14548993,14745601,15007745,15728641,15859713,16056321,16121857,16318465,16384001,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18219009,18284545,20316161,20381697,20447233,20512769,20578305,20774913,20840449,20905985,20971521,21168129,21692417,22085633,22216705,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23527425,23658497,23986177,24051713,24117249,24379393,24444929,24510465,24641537,24707073,24772609,24903681,24969217,25231361,25362433,25559041,25690113,25755649,25821185,26017793,26083329,27131905,27197441,27262977,27394049,27525121,27590657,27656193,27721729,27787265,27852801,28114945,28180481,28704769,28770305,28835841,28966913,29032449,29097985,29163521,29229057,29294593,29425665,29556737,37552129,37617665,41418753],"exists":[7995393,8060929,20774913,20905985,22806529,22872065,25755649,25821185],"end":[8388609,10420225],"enumerable":[13172737],"enumerated":[13172737],"errormessage":[14483460],"environment":[16318465,16384001],"echoes":[16449537,16515073],"expected":[20316161,20381697,20447233,20512769,22085633,22216705,22413313,22478849,24707073,24772609,24903681,24969217],"executing":[20447233,20512769,22413313,22478849,24903681,24969217],"execute":[20512769,22478849,24903681],"equivalent":[20578305,22544385],"extremely":[23724033,24576001,24838145,25952257],"ends":[23920641],"edits":[23920641,24182785],"effect":[23986177,24051713,24117249],"exclusive":[27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729],"extendedobservablecollection":[32702465,45481985],"extended":[32964609,49217537],"enumerations":[32964609,33030145,33095681,33161217],"enum":[33030145,47185922,48627713,48955393,49283073],"easy":[33095681,47644673],"entities":[33161218,48103425,48234497],"example":[41418753],"easier":[46071809],"encapsulates":[46202881,46661633,46792705]} \ No newline at end of file diff --git a/docs/API/fti/FTI_102.json b/docs/API/fti/FTI_102.json index baf4f7a5..c4423182 100644 --- a/docs/API/fti/FTI_102.json +++ b/docs/API/fti/FTI_102.json @@ -1 +1 @@ -{"file":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465],"following":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3670017,3735553,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,7405569,7471105,26869761,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32505857,32571393,33161217,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625],"first":[65537,8060929,8323073,8585217,8650753,8781825,11730945,11927553,12517377,26083329,26869761,29556737,33423361,37027841,44892161],"fires":[131076,720898,2424836,2621444,2818052,2883587,2949123,3080195,3145731,3342340,3801089,3932161,4259841,4325377,4718593,4849665,4915201,4980738,5111810,5373954,5505026,5701634,5767171,5832707,5898243,5963779,6094850,9437185,9502721,29622274,31522818,31653890,31850498,32309250],"freeing":[196609,10354689,29687809],"forward":[327681,11534338,29818881],"fails":[589826,12910593,12976129,30081026],"forces":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14286849,20971521,21692417,22937601,30277633,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"fully":[1900547,38273025,38338561,38862849,43384835],"format":[1900547,38273025,38338561,38862849,43384835],"fsharpfullname":[1900545,38338563,43384833],"fields":[2162690,2359300,2424834,2555907,2621443,2883586,2949122,3014657,3211265,7405570,7471106,18284545,18350081,18874369,19202049,19857409,23068673,23855105,31457281,31522817,31588353,31653889,31916033,31981569,33030145,39321601,39387137,41353217,41418753,41549825,41680897,41746433,41811969,41877505,42205185,43581442,43778050,43843585,43974658,44040194,44302337,44367873,47316993],"flags":[2162689,40566786,43581441],"fetch":[2228226,18153473,23003137,23330817,23789569,24313857,24576001,25034753,31391745,41091073,43646977],"flag":[2359297,2424833,2555905,2621441,2883585,2949121,18350081,18874369,19202049,19857409,23724033,31457281,31522817,31588353,31653889,31916033,31981569],"fetches":[2359301,2424837,2555909,2621445,2686981,2818053,2883588,2949124,3080196,3145732,3276805,3342341,20250625,20316161,20381697,20447233,20512769,22020097,22151169,22347777,22413313,22478849,24641537,24707073,24838145,24903681,31457285,31522821,31588357,31653893,31719429,31850501,31916036,31981572,32047108,32112644,32243717,32309253,35061763,35389443,35651586],"func":[2359297,2424833,2555905,2621441,2686977,2818049,2883585,2949121,3080193,3145729,3276801,3342337,3735554,17367043,17432579,20447236,22413316,24838148,29032452,29097988,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32243713,32309249,32571394,35061761,35389441,35651585],"fired":[2883585,2949121,4390913,4521985,4653057,42270721,44302337,44367873],"foreachasync":[3735554,29032452,29097988,32571394],"field":[6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,36896769,37027841,37355521,37552129,37617665,37748737,37945345,38404097,38928385,38993921,39059457,39124993,39190529,39256065,40042497,40370177,40566785,40763393,41615361,42008577,42074113,42139649,42270721,42336257,42401793,42467329,42532865],"fixcasing":[6488067,48300033],"function":[8257537,8323073,8454145,8519681,8585217,8650753,8716289,8781825,9633793,10158081,10420225,10485761,10551297,10616833,10682369,11010049,11075585,11730945,11796481,11927553,11993089,12320769,12451841,12517377,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13762561,13828097,13893633,14090241,14155777,14221313,14286849,14483457,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16908289,16973825,17039361,17104897,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17891329,17956865,18087937,18153473,18415617,18481153,19398657,19529729,20250625,20316161,20381697,20447235,20512769,20709377,20774913,20840449,20905985,20971521,21233665,21299201,21364737,21692417,22020097,22085633,22151169,22216705,22282241,22347777,22413315,22478849,22740993,22806529,22872065,22937601,23134209,23199745,23265281,23330817,23396353,23461889,23592961,24248321,24313857,24379393,24444929,24641537,24707073,24772609,24838147,24903681,24969217,25034753,25100289,25624577,25690113,25755649,25821185,25952257,26017793,26083329,26148865,26869761,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29229057,29294593,29360129,29425665,29491201],"false":[8257537,8323073,8519682,8585218,8650754,8716289,8781825,10420229,10485761,11730949,11927557,16646145,16711681,16777217,16908289,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891333,17956865,26083329,27131905,29229057,37945345,39190529,39256065,40370177,41418753,41549825,41746433,41877505,42008577,42074113,42205185,42336257],"fast":[13434881,13500417],"fetching":[17235969,17301505],"faster":[17367041,17432577,17498113,17563649],"friend":[23199745,23658497,24248321,24510465,24772609,25165825,25231361,25296897,25362433,25886721],"frommilliseconds":[28901377],"functionality":[32636929,45154305],"forwarded":[32833538,46530561,46596097],"fetched":[32964609,47054849],"features":[40566785]} \ No newline at end of file +{"file":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145],"following":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3670017,3735553,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,7405569,7471105,26935297,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32571393,32636929,33226753,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305],"first":[65537,8060929,8323073,8585217,8650753,8781825,11730945,11927553,12517377,26148865,26935297,29622273,33488897,37093377,45219841],"fires":[131076,720898,2424836,2621444,2818052,2883587,2949123,3080195,3145731,3342340,3801089,3932161,4259841,4325377,4718593,4849665,4915201,4980738,5111810,5373954,5505026,5701634,5767171,5832707,5898243,5963779,6094850,9437185,9502721,29687810,31588354,31719426,31916034,32374786],"freeing":[196609,10354689,29753345],"forward":[327681,11534338,29884417],"fails":[589826,12910593,12976129,30146562],"forces":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14286849,21037057,21757953,23003137,30343169,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"fully":[1900547,38338561,38404097,38928385,43712515],"format":[1900547,38338561,38404097,38928385,43712515],"fsharpfullname":[1900545,38404099,43712513],"fields":[2162690,2359300,2424834,2555907,2621443,2883586,2949122,3014657,3211265,7405570,7471106,18350081,18415617,18939905,19267585,19922945,23134209,23920641,31522817,31588353,31653889,31719425,31981569,32047105,33095681,39518209,39649281,41680897,41746433,41877505,42008577,42074113,42139649,42205185,42532865,43909122,44105730,44171265,44302338,44367874,44630017,44695553,47644673],"flags":[2162689,40828930,43909121],"fetch":[2228226,18219009,23068673,23396353,23855105,24379393,24641537,25100289,31457281,41418753,43974657],"flag":[2359297,2424833,2555905,2621441,2883585,2949121,18415617,18939905,19267585,19922945,23789569,31522817,31588353,31653889,31719425,31981569,32047105],"fetches":[2359301,2424837,2555909,2621445,2686981,2818053,2883588,2949124,3080196,3145732,3276805,3342341,20316161,20381697,20447233,20512769,20578305,22085633,22216705,22413313,22478849,22544385,24707073,24772609,24903681,24969217,31522821,31588357,31653893,31719429,31784965,31916037,31981572,32047108,32112644,32178180,32309253,32374789,35127299,35454979,35717122],"func":[2359297,2424833,2555905,2621441,2686977,2818049,2883585,2949121,3080193,3145729,3276801,3342337,3735554,17432579,17498115,20512772,22478852,24903684,29097988,29163524,31522817,31588353,31653889,31719425,31784961,31916033,31981569,32047105,32112641,32178177,32309249,32374785,32636930,35127297,35454977,35717121],"fired":[2883585,2949121,4390913,4521985,4653057,42598401,44630017,44695553],"foreachasync":[3735554,29097988,29163524,32636930],"field":[6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,36962305,37093377,37421057,37617665,37683201,37814273,38010881,38469633,38993921,39059457,39124993,39190529,39321601,39387137,40304641,40632321,40828929,41025537,41943041,42336257,42401793,42467329,42598401,42663937,42729473,42795009,42860545],"fixcasing":[6488067,48627713],"function":[8257537,8323073,8454145,8519681,8585217,8650753,8716289,8781825,9633793,10158081,10420225,10485761,10551297,10616833,10682369,11010049,11075585,11730945,11796481,11927553,11993089,12320769,12451841,12517377,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13762561,13828097,13893633,14090241,14155777,14221313,14286849,14483457,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16908289,16973825,17039361,17104897,17170433,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17956865,18022401,18153473,18219009,18481153,18546689,19464193,19595265,20316161,20381697,20447233,20512771,20578305,20774913,20840449,20905985,20971521,21037057,21299201,21364737,21430273,21757953,22085633,22151169,22216705,22282241,22347777,22413313,22478851,22544385,22806529,22872065,22937601,23003137,23199745,23265281,23330817,23396353,23461889,23527425,23658497,24313857,24379393,24444929,24510465,24707073,24772609,24838145,24903683,24969217,25034753,25100289,25165825,25690113,25755649,25821185,25886721,26017793,26083329,26148865,26214401,26935297,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29294593,29360129,29425665,29491201,29556737],"false":[8257537,8323073,8519682,8585218,8650754,8716289,8781825,10420229,10485761,11730949,11927557,16646145,16711681,16777217,16908289,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956869,18022401,26148865,27197441,29294593,38010881,39321601,39387137,40632321,41746433,41877505,42074113,42205185,42336257,42401793,42532865,42663937],"fast":[13434881,13500417],"fetching":[17301505,17367041],"faster":[17432577,17498113,17563649,17629185],"friend":[23265281,23724033,24313857,24576001,24838145,25231361,25296897,25362433,25427969,25952257],"frommilliseconds":[28966913],"functionality":[32702465,45481985],"forwarded":[32899074,46858241,46923777],"fetched":[33030145,47382529],"features":[40828929]} \ No newline at end of file diff --git a/docs/API/fti/FTI_103.json b/docs/API/fti/FTI_103.json index 7f9b1acf..a7a78e3e 100644 --- a/docs/API/fti/FTI_103.json +++ b/docs/API/fti/FTI_103.json @@ -1 +1 @@ -{"generic":[1,196609,2031617,13172737,16646146,17039361,29687809,31195137,32636929,34537473,42860545,45023234],"generated":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465],"ghostdoc":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465],"getenumerator":[65537,262145,524289,2031617,2228225,8454147,10616835,12451843,17039363,18087939,29556737,29753345,30015489,31195137,31391745],"gets":[65544,196609,262149,458753,589826,655361,1900550,1966083,2031619,2097154,2162698,2228225,2359297,2490369,2555905,2883586,2949122,3080193,3145729,3407873,3473410,8716289,8781825,10616833,13238273,13303809,13828097,17235969,17301505,18481153,19529729,23265281,24969217,29556738,29753345,30081026,30146561,31260674,31457281,31588353,31916034,31981570,32047105,32112641,33488898,36896769,36962305,37027841,37093377,37158913,37224449,37355521,37421057,37486593,37552129,37617665,37748737,38141953,38273025,38338561,38404097,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39976961,40042497,40108033,40173569,40370177,40566785,40632321,40697857,40763393,40828929,41025537,41615361,42467329,42532865,42598401,42729478,42860545,42926084,43057153,43384838,43450371,43515907,43581450,43646977,43909121,44695553,44761090],"gethashcode":[262145,393217,458753,3211265,10682371,11796483,11993091,26148868,29753345,29884417,29949953,32178177],"getkeys":[589825,13238275,30081025],"getvalues":[589825,13303811,30081025],"getpreviousvalue":[655361,2359297,2555905,2883585,2949121,13828099,18481155,19529731,23265283,30146561,31457281,31588353,31916033,31981569],"getallerrors":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14090243,21233667,22085635,30277633,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"geterrors":[917506,2359298,2424834,2555906,2621442,2686977,2752514,2818050,3276802,3342338,14155780,14221316,21299204,21364740,22216708,22282244,30277634,31457282,31522818,31588354,31653890,31719425,31784962,31850498,32243714,32309250,34406403,35192835,35323907],"getmetadata":[2097154,17235972,17301508,31260674],"getter":[2162696,17629185,17694721,31326210,34668546,39452673,39518209,39583746,39649282,43581446],"getdefault":[2359297,2424833,2555905,2621441,2686977,2818049,2883585,2949121,3080193,3145729,3276801,3342337,20316163,20512769,22151171,22478849,24707075,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32243713,32309249],"getnew":[2359299,2424835,2555907,2621443,2686979,2818051,2883586,2949122,3080194,3145730,3276803,3342339,20381700,20447236,20512772,22347780,22413316,22478852,24838148,24903684,31457283,31522819,31588355,31653891,31719427,31850499,31916034,31981570,32047106,32112642,32243715,32309251,35061764,35389444,35651587],"graph":[2359298,2424833,2555906,2621442,2883586,2949122,23396353,31916033,31981569,41353217,41418753,41484289,41680897,41746433,41811969,41877505,42205185,43778050,43843585,43974658,44040194,44302337,44367873],"getinternalvalues":[2883585,3080193,3145729,23199747,24248323,24772611,31916033,32047105,32112641],"getpropertyindex":[2883585,2949121,3080193,3145729,24969219,31916033,31981569,32047105,32112641],"getvalue":[2883585,2949121,3080193,3145729,23330819,24313859,25034755,31916033,31981569,32047105,32112641],"greater":[3538945,8388609,9895937,26869763,27131905,27197441,27328513,27459585,27525121,27590657,27656193,27787265,32374785],"given":[3735558,28377089,28442625,28508161,28573697,28770306,28835842,32571398,36503556,36634626],"general":[17104897,17170433],"getting":[17629185,17694721],"generics":[33095681,47841281],"github":[40566785]} \ No newline at end of file +{"generic":[1,196609,2031617,13172737,16646146,17039361,29753345,31260673,32702465,34603009,43188225,45350914],"generated":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145],"ghostdoc":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145],"getenumerator":[65537,262145,524289,2031617,2228225,8454147,10616835,12451843,17039363,18153475,29622273,29818881,30081025,31260673,31457281],"gets":[65544,196609,262149,458753,589826,655361,1900550,1966083,2031621,2097154,2162698,2228225,2359297,2490369,2555905,2883586,2949122,3080193,3145729,3407873,3473410,8716289,8781825,10616833,13238273,13303809,13828097,17301505,17367041,18546689,19595265,23330817,25034753,29622274,29818881,30146562,30212097,31326210,31522817,31653889,31981570,32047106,32112641,32178177,33554434,36962305,37027841,37093377,37158913,37224449,37289985,37421057,37486593,37552129,37617665,37683201,37814273,38207489,38338561,38404097,38469633,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,40239105,40304641,40370177,40435713,40632321,40828929,40894465,40960001,41025537,41156609,41353217,41943041,42795009,42860545,42926081,43057158,43188225,43253764,43384833,43712518,43778051,43843589,43909130,43974657,44236801,45023233,45088770],"gethashcode":[262145,393217,458753,3211265,10682371,11796483,11993091,26214404,29818881,29949953,30015489,32243713],"getkeys":[589825,13238275,30146561],"getvalues":[589825,13303811,30146561],"getpreviousvalue":[655361,2359297,2555905,2883585,2949121,13828099,18546691,19595267,23330819,30212097,31522817,31653889,31981569,32047105],"getallerrors":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14090243,21299203,22151171,30343169,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"geterrors":[917506,2359298,2424834,2555906,2621442,2686977,2752514,2818050,3276802,3342338,14155780,14221316,21364740,21430276,22282244,22347780,30343170,31522818,31588354,31653890,31719426,31784961,31850498,31916034,32309250,32374786,34471939,35258371,35389443],"getmetadata":[2097154,17301508,17367044,31326210],"getter":[2162696,17694721,17760257,31391746,34734082,39714817,39780353,39845890,39911426,43909126],"getdefault":[2359297,2424833,2555905,2621441,2686977,2818049,2883585,2949121,3080193,3145729,3276801,3342337,20381699,20578305,22216707,22544385,24772611,31522817,31588353,31653889,31719425,31784961,31916033,31981569,32047105,32112641,32178177,32309249,32374785],"getnew":[2359299,2424835,2555907,2621443,2686979,2818051,2883586,2949122,3080194,3145730,3276803,3342339,20447236,20512772,20578308,22413316,22478852,22544388,24903684,24969220,31522819,31588355,31653891,31719427,31784963,31916035,31981570,32047106,32112642,32178178,32309251,32374787,35127300,35454980,35717123],"graph":[2359298,2424833,2555906,2621442,2883586,2949122,23461889,31981569,32047105,41680897,41746433,41811969,42008577,42074113,42139649,42205185,42532865,44105730,44171265,44302338,44367874,44630017,44695553],"getinternalvalues":[2883585,3080193,3145729,23265283,24313859,24838147,31981569,32112641,32178177],"getpropertyindex":[2883585,2949121,3080193,3145729,25034755,31981569,32047105,32112641,32178177],"getvalue":[2883585,2949121,3080193,3145729,23396355,24379395,25100291,31981569,32047105,32112641,32178177],"greater":[3538945,8388609,9895937,26935299,27197441,27262977,27394049,27525121,27590657,27656193,27721729,27852801,32440321],"given":[3735558,28442625,28508161,28573697,28639233,28835842,28901378,32636934,36569092,36700162],"general":[17170433,17235969],"getting":[17694721,17760257],"generics":[33161217,48168961],"github":[40828929]} \ No newline at end of file diff --git a/docs/API/fti/FTI_104.json b/docs/API/fti/FTI_104.json index a914f857..a03d1cd7 100644 --- a/docs/API/fti/FTI_104.json +++ b/docs/API/fti/FTI_104.json @@ -1 +1 @@ -{"help":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104898,17170434,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465],"handler":[131079,327685,1048578,1114114,1245186,1310721,1376258,1441794,1507330,1638402,2359298,2424839,2555906,2621447,2686978,2752514,2818055,3276802,3342343,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,9043970,9109505,9175041,9699329,9764865,9830401,11206657,11272193,11599873,11665409,14745602,15007746,15138817,15204353,15269889,15335425,15400961,15466497,15728641,20709378,20840450,21102593,21626881,22740994,22806530,25690114,25755650,29622278,29818884,30408706,30474242,30605314,30670850,30736386,30801922,30932994,31457282,31522822,31588354,31653894,31719426,31784962,31850502,32243714,32309254,33619971,33685507,34078722,34209794],"having":[131073,327681,1310721,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849],"hash":[262145,393217,458753,3211265,10682371,11796484,11993092,26148867,29753345,29884417,29949953,32178177],"haserrors":[917506,2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,14024705,21168129,21954561,30277633,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249,37945347,42008579,42074115,43253761,43778049,43843585,43974657,44040193,44105729,44171265,44236801,44564481,44630017],"hasdefaultconstructor":[2031617,39190531,43515905],"handled":[2883585,2949121,3080193,3145729,4849665,5767169,5832705,5898241,5963777],"hashing":[10682369,11796481,11993089,26148865],"handling":[23592961,24444929,25821185,25952257],"handlers":[32833543,45875201,45940737,46071809,46202881,46268417,46333953,46465025],"helper":[32899073,46727169],"honors":[38141953],"https":[40566785],"hierarchy":[45875201,46333953,46465025,47316993,47382529,47513601,47579137,47775745,47906817,47972353,48037889,48168961,48431105,48496641]} \ No newline at end of file +{"help":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170434,17235970,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145],"handler":[131079,327685,1048578,1114114,1245186,1310721,1376258,1441794,1507330,1638402,2359298,2424839,2555906,2621447,2686978,2752514,2818055,3276802,3342343,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,9043970,9109505,9175041,9699329,9764865,9830401,11206657,11272193,11599873,11665409,14745602,15007746,15138817,15204353,15269889,15335425,15400961,15466497,15728641,20774914,20905986,21168129,21692417,22806530,22872066,25755650,25821186,29687814,29884420,30474242,30539778,30670850,30736386,30801922,30867458,30998530,31522818,31588358,31653890,31719430,31784962,31850498,31916038,32309250,32374790,33685507,33751043,34144258,34275330],"having":[131073,327681,1310721,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849],"hash":[262145,393217,458753,3211265,10682371,11796484,11993092,26214403,29818881,29949953,30015489,32243713],"haserrors":[917506,2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,14024705,21233665,22020097,30343169,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785,38010883,42336259,42401795,43581441,44105729,44171265,44302337,44367873,44433409,44498945,44564481,44892161,44957697],"hasdefaultconstructor":[2031617,39321603,43843585],"handled":[2883585,2949121,3080193,3145729,4849665,5767169,5832705,5898241,5963777],"hashing":[10682369,11796481,11993089,26214401],"handling":[23658497,24510465,25886721,26017793],"handlers":[32899079,46202881,46268417,46399489,46530561,46596097,46661633,46792705],"helper":[32964609,47054849],"honors":[38207489],"https":[40828929],"hierarchy":[46202881,46661633,46792705,47644673,47710209,47841281,47906817,48103425,48234497,48300033,48365569,48496641,48758785,48824321]} \ No newline at end of file diff --git a/docs/API/fti/FTI_105.json b/docs/API/fti/FTI_105.json index efc0d32f..ea25b026 100644 --- a/docs/API/fti/FTI_105.json +++ b/docs/API/fti/FTI_105.json @@ -1 +1 @@ -{"initializes":[65543,131075,262146,327681,458753,983042,2490370,2555905,2752513,3407873,3473409,3538948,3604482,7536641,7602177,7667713,7733249,7798785,7864321,7929857,8847361,8912897,8978433,10027009,10092545,11141121,11862017,14352385,14417921,19005441,19070977,19136513,21037057,26476545,26542081,26607617,26673153,26738689,26804225,26935297,27000833,33226759,33554435,33751042,34471938,34930690,35979268,36044802],"instance":[65543,131075,262148,327681,393217,458754,851969,983042,1900545,2031617,2162690,2490370,2555905,2752513,3211265,3407873,3473409,3538948,3604482,6946817,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,8847361,8912897,8978433,10027009,10092545,10485763,10682370,11141122,11796482,11862017,11993090,12517377,13959169,14352385,14417921,19005441,19070977,19136513,21037057,26148865,26476545,26542081,26607617,26673153,26738689,26804225,26935297,27000833,27852801,29753346,29884417,29949953,33226759,33554435,33751042,33882113,34471938,34930690,35979268,36044802,38404097,39190530,39256065,40632321,40697857,43384833,43515905,43581442],"idictionary":[65546,7602180,7864324,7995394,8060930,8257539,8323074,8519683,8585218,8716289,8781825,29556742,33226754,33292290,33357826,33423362,37158914,37224450,42729474],"iequalitycomparer":[65539,7733252,7864324,7929860,33226755,36896770],"int32":[65538,262150,589826,2228225,3604483,3735557,7798786,7929858,8388609,9371649,9895937,9961473,10092548,10289154,11010050,11075588,12386305,13041665,13107201,13369345,13434881,13500418,13697028,16842753,17104897,17170433,18022401,27000834,27131906,27787266,27852801,28442626,28573698,28704770,28835842,28966914,29753348,30081026,32440322,32571397,33226754,33751042,33816577,34013187,34340866,36044801,36110337,36438017,36503554,36569089,36634625,36700161,37486593,40632321,40697857,41025537,41091074,43646977],"item":[65539,131078,262145,327682,524291,589826,720898,851971,1310721,2228226,2424838,2621446,2818054,3342342,3604482,3801089,3866625,3932161,4063233,4128769,4259841,4325377,4456449,4980739,5046274,5111810,5242881,5373955,5505027,5701635,6094851,8126468,8650757,9371654,9437188,9502724,9895937,9961476,10158083,11534337,12058629,12320772,12517383,13172741,13369349,13434881,13500417,13565953,13631489,13697025,13762561,13959172,16646148,17891334,27066369,27131905,27721729,29556737,29622275,30015491,30081026,31522819,31653891,31850499,32309251,32440322,32702465,33292289,36110337,36438017,37027842,37093378,37486594,37879812,40632322,40697858,41025538,41091077,42729474,42926081,43188226,43646978,45678593],"icollection":[65543,589828,2031620,8126466,8192001,8388611,8650757,12058625,12386305,12517377,12582916,12648452,12713988,12779524,16646147,16842754,17891329,29556740,30081028,31195138,33292289,33423361,34275332,34537473,36962306,37158916,37224452,39124993,39256065,42729475,43515906,46989313],"items":[65537,131073,327681,524289,589825,1310721,2424835,2621441,2818049,3342337,3604482,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,8192001,12255233,13500417,18874369,18939905,19857409,20119553,27131905,27787265,29556737,30015489,30081025,32440322,36110337,36438017,41484289,41549825,43843586],"index":[65537,131075,262147,589825,2031617,2162689,2228225,2424835,2621443,2818051,2883585,2949121,3080193,3145729,3342339,8388610,9371653,9895943,9961478,10289153,11010053,11075589,12386305,13369345,13697025,16842754,17432577,17563649,17694724,17825796,18022401,24969217,29556737,29622275,29753346,30081025,31195137,31522819,31653891,31850499,31916033,31981569,32047105,32112641,32309251,34013186,37486599,40763394,41025541,42926081,43581441,43646977],"iterates":[65537,2031617,2228225,8454145,17039361,18087937,29556737,31195137,31391745],"ienumerable":[131073,589826,2424833,2621441,2818049,3342337,3670018,3735556,8978436,9240579,12124163,12648452,12779524,12845060,12910595,12976131,13041670,13107203,13172742,13434883,18808836,19791876,21889028,26411012,28049412,28114948,29294596,29360132,29425668,29491204,30081026,32505858,32571396,33554433,34275330,34865153,34996225,35258369,35913729,36765698,36831234],"ilistener":[131078,327684,1179651,2424838,2621446,2818054,3342342,9043972,9109508,9175044,9699332,9764868,9830404,11206660,11272196,11599876,11665412,14745603,15007747,15073282,15138819,15204355,15269891,15335427,15400963,15466499,21102595,21626883,29622278,29818884,30539779,31522822,31653894,31850502,32309254,32833538,33619971,33685507,34078722,34209794,46006276,46399492],"insertitem":[131073,2424833,2621441,2818049,3342337,3801089,4259841,9371651,29622273,31522817,31653889,31850497,32309249],"inserts":[131073,589825,2424833,2621441,2818049,3342337,9371649,13434881,29622273,30081025,31522817,31653889,31850497,32309249],"itemadded":[131073,720897,2424833,2621441,2818049,3342337,3801091,4259843,4980737,5111809,5373953,5505025,5701633,6094849,32702465,45678593],"itempropertychanged":[131073,327681,1310721,2424833,2621441,2818049,3342337,3866627,4128771,4456451,4980737,5046273,5242881,5373953,5505025,5701633,6094849],"itemremoved":[131073,720897,2424833,2621441,2818049,3342337,3932163,4325379,4980737,5111809,5373953,5505025,5701633,6094849,32702465,45678593],"inotifypropertychanged":[131073,2424833,2621441,2818049,3342337,3997697,4980737,5373953,5505025,5701633,6094849,15859715,20709378,20774914,20840450,22740994,22806530,25624578,25690114,25755650,32636929,44957697],"ireadonlylist":[262146,589826,2031618,3604482,10027012,10092548,12910594,12976133,13107203,13369347,13893634,16711684,16908292,18415618,19398658,23134210,27066372,27131908,30081026,31195138,32440322,33751042,34537473,34603009,36110338,37552130],"implements":[262146,2162689,6356993,8716289,8781825,10747905,10944513,32636929,32833538,33161218,37158913,37224449,40304641,43581441,44957697,45023233,45154305,46399490,46530561,46858241,47316993,47513601,47775745,47841281,47906817],"implicit":[262154,10813450,10878986,33161226,33947662],"inequality":[262145,10944513,33161217],"indicated":[524290,589827,655361,851969,1835010,1900546,2097154,2228226,2359301,2424835,2555909,2621443,2686980,2818051,2883593,2949129,3080199,3145735,3276804,3342339,3604486,3670017,3735555,6881281,12058625,12517377,13041665,13107201,13369345,13828097,13959169,16318465,16384001,17235969,17301505,18153473,18481153,19529729,20709377,20774913,20840449,20905985,22740993,22806529,22872065,23134210,23265281,23330818,23592961,24313858,24444929,25034754,25624577,25690113,25755649,25821185,25952257,26017793,27197441,27262977,27328513,27394049,27525121,27590657,27852801,28639233,28704769,29229057,30015490,30081027,30146561,31064066,31260674,31391745,31457285,31522819,31588357,31653891,31719428,31850499,31916041,31981577,32047111,32112647,32243716,32309251,32440326,32505857,32571395,32833540,32964609,35127300,35454979,35520518,35586054,35848198,36175874,36241410,36306945,36372481,36569090,38207489,38731777,41091073,43384834,43646977,45875201,45940737,46333953,46465025,46792705,48300033],"ilist":[589832,983041,3604482,12845061,12910593,12976129,13434883,13500419,13565956,13631492,13697028,13762564,14417924,27721732,27787268,30081032,32440322,32636929,34340868,34471937,36438018,45088769],"indexof":[589825,13369347,30081025],"insertrange":[589825,13434884,30081025],"icomparable":[589825,13565955,13631490,13697026,13762562,30081025,34340865],"interface":[589825,655361,720897,786433,917505,1179649,1245185,1310721,1376257,1441793,4259841,4325377,4390913,4456449,5111809,5177345,5242881,13565953,13828097,13893633,14024705,14090241,14155777,14221313,14286849,15073281,15138817,15204353,15269889,15335425,15400961,15466497,30081025,30146561,30212097,30277633,30539777,30605313,30670849,30736385,32702468,32833540,33030145,34340865,34406401,37945345,38404097,43253761,45481988,45547523,45613060,45744133,46006275,46071812,46137347,46202884,46268420,47513601],"icomparer":[589826,13631492,13697028,30081026,32899073,34340866,48824321],"idetailedpropertychangetracking":[655363,13828098,30146563,32702465,45481988,47316994,47513602],"inotifycollectionchanged":[720899,4259842,4325378,5111811,14548995,20709378,20774914,20840450,22740994,22806530,25624578,25690114,25755650,32702466,45547525],"ipropertychangetracking":[786435,13893634,30212099,32702465,45481986,45613060],"itemeventargs":[851973,3801090,3932162,4259842,4325378,13959172,32702465,37879810,43188227,45678596],"ivalidatable":[917507,4390914,5177347,14024706,14090242,14155778,14221314,14286850,30277635,32702465,34406403,37945346,43253763,45744132,47841282,47906818],"inherited":[1048579,1507331,1638403,2359321,2424871,2555929,2621479,2686987,2818068,2883602,2949147,3080210,3276825,3342375,5308418,5373957,5439490,5505029,5570562,5701636,5767172,5832708,5898244,6029314,6094853,30408707,30801923,30932995,31457301,31522847,31588373,31653919,31719432,31850511,31916045,31981588,32047117,32243733,32309279,35520517,35586053,43778050,43843587,43974658,44040195,44105729,44236801,44302337,44367875,44433409,44564482,44630019],"implementation":[1048578,1114114,1507330,1638402,3080193,3276801,3342339,14614529,14680065,14811137,14876673,15597569,15663105,15925249,15990785,24182785,26214401,26279937,26345473,26411009,30408706,30474242,30801922,30932994,33030146,33095681,35913731,48168961,48431105,48496641],"invoke":[1179649,1572865,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,6356993,9371649,9895937,9961473,15073283,15794179,21430273,22544385,30539777,30867457,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249,46858241],"inotifycollectionchangedweak":[1245187,15138818,15204354,30605315,32833537,44957698,45154306,45875201,46071812],"inotifyitempropertychanged":[1310723,4456450,5242883,15532035,32833537,45154306,46137348,46202882],"inotifyitempropertychangedweak":[1376259,15269890,15335426,30670851,32833537,44957698,46202884,46333953],"inotifypropertychangedweak":[1441795,15400962,15466498,30736387,32636929,32833537,44957699,45154306,46268420,46465025,47841282],"itempropertychangedeventmanager":[1507332,15532035,15597570,15663106,30801923,32833537,46333957],"invokes":[1572865,2162692,15794177,17629185,17694721,17760257,17825793,30867457,31326212,34668546,34734082],"isnullable":[1900545,38404099,43384833],"indicating":[1900545,2031618,2162692,3538945,26869761,32374785,38404097,39190529,39256065,39976961,40108033,40173569,40370177,43384833,43515906,43581444],"information":[1966081,2293761,18219009,32702465,33030145,38928386,40566785,43450369,45744129,47251457],"isreadonly":[2031617,39256067,43515905],"indexed":[2162699,17432577,17563649,31326210,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40239105,40632321,40697857,41091073,43581449],"invokeget":[2162690,17367041,17432577,17629188,17694724,31326210,34668547],"invokeset":[2162690,17498113,17563649,17760260,17825796,31326210,34734083],"ignoreoninsert":[2162689,40108035,43581441],"ignore":[2162690,40108033,40173569,43581442],"insert":[2162689,9371649,33030145,40108033,43581441,47644673],"ignoreonupdate":[2162689,40173571,43581441],"isindexed":[2162689,40239107,43581441],"iskey":[2162689,40304643,43581441],"isreferencenullable":[2162689,40370179,43581441],"indicate":[2293761,18219009,32702465,33030146,33095681,45678593,47251457,48300033,48627713],"inherit":[2293761,6160385,18219009,33030145,46858241,47251457],"invalidate":[2293762,18219009,41222145,41287681,43712514],"ischanged":[2359298,2424834,2555906,2621442,6750209,18350081,18874369,19202049,19857409,31457281,31522817,31588353,31653889,41353219,41484291,41680899,41811971,43778049,43843585,43974657,44040193,48300033],"imperative":[2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,21495809,21561345,22609921,22675457,31457282,31522818,31588354,31653890,31719426,31784962,31850498,32243714,32309250],"ischangedlocal":[2359297,2424833,2555905,2621441,2883586,2949122,6750209,23724033,31916033,31981569,41418755,41549827,41746435,41877507,42205187,43778049,43843585,43974657,44040193,44302337,44367873,48300033],"implement":[2424833,18350081,18612225,18874369,18939905,19202049,19595265,19857409,20119553,41549825,43843585,45744129,45875201,46333953,46465025],"ichangetracking":[2424833,18350081,18874369,19202049,19857409,33030145,41418753,41549826,41746433,41877505,42205185,43843585,47513601],"ieditableobject":[2555906,2621442,19333121,19464193,19988481,20054017,31588354,31653890,33030146,47513602],"ibindinglist":[2555905,2621441,19464193,20054017,31588353,31653889],"internals":[2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,4521986,4587522,4653058,4718594,4784130,4849666,4915202,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7405569,7471105,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592963,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444931,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821187,25886722,25952259,26017794,26083330,26148866,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,33095681,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,44105729,44171265,44236801,44302337,44367873,44433409,44498945,47316994,47382529,47513602,47579137,47775748,47841282,47906819,47972356,48037893,48103426,48168964,48234498,48300034,48365570,48431106,48496641],"implementors":[2883587,2949123,3080194,3145730,23134209,23330817,23592961,24313857,24444929,25034753,25821185,31916035,31981571,32047106,32112642,35520513,35586049,35848193],"ischangedgraph":[2883585,2949121,23396355,31916033,31981569],"isdefined":[2883585,2949121,3080193,3145729,23461891,24379395,25100291,31916033,31981569,32047105,32112641],"indicates":[2883585,2949121,3014657,3080193,3145729,3670018,6422529,7405569,23461889,23592961,24379393,24444929,25100289,25821185,25952257,26869761,27918337,27983873,31916033,31981569,32047105,32112641,32505858,32833537,33030147,33095681,46137345,47448065,47644673,47710209,48103425],"isediting":[2949121,42336259,44367873],"internal":[3080194,3145730,23199745,23658497,24248322,24510466,24772610,25165825,25231361,25296897,25362433,25886722,32047106,32112642],"invariantculture":[3538946,26607617,26738689,35979266],"int64":[3604485,27590661,27656195,32440325,36372485],"isnullorempty":[3670017,27918339,32505857],"isnullorwhitespace":[3670017,27983875,32505857],"interval":[3735553,28901377,32571393,36700161],"ireadonlycollection":[3735554,12910595,29032452,29097988,32571394],"iclonable":[6356995,46858242],"invoked":[6356993,20774913,25624577],"int":[7798785,7929857,8388609,9371649,9633793,9895937,9961473,10092546,10289153,10682369,11010049,11075586,11796481,11993089,12386305,13041665,13107201,13369345,13434881,13500418,13697026,16842753,17104897,17170433,18022401,24969217,26148865,26869761,27000833,27131905,27787265,27852801,28442625,28573697,28704769,28835841,28966913,36962305,37355521,37486593,37617665,37814273,39124993,40763393,40960001,41025537,42663937],"integer":[7798785,7929857,8388609,9371649,9633793,9895937,9961473,10092546,10289153,10682369,11010049,11075586,11796481,11993089,12386305,13041665,13107201,13369345,13434881,13500418,13697026,16842753,17104897,17170433,18022401,24969217,26148865,26869762,27000833,27131905,27787265,27852801,28442625,28573697,28704769,28835841,28966913,36962305,37355521,37486593,37617665,37814273,39124993,40763393,40960001,41025537,42663937],"indexing":[8388609,12386305,16842753],"ienumerator":[8454147,12451842,17039363,18087938,32636929,45023234],"iterate":[8454145,17039361],"inserted":[9371649],"interfaces":[12845057,32702465,32833537],"input":[13172737,29032449],"idisposable":[16187395,16252931,16318466,16384002],"intended":[17104897,17170433],"invalidoperationexception":[17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,23920641,23986177,24051713,24641537,24707073,24838145,24903681,37552129],"insensitive":[17956865,18153473,41091073],"irevertiblechangetracking":[18612225,18939905,19595265,20119553],"ignores":[24444929],"immutable":[26083329,26148865,32964609,47185921],"ignorecase":[26738691,26804227],"ignored":[26738689,26804225],"inclusive":[27197441,27262977,27328513,27394049,27525121,27590657],"indefinitely":[28901377,28966913],"implementing":[32636930,44957698],"includes":[32636929,45154305],"item1":[32636932,45219842,45285378],"item2":[32636932,45219842,45285378],"immediate":[32833537,46661633],"ignoreoninsertattribute":[33030145,47644675],"included":[33030146,47644673,47710209],"ignoreonupdateattribute":[33030145,47710211],"immutablearray":[38141954,38993922,39059458,39387138,40566786,40894466],"inside":[41091073],"iequatable":[44892164,45219842],"inherits":[45481985,45875201,46202881,46333953,46465025,47316993,47382529,47513601,47579137,47775745,47906817,47972353,48037889,48168961,48431105,48496641],"idataerrorinfo":[45744130],"inheritance":[45875201,46333953,46465025,47316993,47382529,47513601,47579137,47775745,47906817,47972353,48037889,48168961,48431105,48496641],"iusespropertytracking":[47775746,47906818]} \ No newline at end of file +{"initializes":[65543,131075,262146,327681,458753,983042,2490370,2555905,2752513,3407873,3473409,3538948,3604482,7536641,7602177,7667713,7733249,7798785,7864321,7929857,8847361,8912897,8978433,10027009,10092545,11141121,11862017,14352385,14417921,19070977,19136513,19202049,21102593,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,33292295,33619971,33816578,34537474,34996226,36044804,36110338],"instance":[65543,131075,262148,327681,393217,458754,851969,983042,1900545,2031617,2162690,2490370,2555905,2752513,3211265,3407873,3473409,3538948,3604482,6946817,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,8847361,8912897,8978433,10027009,10092545,10485763,10682370,11141122,11796482,11862017,11993090,12517377,13959169,14352385,14417921,19070977,19136513,19202049,21102593,26214401,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,27918337,29818882,29949953,30015489,33292295,33619971,33816578,33947649,34537474,34996226,36044804,36110338,38469633,39321602,39387137,40894465,40960001,43712513,43843585,43909122],"idictionary":[65546,7602180,7864324,7995394,8060930,8257539,8323074,8519683,8585218,8716289,8781825,29622278,33292290,33357826,33423362,33488898,37224450,37289986,43057154],"iequalitycomparer":[65539,7733252,7864324,7929860,33292291,36962306],"int32":[65538,262150,589826,2228225,3604483,3735557,7798786,7929858,8388609,9371649,9895937,9961473,10092548,10289154,11010050,11075588,12386305,13041665,13107201,13369345,13434881,13500418,13697028,16842753,17170433,17235969,18087937,27066370,27197442,27852802,27918337,28508162,28639234,28770306,28901378,29032450,29818884,30146562,32505858,32636933,33292290,33816578,33882113,34078723,34406402,36110337,36175873,36503553,36569090,36634625,36700161,36765697,37552129,39452673,40894465,40960001,41353217,41418754,43974657],"item":[65539,131078,262145,327682,524291,589826,720898,851971,1310721,2031618,2228226,2424838,2621446,2818054,3342342,3604482,3801089,3866625,3932161,4063233,4128769,4259841,4325377,4456449,4980739,5046274,5111810,5242881,5373955,5505027,5701635,6094851,8126468,8650757,9371654,9437188,9502724,9895937,9961476,10158083,11534337,12058629,12320772,12517383,13172741,13369349,13434881,13500417,13565953,13631489,13697025,13762561,13959172,16646148,17104901,17956870,27131905,27197441,27787265,29622273,29687811,30081027,30146562,31260673,31588355,31719427,31916035,32374787,32505858,32768001,33357825,36175873,36503553,37093378,37158914,37552130,37945348,39452674,40894466,40960002,41353218,41418757,43057154,43253761,43515906,43843585,43974658,46006273],"icollection":[65543,589828,2031620,8126466,8192001,8388611,8650757,12058625,12386305,12517377,12582916,12648452,12713988,12779524,16646147,16842754,17956865,29622276,30146564,31260674,33357825,33488897,34340868,34603009,37027842,37224452,37289988,39190529,39387137,43057155,43843586,47316993],"items":[65537,131073,327681,524289,589825,1310721,2424835,2621441,2818049,3342337,3604482,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,8192001,12255233,13500417,18939905,19005441,19922945,20185089,27197441,27852801,29622273,30081025,30146561,32505858,36175873,36503553,41811969,41877505,44171266],"index":[65537,131075,262147,589825,2031619,2162689,2228225,2424835,2621443,2818051,2883585,2949121,3080193,3145729,3342339,8388610,9371653,9895943,9961478,10289153,11010053,11075589,12386305,13369345,13697025,16842754,17104898,17498113,17629185,17760260,17891332,18087937,25034753,29622273,29687811,29818882,30146561,31260674,31588355,31719427,31916035,31981569,32047105,32112641,32178177,32374787,34078722,37552135,39452677,41025538,41353221,43253761,43843585,43909121,43974657],"iterates":[65537,2031617,2228225,8454145,17039361,18153473,29622273,31260673,31457281],"ienumerable":[131073,589826,2424833,2621441,2818049,3342337,3670018,3735556,8978436,9240579,12124163,12648452,12779524,12845060,12910595,12976131,13041670,13107203,13172742,13434883,18874372,19857412,21954564,26476548,28114948,28180484,29360132,29425668,29491204,29556740,30146562,32571394,32636932,33619969,34340866,34930689,35061761,35323905,35979265,36831234,36896770],"ilistener":[131078,327684,1179651,2424838,2621446,2818054,3342342,9043972,9109508,9175044,9699332,9764868,9830404,11206660,11272196,11599876,11665412,14745603,15007747,15073282,15138819,15204355,15269891,15335427,15400963,15466499,21168131,21692419,29687814,29884420,30605315,31588358,31719430,31916038,32374790,32899074,33685507,33751043,34144258,34275330,46333956,46727172],"insertitem":[131073,2424833,2621441,2818049,3342337,3801089,4259841,9371651,29687809,31588353,31719425,31916033,32374785],"inserts":[131073,589825,2424833,2621441,2818049,3342337,9371649,13434881,29687809,30146561,31588353,31719425,31916033,32374785],"itemadded":[131073,720897,2424833,2621441,2818049,3342337,3801091,4259843,4980737,5111809,5373953,5505025,5701633,6094849,32768001,46006273],"itempropertychanged":[131073,327681,1310721,2424833,2621441,2818049,3342337,3866627,4128771,4456451,4980737,5046273,5242881,5373953,5505025,5701633,6094849],"itemremoved":[131073,720897,2424833,2621441,2818049,3342337,3932163,4325379,4980737,5111809,5373953,5505025,5701633,6094849,32768001,46006273],"inotifypropertychanged":[131073,2424833,2621441,2818049,3342337,3997697,4980737,5373953,5505025,5701633,6094849,15859715,20774914,20840450,20905986,22806530,22872066,25690114,25755650,25821186,32702465,45285377],"ireadonlylist":[262146,589826,2031618,3604482,10027012,10092548,12910594,12976133,13107203,13369347,13893634,16711684,16908292,18481154,19464194,23199746,27131908,27197444,30146562,31260674,32505858,33816578,34603009,34668545,36175874,37617666],"implements":[262146,2162689,6356993,8716289,8781825,10747905,10944513,32702465,32899074,33226754,37224449,37289985,40566785,43909121,45285377,45350913,45481985,46727170,46858241,47185921,47644673,47841281,48103425,48168961,48234497],"implicit":[262154,10813450,10878986,33226762,34013198],"inequality":[262145,10944513,33226753],"indicated":[524290,589827,655361,851969,1835010,1900546,2097154,2228226,2359301,2424835,2555909,2621443,2686980,2818051,2883593,2949129,3080199,3145735,3276804,3342339,3604486,3670017,3735555,6881281,12058625,12517377,13041665,13107201,13369345,13828097,13959169,16318465,16384001,17301505,17367041,18219009,18546689,19595265,20774913,20840449,20905985,20971521,22806529,22872065,22937601,23199746,23330817,23396354,23658497,24379394,24510465,25100290,25690113,25755649,25821185,25886721,26017793,26083329,27262977,27328513,27394049,27459585,27590657,27656193,27918337,28704769,28770305,29294593,30081026,30146563,30212097,31129602,31326210,31457281,31522821,31588355,31653893,31719427,31784964,31916035,31981577,32047113,32112647,32178183,32309252,32374787,32505862,32571393,32636931,32899076,33030145,35192836,35520515,35586054,35651590,35913734,36241410,36306946,36372481,36438017,36634626,38273025,38797313,41418753,43712514,43974657,46202881,46268417,46661633,46792705,47120385,48627713],"ilist":[589832,983041,3604482,12845061,12910593,12976129,13434883,13500419,13565956,13631492,13697028,13762564,14417924,27787268,27852804,30146568,32505858,32702465,34406404,34537473,36503554,45416449],"indexof":[589825,2031617,13369347,17104899,30146561,31260673],"insertrange":[589825,13434884,30146561],"icomparable":[589825,13565955,13631490,13697026,13762562,30146561,34406401],"interface":[589825,655361,720897,786433,917505,1179649,1245185,1310721,1376257,1441793,4259841,4325377,4390913,4456449,5111809,5177345,5242881,13565953,13828097,13893633,14024705,14090241,14155777,14221313,14286849,15073281,15138817,15204353,15269889,15335425,15400961,15466497,30146561,30212097,30277633,30343169,30605313,30670849,30736385,30801921,32768004,32899076,33095681,34406401,34471937,38010881,38469633,43581441,45809668,45875203,45940740,46071813,46333955,46399492,46465027,46530564,46596100,47841281],"icomparer":[589826,13631492,13697028,30146562,32964609,34406402,49152001],"idetailedpropertychangetracking":[655363,13828098,30212099,32768001,45809668,47644674,47841282],"inotifycollectionchanged":[720899,4259842,4325378,5111811,14548995,20774914,20840450,20905986,22806530,22872066,25690114,25755650,25821186,32768002,45875205],"ipropertychangetracking":[786435,13893634,30277635,32768001,45809666,45940740],"itemeventargs":[851973,3801090,3932162,4259842,4325378,13959172,32768001,37945346,43515907,46006276],"ivalidatable":[917507,4390914,5177347,14024706,14090242,14155778,14221314,14286850,30343171,32768001,34471939,38010882,43581443,46071812,48168962,48234498],"inherited":[1048579,1507331,1638403,2359321,2424871,2555929,2621479,2686987,2818068,2883602,2949147,3080210,3276825,3342375,5308418,5373957,5439490,5505029,5570562,5701636,5767172,5832708,5898244,6029314,6094853,30474243,30867459,30998531,31522837,31588383,31653909,31719455,31784968,31916047,31981581,32047124,32112653,32309269,32374815,35586053,35651589,44105730,44171267,44302338,44367875,44433409,44564481,44630017,44695555,44761089,44892162,44957699],"implementation":[1048578,1114114,1507330,1638402,3080193,3276801,3342339,14614529,14680065,14811137,14876673,15597569,15663105,15925249,15990785,24248321,26279937,26345473,26411009,26476545,30474242,30539778,30867458,30998530,33095682,33161217,35979267,48496641,48758785,48824321],"invoke":[1179649,1572865,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,6356993,9371649,9895937,9961473,15073283,15794179,21495809,22609921,30605313,30932993,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785,47185921],"inotifycollectionchangedweak":[1245187,15138818,15204354,30670851,32899073,45285378,45481986,46202881,46399492],"inotifyitempropertychanged":[1310723,4456450,5242883,15532035,32899073,45481986,46465028,46530562],"inotifyitempropertychangedweak":[1376259,15269890,15335426,30736387,32899073,45285378,46530564,46661633],"inotifypropertychangedweak":[1441795,15400962,15466498,30801923,32702465,32899073,45285379,45481986,46596100,46792705,48168962],"itempropertychangedeventmanager":[1507332,15532035,15597570,15663106,30867459,32899073,46661637],"invokes":[1572865,2162692,15794177,17694721,17760257,17825793,17891329,30932993,31391748,34734082,34799618],"isnullable":[1900545,38469635,43712513],"indicating":[1900545,2031618,2162692,3538945,26935297,32440321,38469633,39321601,39387137,40239105,40370177,40435713,40632321,43712513,43843586,43909124],"information":[1966081,2293761,18284545,32768001,33095681,38993922,40828929,43778049,46071809,47579137],"isreadonly":[2031617,39387139,43843585],"indexed":[2162699,17498113,17629185,31391746,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40501249,40894465,40960001,41418753,43909129],"invokeget":[2162690,17432577,17498113,17694724,17760260,31391746,34734083],"invokeset":[2162690,17563649,17629185,17825796,17891332,31391746,34799619],"ignoreoninsert":[2162689,40370179,43909121],"ignore":[2162690,40370177,40435713,43909122],"insert":[2162689,9371649,33095681,40370177,43909121,47972353],"ignoreonupdate":[2162689,40435715,43909121],"isindexed":[2162689,40501251,43909121],"iskey":[2162689,40566787,43909121],"isreferencenullable":[2162689,40632323,43909121],"indicate":[2293761,18284545,32768001,33095682,33161217,46006273,47579137,48627713,48955393],"inherit":[2293761,6160385,18284545,33095681,47185921,47579137],"invalidate":[2293762,18284545,41549825,41615361,44040194],"ischanged":[2359298,2424834,2555906,2621442,6750209,18415617,18939905,19267585,19922945,31522817,31588353,31653889,31719425,41680899,41811971,42008579,42139651,44105729,44171265,44302337,44367873,48627713],"imperative":[2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,21561345,21626881,22675457,22740993,31522818,31588354,31653890,31719426,31784962,31850498,31916034,32309250,32374786],"ischangedlocal":[2359297,2424833,2555905,2621441,2883586,2949122,6750209,23789569,31981569,32047105,41746435,41877507,42074115,42205187,42532867,44105729,44171265,44302337,44367873,44630017,44695553,48627713],"implement":[2424833,18415617,18677761,18939905,19005441,19267585,19660801,19922945,20185089,41877505,44171265,46071809,46202881,46661633,46792705],"ichangetracking":[2424833,18415617,18939905,19267585,19922945,33095681,41746433,41877506,42074113,42205185,42532865,44171265,47841281],"ieditableobject":[2555906,2621442,19398657,19529729,20054017,20119553,31653890,31719426,33095682,47841282],"ibindinglist":[2555905,2621441,19529729,20119553,31653889,31719425],"internals":[2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,4521986,4587522,4653058,4718594,4784130,4849666,4915202,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7405569,7471105,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658499,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510467,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886723,25952258,26017795,26083330,26148866,26214402,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,33161217,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,44433409,44498945,44564481,44630017,44695553,44761089,44826625,47644674,47710209,47841282,47906817,48103428,48168962,48234499,48300036,48365573,48431106,48496644,48562178,48627714,48693250,48758786,48824321],"implementors":[2883587,2949123,3080194,3145730,23199745,23396353,23658497,24379393,24510465,25100289,25886721,31981571,32047107,32112642,32178178,35586049,35651585,35913729],"ischangedgraph":[2883585,2949121,23461891,31981569,32047105],"isdefined":[2883585,2949121,3080193,3145729,23527427,24444931,25165827,31981569,32047105,32112641,32178177],"indicates":[2883585,2949121,3014657,3080193,3145729,3670018,6422529,7405569,23527425,23658497,24444929,24510465,25165825,25886721,26017793,26935297,27983873,28049409,31981569,32047105,32112641,32178177,32571394,32899073,33095683,33161217,46465025,47775745,47972353,48037889,48431105],"internal":[2883585,3080193,3145730,23265281,23724034,24313857,24576002,24838146,25231361,25296897,25362433,25427969,25952258,31981569,32112641,32178178],"isediting":[2949121,42663939,44695553],"invariantculture":[3538946,26673153,26804225,36044802],"int64":[3604485,27656197,27721731,32505861,36438021],"isnullorempty":[3670017,27983875,32571393],"isnullorwhitespace":[3670017,28049411,32571393],"interval":[3735553,28966913,32636929,36765697],"ireadonlycollection":[3735554,12910595,29097988,29163524,32636930],"iclonable":[6356995,47185922],"invoked":[6356993,20840449,25690113],"int":[7798785,7929857,8388609,9371649,9633793,9895937,9961473,10092546,10289153,10682369,11010049,11075586,11796481,11993089,12386305,13041665,13107201,13369345,13434881,13500418,13697026,16842753,17104897,17170433,17235969,18087937,25034753,26214401,26935297,27066369,27197441,27852801,27918337,28508161,28639233,28770305,28901377,29032449,37027841,37421057,37552129,37683201,37879809,39190529,39452673,41025537,41287681,41353217,42991617],"integer":[7798785,7929857,8388609,9371649,9633793,9895937,9961473,10092546,10289153,10682369,11010049,11075586,11796481,11993089,12386305,13041665,13107201,13369345,13434881,13500418,13697026,16842753,17104897,17170433,17235969,18087937,25034753,26214401,26935298,27066369,27197441,27852801,27918337,28508161,28639233,28770305,28901377,29032449,37027841,37421057,37552129,37683201,37879809,39190529,39452673,41025537,41287681,41353217,42991617],"indexing":[8388609,12386305,16842753],"ienumerator":[8454147,12451842,17039363,18153474,32702465,45350914],"iterate":[8454145,17039361],"inserted":[9371649],"interfaces":[12845057,32768001,32899073],"input":[13172737,29097985],"idisposable":[16187395,16252931,16318466,16384002],"intended":[17170433,17235969],"invalidoperationexception":[17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,23986177,24051713,24117249,24707073,24772609,24903681,24969217,37617665],"insensitive":[18022401,18219009,41418753],"irevertiblechangetracking":[18677761,19005441,19660801,20185089],"ignores":[24510465],"immutable":[26148865,26214401,33030145,47513601],"ignorecase":[26804227,26869763],"ignored":[26804225,26869761],"inclusive":[27262977,27328513,27394049,27459585,27590657,27656193],"indefinitely":[28966913,29032449],"implementing":[32702466,45285378],"includes":[32702465,45481985],"item1":[32702468,45547522,45613058],"item2":[32702468,45547522,45613058],"immediate":[32899073,46989313],"ignoreoninsertattribute":[33095681,47972355],"included":[33095682,47972353,48037889],"ignoreonupdateattribute":[33095681,48037891],"immutablearray":[38207490,39059458,39124994,39583746,39649282,40828930,41222146],"inside":[41418753],"iequatable":[45219844,45547522],"inherits":[45809665,46202881,46530561,46661633,46792705,47644673,47710209,47841281,47906817,48103425,48234497,48300033,48365569,48496641,48758785,48824321],"idataerrorinfo":[46071810],"inheritance":[46202881,46661633,46792705,47644673,47710209,47841281,47906817,48103425,48234497,48300033,48365569,48496641,48758785,48824321],"iusespropertytracking":[48103426,48234498]} \ No newline at end of file diff --git a/docs/API/fti/FTI_106.json b/docs/API/fti/FTI_106.json index 61c92bd4..54b0ad10 100644 --- a/docs/API/fti/FTI_106.json +++ b/docs/API/fti/FTI_106.json @@ -1 +1 @@ -{"just":[131073,2424833,2621441,2818049,2883585,2949121,3080193,3145729,3342337,3997697,4784129,4980737,5373953,5505025,5701633,5767169,5832705,5898241,5963777,6094849,13238273,13303809,13434881,13500417],"join":[3670018,7340033,28049412,28114948,32505858,32899073,48955394],"joins":[3670018,28049409,28114945,32505858]} \ No newline at end of file +{"just":[131073,2424833,2621441,2818049,2883585,2949121,3080193,3145729,3342337,3997697,4784129,4980737,5373953,5505025,5701633,5767169,5832705,5898241,5963777,6094849,13238273,13303809,13434881,13500417],"join":[3670018,7340033,28114948,28180484,32571394,32964609,49283074],"joins":[3670018,28114945,28180481,32571394]} \ No newline at end of file diff --git a/docs/API/fti/FTI_107.json b/docs/API/fti/FTI_107.json index a81f3a60..bf23915e 100644 --- a/docs/API/fti/FTI_107.json +++ b/docs/API/fti/FTI_107.json @@ -1 +1 @@ -{"key":[65545,2162689,7995399,8060932,8257542,8323076,8519687,8585219,8716296,8781830,13238273,13303809,29556744,32636929,33292290,33357826,33423362,33488898,37027842,37093381,40304641,42729473,43581441,44892163],"keyvaluepair":[65538,8126468,8388611,8454146,8650756,29556738,33292289,33423361],"keys":[65539,589825,13238273,30081025,37027841,37158917,42729475],"known":[2228228,17891329,17956865,31391746,34799618,40960001,41156609,43646978],"key1":[8060931,8323075,8585220,8781827,37027843,45219842,45285378],"key2":[8060931,8323075,8585220,8781827,37027843,45219842,45285378]} \ No newline at end of file +{"key":[65545,2162689,7995399,8060932,8257542,8323076,8519687,8585219,8716296,8781830,13238273,13303809,29622280,32702465,33357826,33423362,33488898,33554434,37093378,37158917,40566785,43057153,43909121,45219843],"keyvaluepair":[65538,8126468,8388611,8454146,8650756,29622274,33357825,33488897],"keys":[65539,589825,13238273,30146561,37093377,37224453,43057155],"known":[2228228,17956865,18022401,31457282,34865154,41287681,41484289,43974658],"key1":[8060931,8323075,8585220,8781827,37093379,45547522,45613058],"key2":[8060931,8323075,8585220,8781827,37093379,45547522,45613058]} \ No newline at end of file diff --git a/docs/API/fti/FTI_108.json b/docs/API/fti/FTI_108.json index 706caf26..e651f6a8 100644 --- a/docs/API/fti/FTI_108.json +++ b/docs/API/fti/FTI_108.json @@ -1 +1 @@ -{"list":[131075,262154,327681,524289,589837,786433,2162690,2228225,2293762,2359297,2424834,2555905,2621442,2818051,2949122,3342338,3604486,3670018,3735553,8912904,9240580,10027013,10092549,10158082,10223617,10289153,10551298,10813449,10878977,11141123,12124167,12582920,12648452,12713988,12779525,12845057,12910593,12976129,13041667,13107201,13172739,13369349,13434884,13500419,13565959,13631495,13697031,13762567,13893633,14417924,18219009,18415617,18743304,19398657,19726344,21823497,23986177,24051713,26345480,27066376,27131915,27721737,27787276,28049409,28114945,29032455,29622273,29753349,30015489,30081037,30212097,31457281,31522817,31588353,31653889,31850497,31981570,32309249,32440326,32505858,32571393,33161219,33226753,33292289,33357825,33423361,33488897,33554435,33619969,33685505,33751041,33816579,33882115,33947652,34013185,34078721,34144257,34209793,34275334,34340869,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865154,34930689,34996226,35061761,35127297,35192833,35258371,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913730,35979265,36044801,36110341,36175873,36241409,36306945,36372481,36438019,36503553,36569089,36634625,36700161,36765697,36831233,37552133,37683201,39387137,40894465,41156609,41222145,41287681,42926082,42991617,43581442,43646977,43712514],"listen":[131073,327681,1310721,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,32636930,32833539,44957698,46071809,46202881,46268417],"live":[524290,12451841,30015489,37814273,43122689],"lists":[589825,12845057,13041665,30081025],"lightweight":[589825,13107201,30081025],"locates":[589825,13369345,30081025],"level":[917507,2359301,2424837,2555909,2621445,2686980,2752517,2818053,2949122,3276805,3342341,6815745,14090241,14155777,14221314,21233665,21299201,21364738,21495809,21561345,22085633,22216705,22282242,22609921,22675457,23789569,24051713,30277635,31457285,31522821,31588357,31653893,31719428,31784965,31850501,31981569,32243717,32309253,33095681,34406402,35192834,35323906,48037889,48300033],"listeners":[1048577,1114113,1507329,1638401,14942209,30408705,30474241,30801921,30932993],"listener":[1179649,1572868,15073281,15728643,15794178,30539777,30867459,32833537,46399492],"lockutilities":[1835011,16187394,16252930,16318466,16384002,31064067,32899073,46727172],"lock":[1835010,16318469,16384005,17235969,17301505,31064066],"looking":[2424833,3211265,26083329,32178177,41484289,43843585],"leaving":[3604482,27066369,27131905,32440322,36110338],"limit":[6225921],"lazy":[6684673,48300033],"loading":[6684673,48300033],"locate":[8257537,10158081,16646145],"like":[10682369,11796481,11993089,26148865],"legacy":[12910593,12976129],"lead":[16318465,16384001],"locks":[16318465,16384001,32899073,46727169],"locally":[17235969,17301505],"look":[17891329],"long":[27590662,27656196],"larger":[27852801],"longer":[28180481],"limitations":[33095681,47841281],"listened":[45940737]} \ No newline at end of file +{"list":[131075,262154,327681,524289,589837,786433,2162691,2228225,2293762,2359297,2424834,2555905,2621442,2818051,2949122,3342338,3604486,3670018,3735553,8912904,9240580,10027013,10092549,10158082,10223617,10289153,10551298,10813449,10878977,11141123,12124167,12582920,12648452,12713988,12779525,12845057,12910593,12976129,13041667,13107201,13172739,13369349,13434884,13500419,13565959,13631495,13697031,13762567,13893633,14417924,17104897,18284545,18481153,18808840,19464193,19791880,21889033,24051713,24117249,26411016,27131912,27197451,27787273,27852812,28114945,28180481,29097991,29687809,29818885,30081025,30146573,30277633,31522817,31588353,31653889,31719425,31916033,32047106,32374785,32505862,32571394,32636929,33226755,33292289,33357825,33423361,33488897,33554433,33619971,33685505,33751041,33816577,33882115,33947651,34013188,34078721,34144257,34209793,34275329,34340870,34406405,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930690,34996225,35061762,35127297,35192833,35258369,35323907,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979266,36044801,36110337,36175877,36241409,36306945,36372481,36438017,36503555,36569089,36634625,36700161,36765697,36831233,36896769,37617669,37748737,39583745,39649281,41222145,41484289,41549825,41615361,43253762,43319297,43909123,43974657,44040194],"listen":[131073,327681,1310721,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,32702466,32899075,45285378,46399489,46530561,46596097],"live":[524290,12451841,30081025,37879809,43450369],"lists":[589825,12845057,13041665,30146561],"lightweight":[589825,13107201,30146561],"locates":[589825,13369345,30146561],"level":[917507,2359301,2424837,2555909,2621445,2686980,2752517,2818053,2949122,3276805,3342341,6815745,14090241,14155777,14221314,21299201,21364737,21430274,21561345,21626881,22151169,22282241,22347778,22675457,22740993,23855105,24117249,30343171,31522821,31588357,31653893,31719429,31784964,31850501,31916037,32047105,32309253,32374789,33161217,34471938,35258370,35389442,48365569,48627713],"listeners":[1048577,1114113,1507329,1638401,14942209,30474241,30539777,30867457,30998529],"listener":[1179649,1572868,15073281,15728643,15794178,30605313,30932995,32899073,46727172],"lockutilities":[1835011,16187394,16252930,16318466,16384002,31129603,32964609,47054852],"lock":[1835010,16318469,16384005,17301505,17367041,31129602],"looking":[2424833,3211265,26148865,32243713,41811969,44171265],"leaving":[3604482,27131905,27197441,32505858,36175874],"limit":[6225921],"lazy":[6684673,48627713],"loading":[6684673,48627713],"locate":[8257537,10158081,16646145,17104897],"like":[10682369,11796481,11993089,26214401],"legacy":[12910593,12976129],"lead":[16318465,16384001],"locks":[16318465,16384001,32964609,47054849],"locally":[17301505,17367041],"look":[17956865],"long":[27656198,27721732],"larger":[27918337],"longer":[28246017],"limitations":[33161217,48168961],"listened":[46268417]} \ No newline at end of file diff --git a/docs/API/fti/FTI_109.json b/docs/API/fti/FTI_109.json index f6452bff..ac46beca 100644 --- a/docs/API/fti/FTI_109.json +++ b/docs/API/fti/FTI_109.json @@ -1 +1 @@ -{"members":[65538,131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604481,3670018,3735554,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,7405569,7471105,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32505857,32571393,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48758785,48824321,48889857,48955393,49020929,49086465],"methods":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,786433,917505,983041,1048577,1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,2031617,2097153,2162689,2228225,2359297,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3080193,3145729,3211265,3276801,3342337,3538945,3604481,3670017,3735553,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32899076,33030145,45416449,46727169,47513601,49020929,49086465],"matter":[131076,720898,2424836,2621444,2818052,3342340,3801089,3932161,4259841,4325377,4980738,5111810,5373954,5505026,5701634,6094850,9437185,9502721,29622274,31522818,31653890,31850498,32309250],"match":[131073,2031618,2359300,2424836,2555908,2621444,2686980,2818052,2883589,2949125,3080197,3145733,3276804,3342340,9633796,16908289,16973825,20709377,20774913,20840449,20905985,22740993,22806529,22872065,25624577,25690113,25755649,25952257,26017793,29622273,31195138,31457284,31522820,31588356,31653892,31719428,31850500,31916037,31981573,32047109,32112645,32243716,32309252,34603010,35127300,35454979,35520517,35586053,35848197,40632321,40697857,47448065],"movenext":[196609,10420227,29687809],"method":[327681,1048578,1114114,1507330,1638402,2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,3735553,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519682,8585218,8650754,8716290,8781826,9043969,9109505,9175041,9240577,9306113,9371650,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895938,9961474,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534338,11599873,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,14024705,14090241,14155777,14221313,14286849,14483457,14614530,14680066,14745601,14811138,14876674,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15597570,15663106,15794177,15925250,15990786,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104899,17170435,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18350081,18415617,18481153,18546689,18612225,18874369,18939905,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19857409,19922945,19988481,20054017,20119553,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21102593,21168129,21233665,21299201,21364737,21430273,21495810,21561346,21626881,21692417,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609922,22675458,22740993,22806529,22872065,22937601,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23855105,23920642,23986177,24051713,24117249,24248321,24313857,24379393,24444929,24510465,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26869761,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360130,29425665,29491201,29818881,30408706,30474242,30801922,30932994,31457282,31522818,31588354,31653890,31719426,31784962,31850498,32243714,32309250,32571393,33030145,33292289,33357825,33423361,33488897,33619969,33685505,33816577,33882113,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34537473,34603009,34668545,34734081,34799617,35061761,35127297,35192833,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765698,36831233,37289985,48693249],"makes":[589825,12845057,30081025],"multiple":[589825,12845057,23920641,27131905,30081025],"makenonnullable":[1900545,16449539,31129601],"makenullable":[1900545,16515075,31129601],"mappedschemaname":[1900545,38469635,43384833],"mappedtablename":[1900545,38535171,43384833],"mappedviewname":[1900545,38600707,43384833],"mappedviewschemaname":[1900545,38666243,43384833],"metadata":[1900545,1966081,2031617,2097155,2162689,2228227,2883587,2949123,3080195,3145731,6160386,6225922,6291458,6356994,16449538,16515074,16580610,16646147,16711682,16777218,16842754,16908290,16973826,17039362,17104899,17170435,17235974,17301510,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891331,17956866,18022402,18087938,18153475,23003137,23789569,24576001,25165825,25296897,25493505,25559041,31129601,31195137,31260675,31326209,31391746,31916033,31981569,32047105,32112641,32964612,34537473,34603009,34668545,34734081,34799617,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566787,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091075,41156610,42401797,43384833,43450369,43515905,43581441,43646978,44302338,44367874,44433410,44498946,46792707,46858242,46923778,46989314,47054851,47120387,47185922],"metadatacache":[2097155,17104898,17170434,17235970,17301506,31260675,32964609,47054852],"map":[2162689,39976961,43581441],"mappedcolumnname":[2162689,40435715,43581441],"mapped":[2162689,3473409,6488065,26476545,26542081,40435713,41091073,42598401,43581441,44761089,48300033],"modelbase":[2293761,2359297,3276804,6029315,18219009,18284545,26214403,32243715,33030150,44564483,47251457,47316994,47513601,48431110],"modeling":[2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,4521986,4587522,4653058,4718594,4784130,4849666,4915202,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7405569,7471105,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774915,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592963,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444931,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624579,25690114,25755650,25821187,25886722,25952259,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,33030145,33095681,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,47251458,47316997,47382532,47448066,47513605,47579140,47644674,47710210,47775748,47841282,47906819,47972356,48037893,48103426,48168964,48234498,48300034,48365570,48431109,48496644,48562178,48627714,48693250,48758786],"marks":[2359297,2424833,2555905,2621441,2883585,2949121,18350081,18874369,19202049,19857409,23068673,23855105,31457281,31522817,31588353,31653889,31916033,31981569],"manually":[2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,21430273,22544385,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"modified":[2359298,2424833,2555906,2621442,2883585,2949121,41353217,41418753,41549825,41680897,41746433,41811969,41877505,42205185,43778050,43843585,43974658,44040194,44302337,44367873],"model":[2424835,2621443,2686977,2818051,2883586,2949122,3080194,3145730,3276801,3342339,6619137,6750209,6815745,6881281,18677761,18743297,18808833,19660801,19726337,19791873,20185089,21757953,21823489,21889025,23003137,23789569,24576001,25559041,26214401,26279937,26345473,26411009,31916033,31981569,32047105,32112641,34865155,34996227,35258371,35913731,42401794,44302337,44367873,44433409,44498945,48300036],"mode":[3145729,23592963,24444931,24576001,25821187,25952259,33095681,42336257,48234497],"message":[3211266,14483457,26083329,26148865,32178178],"member":[3211265,14483457,26083329,32178177,46858241,48300033,48627713,48955393],"modelcollection":[3342342,6094851,26279940,26345476,26411012,32309251,33030146,35913734,44630019,48496646],"maxvalue":[3604482,27197445,27328517,27459590,27525125,27590661,27656198,32440322,36306945,36372481],"maxsize":[3670017,27852801,42663939,44826625],"maximum":[3670017,17104897,17170433,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,42663937,44826625],"milliseconds":[3735554,28442625,28573697,28704770,28835841,28966914,32571394,36569089,36700161],"mix":[6160385],"maxrecursions":[6225921],"mark":[7012353,7077889,7143425,48627715],"meant":[12845057,12910593,12976129,33095683,47775745,47841281,47906817],"membernames":[14483459],"maxrecursion":[17104899,17170435],"missing":[23134209,24313857,25034753],"matching":[23986177,24051713],"meaning":[26869761],"minvalue":[27197444,27262979,27328516,27394051,27525124,27590660],"minimum":[27197441,27262977,27328513,27394049,27525121,27590657],"maxspan":[27262979,27394051],"millisecondsdelay":[28704771,28901377,28966916],"messages":[29163521],"mapping":[33030146,45219841,45285377,48562177,48758785],"models":[33095682,47775745,47906817],"master":[40566785],"modify":[42663937],"mustinherit":[45940737,47775745,47841281,47906817,48234497]} \ No newline at end of file +{"members":[65538,131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604481,3670018,3735554,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,7405569,7471105,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32571393,32636929,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49086465,49152001,49217537,49283073,49348609,49414145],"methods":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,786433,917505,983041,1048577,1114113,1179649,1245185,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,2031617,2097153,2162689,2228225,2359297,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3080193,3145729,3211265,3276801,3342337,3538945,3604481,3670017,3735553,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32964612,33095681,45744129,47054849,47841281,49348609,49414145],"matter":[131076,720898,2424836,2621444,2818052,3342340,3801089,3932161,4259841,4325377,4980738,5111810,5373954,5505026,5701634,6094850,9437185,9502721,29687810,31588354,31719426,31916034,32374786],"match":[131073,2031618,2359300,2424836,2555908,2621444,2686980,2818052,2883589,2949125,3080197,3145733,3276804,3342340,9633796,16908289,16973825,20774913,20840449,20905985,20971521,22806529,22872065,22937601,25690113,25755649,25821185,26017793,26083329,29687809,31260674,31522820,31588356,31653892,31719428,31784964,31916036,31981573,32047109,32112645,32178181,32309252,32374788,34668546,35192836,35520515,35586053,35651589,35913733,40894465,40960001,47775745],"movenext":[196609,10420227,29753345],"method":[327681,1048578,1114114,1507330,1638402,2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,3735553,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519682,8585218,8650754,8716290,8781826,9043969,9109505,9175041,9240577,9306113,9371650,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895938,9961474,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534338,11599873,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,14024705,14090241,14155777,14221313,14286849,14483457,14614530,14680066,14745601,14811138,14876674,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15597570,15663106,15794177,15925250,15990786,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170435,17235971,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18415617,18481153,18546689,18612225,18677761,18939905,19005441,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19922945,19988481,20054017,20119553,20185089,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21233665,21299201,21364737,21430273,21495809,21561346,21626882,21692417,21757953,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675458,22740994,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23920641,23986178,24051713,24117249,24182785,24313857,24379393,24444929,24510465,24576001,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26935297,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425666,29491201,29556737,29884417,30474242,30539778,30867458,30998530,31522818,31588354,31653890,31719426,31784962,31850498,31916034,32309250,32374786,32636929,33095681,33357825,33423361,33488897,33554433,33685505,33751041,33882113,33947649,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34603009,34668545,34734081,34799617,34865153,35127297,35192833,35258369,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831234,36896769,37355521,49020929],"makes":[589825,12845057,30146561],"multiple":[589825,12845057,23986177,27197441,30146561],"makenonnullable":[1900545,16449539,31195137],"makenullable":[1900545,16515075,31195137],"mappedschemaname":[1900545,38535171,43712513],"mappedtablename":[1900545,38600707,43712513],"mappedviewname":[1900545,38666243,43712513],"mappedviewschemaname":[1900545,38731779,43712513],"metadata":[1900545,1966081,2031617,2097155,2162689,2228227,2883587,2949123,3080195,3145731,6160386,6225922,6291458,6356994,16449538,16515074,16580610,16646147,16711682,16777218,16842754,16908290,16973826,17039362,17104899,17170435,17235971,17301510,17367046,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956867,18022402,18087938,18153474,18219011,23068673,23855105,24641537,25231361,25362433,25559041,25624577,31195137,31260673,31326211,31391745,31457282,31981569,32047105,32112641,32178177,33030148,34603009,34668545,34734081,34799617,34865153,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828931,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418755,41484290,42729477,43712513,43778049,43843585,43909121,43974658,44630018,44695554,44761090,44826626,47120387,47185922,47251458,47316994,47382531,47448067,47513602],"metadatacache":[2097155,17170434,17235970,17301506,17367042,31326211,33030145,47382532],"map":[2162689,40239105,43909121],"mappedcolumnname":[2162689,40697859,43909121],"mapped":[2162689,3473409,6488065,26542081,26607617,40697857,41418753,42926081,43909121,45088769,48627713],"modelbase":[2293761,2359297,3276804,6029315,18284545,18350081,26279939,32309251,33095686,44892163,47579137,47644674,47841281,48758790],"modeling":[2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,4521986,4587522,4653058,4718594,4784130,4849666,4915202,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7405569,7471105,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840451,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658499,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510467,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690115,25755650,25821186,25886723,25952258,26017795,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,33095681,33161217,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,47579138,47644677,47710212,47775746,47841285,47906820,47972354,48037890,48103428,48168962,48234499,48300036,48365573,48431106,48496644,48562178,48627714,48693250,48758789,48824324,48889858,48955394,49020930,49086466],"marks":[2359297,2424833,2555905,2621441,2883585,2949121,18415617,18939905,19267585,19922945,23134209,23920641,31522817,31588353,31653889,31719425,31981569,32047105],"manually":[2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,21495809,22609921,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"modified":[2359298,2424833,2555906,2621442,2883585,2949121,41680897,41746433,41877505,42008577,42074113,42139649,42205185,42532865,44105730,44171265,44302338,44367874,44630017,44695553],"model":[2424835,2621443,2686977,2818051,2883586,2949122,3080194,3145730,3276801,3342339,6619137,6750209,6815745,6881281,18743297,18808833,18874369,19726337,19791873,19857409,20250625,21823489,21889025,21954561,23068673,23855105,24641537,25624577,26279937,26345473,26411009,26476545,31981569,32047105,32112641,32178177,34930691,35061763,35323907,35979267,42729474,44630017,44695553,44761089,44826625,48627716],"mode":[3145729,23658499,24510467,24641537,25886723,26017795,33161217,42663937,48562177],"message":[3211266,14483457,26148865,26214401,32243714],"member":[3211265,14483457,26148865,32243713,47185921,48627713,48955393,49283073],"modelcollection":[3342342,6094851,26345476,26411012,26476548,32374787,33095682,35979270,44957699,48824326],"maxvalue":[3604482,27262981,27394053,27525126,27590661,27656197,27721734,32505858,36372481,36438017],"maxsize":[3670017,27918337,42991619,45154305],"maximum":[3670017,17170433,17235969,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,42991617,45154305],"milliseconds":[3735554,28508161,28639233,28770306,28901377,29032450,32636930,36634625,36765697],"mix":[6160385],"maxrecursions":[6225921],"mark":[7012353,7077889,7143425,48955395],"meant":[12845057,12910593,12976129,33161219,48103425,48168961,48234497],"membernames":[14483459],"maxrecursion":[17170435,17235971],"missing":[23199745,24379393,25100289],"matching":[24051713,24117249],"meaning":[26935297],"minvalue":[27262980,27328515,27394052,27459587,27590660,27656196],"minimum":[27262977,27328513,27394049,27459585,27590657,27656193],"maxspan":[27328515,27459587],"millisecondsdelay":[28770307,28966913,29032452],"messages":[29229057],"mapping":[33095682,45547521,45613057,48889857,49086465],"models":[33161218,48103425,48234497],"master":[40828929],"modify":[42991617],"mustinherit":[46268417,48103425,48168961,48234497,48562177]} \ No newline at end of file diff --git a/docs/API/fti/FTI_110.json b/docs/API/fti/FTI_110.json index c0135a63..b5cf9dc3 100644 --- a/docs/API/fti/FTI_110.json +++ b/docs/API/fti/FTI_110.json @@ -1 +1 @@ -{"namespace":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405569,7471105,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892162,44957698,45023234,45088770,45154306,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466],"new":[65543,131075,262146,327681,458753,851969,983043,1048577,1507329,1638401,1703937,1769473,2490370,2555905,2752513,3407873,3473409,3538948,3604482,6684673,7536642,7602178,7667714,7733250,7798786,7864322,7929858,8847362,8912898,8978434,9961473,10027010,10092546,11141122,11862018,13959170,14352386,14417922,14483457,14548994,15532034,15728641,15859714,16056322,16121857,18219009,18284545,18677761,18743297,18808833,19005442,19070978,19136514,19660801,19726337,19791873,20185089,20709377,20840449,21037058,21757953,21823489,21889025,22740993,22806529,23003137,23789569,24182785,24576001,25690113,25755649,26214401,26279937,26345473,26411009,26476546,26542082,26607618,26673154,26738690,26804226,26935298,27000834,27852801,30343169,30998529,33226759,33554435,33751042,34471938,34930690,35979268,36044802,48300033],"nullable":[65538,262145,1900547,2162693,2359298,2424833,2490369,2555906,2621441,2686977,2752513,2818049,2883588,2949124,3080196,3145732,3276802,3342337,3801090,3932162,3997698,4063234,4128770,4194306,4390914,4521986,4587522,4653058,4718594,4784130,4849666,4915202,8716292,8781828,10485764,12845061,12910597,12976133,13828098,14483459,14942211,15073283,15728643,15794179,16056323,16121859,16449539,16515075,16908290,16973826,17104899,17170435,17629186,17694726,17760260,17825800,18153475,18481154,19070980,19529730,20905988,21364740,22282244,23199746,23265282,23330818,23592966,23658499,24248322,24313858,24444934,24510467,24772610,25034754,25821192,25886723,25952260,26017796,26083334,26869766,27852803,27918339,27983875,29556738,29753345,31129602,31326212,31457282,31522817,31588354,31653889,31719425,31784961,31850497,31916036,31981572,32047108,32112644,32243714,32309249,33488898,33882113,34668545,34734083,34930689,35127297,35192833,35323905,35520516,35586052,35848196,38076418,38404098,38469634,38535170,38600706,38666242,40042498,40370181,40435714,40566785,41615362,42270722,42467330,42598402,43384833,43581441],"number":[65537,2031617,2228225,3735553,8388609,9633793,26673153,26804225,27000836,28966914,32571393,36700161,36962306,39124993,40960001,42729473,43515905,43646977],"notifycollectionchangedeventargs":[131074,327682,2424834,2621442,2818050,3342338,9043972,9699332,11206660,11337731,11599876,15138819,15204355,29622274,29818882,31522818,31653890,31850498,32309250,33619969,33685505,34078721,34209793,45875203],"notifications":[327681,3080193,11534337,24182785,29818881,32833537,33095681,46137345,48168961],"names":[1966081,2228225,3211265,14483457,26083329,32178177,38993922,41156609,43450369,43646977,47448065],"null":[2031618,3670018,7995393,8388610,8519681,12386305,12845058,12910594,12976130,14221313,16908289,16973825,20250625,20316161,20381697,20447234,20512770,20709378,20774914,20840450,20905986,21102593,21364737,21626881,22020097,22151169,22282241,22347777,22413314,22478850,22740994,22806530,22872066,23134209,23461889,23592963,24313857,24379393,24444931,24576001,24641538,24707074,24838147,24903682,25165825,25296897,25493505,25624577,25690114,25755650,25821186,25952257,26017793,27066369,27131905,27721729,27787265,27918337,27983873,29229057,31195138,32505858,34603010,40370178],"needs":[2162689,39321601,43581441],"need":[2162689,2883587,2949123,3080194,3145730,6488065,23134209,23330817,23592961,24313857,24444929,25034753,25821185,31916035,31981571,32047106,32112642,35520513,35586049,35848193,39387137,40763393,42663937,43581441,48300033],"nullabilityflags":[2162689,40566787,43581441],"nullability":[2162689,40566786,43581441],"nullableattribute":[2162689,40566785,43581441],"notification":[2359300,2424835,2555908,2621443,2686980,2818051,2883589,2949125,3080197,3145733,3276804,3342339,20709377,20774913,20840449,20905985,22740993,22806529,22872065,25624577,25690113,25755649,25952257,26017793,31457284,31522819,31588356,31653891,31719428,31850499,31916037,31981573,32047109,32112645,32243716,32309251,35127300,35454979,35520517,35586053,35848197],"notifycollectionchangedeventhandler":[2359297,2424833,2555905,2621441,2686977,2818049,2883585,2949121,3080193,3145729,3276801,3342337,4063234,20840452,22806532,25755652,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32243713,32309249,35127297,35454977,35520513,35586049,35848193],"notset":[3014659,6422532,7405571,23330817,23592961,24444929,25821185,33095681,48103428],"normal":[3080193,6160385,24182785,32636929,33095681,44957697,48168961],"naturalsortcomparer":[3538955,26607621,26673157,26738693,26804229,26869762,32374787,32899073,35979275,48824324],"nextdatetime":[3604482,27197444,27394052,32440322,36175875],"nextdatetimeoffset":[3604482,27262980,27328516,32440322,36241411],"nextdecimal":[3604482,27459588,27525124,32440322,36306947],"nextint64":[3604482,27590660,27656196,32440322,36372483],"nulls":[7208961,7274497,48955394],"nullptr":[8388609],"notsupportedexception":[8519681,8650753],"notnullifnotnullattribute":[12845058,12910594,12976130],"negative":[27000833],"needed":[28442625,28835841,33095681,48300033],"natural":[32899073,48824321],"notmapped":[38141953],"notinheritable":[45350913,45416449,45875201,46333953,46596097,46727169,46923777,46989313,47054849,47185921,47251457,47448065,47644673,47710209,48103425,48365569,48562177,48758785,49020929,49086465],"newvalue":[48693251]} \ No newline at end of file +{"namespace":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405569,7471105,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146],"new":[65543,131075,262146,327681,458753,851969,983043,1048577,1507329,1638401,1703937,1769473,2490370,2555905,2752513,3407873,3473409,3538948,3604482,6684673,7536642,7602178,7667714,7733250,7798786,7864322,7929858,8847362,8912898,8978434,9961473,10027010,10092546,11141122,11862018,13959170,14352386,14417922,14483457,14548994,15532034,15728641,15859714,16056322,16121857,18284545,18350081,18743297,18808833,18874369,19070978,19136514,19202050,19726337,19791873,19857409,20250625,20774913,20905985,21102594,21823489,21889025,21954561,22806529,22872065,23068673,23855105,24248321,24641537,25755649,25821185,26279937,26345473,26411009,26476545,26542082,26607618,26673154,26738690,26804226,26869762,27000834,27066370,27918337,30408705,31064065,33292295,33619971,33816578,34537474,34996226,36044804,36110338,48627713],"nullable":[65538,262145,1900547,2162693,2359298,2424833,2490369,2555906,2621441,2686977,2752513,2818049,2883588,2949124,3080196,3145732,3276802,3342337,3801090,3932162,3997698,4063234,4128770,4194306,4390914,4521986,4587522,4653058,4718594,4784130,4849666,4915202,8716292,8781828,10485764,12845061,12910597,12976133,13828098,14483459,14942211,15073283,15728643,15794179,16056323,16121859,16449539,16515075,16908290,16973826,17170435,17235971,17694722,17760262,17825796,17891336,18219011,18546690,19136516,19595266,20971524,21430276,22347780,23265282,23330818,23396354,23658502,23724035,24313858,24379394,24510470,24576003,24838146,25100290,25886728,25952259,26017796,26083332,26148870,26935302,27918339,27983875,28049411,29622274,29818881,31195138,31391748,31522818,31588353,31653890,31719425,31784961,31850497,31916033,31981572,32047108,32112644,32178180,32309250,32374785,33554434,33947649,34734081,34799619,34996225,35192833,35258369,35389441,35586052,35651588,35913732,38141954,38469634,38535170,38600706,38666242,38731778,39256066,40304642,40632325,40697858,40828929,41943042,42598402,42795010,42926082,43712513,43909121],"number":[65537,2031617,2228225,3735553,8388609,9633793,26738689,26869761,27066372,29032450,32636929,36765697,37027842,39190529,41287681,43057153,43843585,43974657],"notifycollectionchangedeventargs":[131074,327682,2424834,2621442,2818050,3342338,9043972,9699332,11206660,11337731,11599876,15138819,15204355,29687810,29884418,31588354,31719426,31916034,32374786,33685505,33751041,34144257,34275329,46202883],"notifications":[327681,3080193,11534337,24248321,29884417,32899073,33161217,46465025,48496641],"names":[1966081,2228225,3211265,14483457,26148865,32243713,39059458,41484289,43778049,43974657,47775745],"null":[2031618,3670018,7995393,8388610,8519681,12386305,12845058,12910594,12976130,14221313,16908289,16973825,20316161,20381697,20447233,20512770,20578306,20774914,20840450,20905986,20971522,21168129,21430273,21692417,22085633,22216705,22347777,22413313,22478850,22544386,22806530,22872066,22937602,23199745,23527425,23658499,24379393,24444929,24510467,24641537,24707074,24772610,24903683,24969218,25231361,25362433,25559041,25690113,25755650,25821186,25886722,26017793,26083329,27131905,27197441,27787265,27852801,27983873,28049409,29294593,31260674,32571394,34668546,40632322],"needs":[2162689,39518209,43909121],"need":[2162689,2883587,2949123,3080194,3145730,6488065,23199745,23396353,23658497,24379393,24510465,25100289,25886721,31981571,32047107,32112642,32178178,35586049,35651585,35913729,39649281,41025537,42991617,43909121,48627713],"nullabilityflags":[2162689,40828931,43909121],"nullability":[2162689,40828930,43909121],"nullableattribute":[2162689,40828929,43909121],"notification":[2359300,2424835,2555908,2621443,2686980,2818051,2883589,2949125,3080197,3145733,3276804,3342339,20774913,20840449,20905985,20971521,22806529,22872065,22937601,25690113,25755649,25821185,26017793,26083329,31522820,31588355,31653892,31719427,31784964,31916035,31981573,32047109,32112645,32178181,32309252,32374787,35192836,35520515,35586053,35651589,35913733],"notifycollectionchangedeventhandler":[2359297,2424833,2555905,2621441,2686977,2818049,2883585,2949121,3080193,3145729,3276801,3342337,4063234,20905988,22872068,25821188,31522817,31588353,31653889,31719425,31784961,31916033,31981569,32047105,32112641,32178177,32309249,32374785,35192833,35520513,35586049,35651585,35913729],"notset":[3014659,6422532,7405571,23396353,23658497,24510465,25886721,33161217,48431108],"normal":[3080193,6160385,24248321,32702465,33161217,45285377,48496641],"naturalsortcomparer":[3538955,26673157,26738693,26804229,26869765,26935298,32440323,32964609,36044811,49152004],"nextdatetime":[3604482,27262980,27459588,32505858,36241411],"nextdatetimeoffset":[3604482,27328516,27394052,32505858,36306947],"nextdecimal":[3604482,27525124,27590660,32505858,36372483],"nextint64":[3604482,27656196,27721732,32505858,36438019],"nulls":[7208961,7274497,49283074],"nullptr":[8388609],"notsupportedexception":[8519681,8650753],"notnullifnotnullattribute":[12845058,12910594,12976130],"negative":[27066369],"needed":[28508161,28901377,33161217,48627713],"natural":[32964609,49152001],"notmapped":[38207489],"notinheritable":[45678593,45744129,46202881,46661633,46923777,47054849,47251457,47316993,47382529,47513601,47579137,47775745,47972353,48037889,48431105,48693249,48889857,49086465,49348609,49414145],"newvalue":[49020931]} \ No newline at end of file diff --git a/docs/API/fti/FTI_111.json b/docs/API/fti/FTI_111.json index a002ac0f..a430d11e 100644 --- a/docs/API/fti/FTI_111.json +++ b/docs/API/fti/FTI_111.json @@ -1 +1 @@ -{"occurrence":[65537,8650753,29556737,33423361],"object":[65537,262146,917507,1245186,1310721,1376258,1441794,1572865,1703937,1900545,2162700,2359304,2424838,2555913,2621449,2686981,2752516,2818053,2883590,2949126,3080197,3145733,3276805,3342341,4456449,5242881,6815745,7995394,8060929,8126465,8650754,8716289,8781825,9371649,10158081,10485767,11730946,11927554,12058625,12517377,13828099,14090241,14155777,14221313,14286850,14942211,15073283,15138817,15204353,15269889,15335425,15400961,15466497,15728644,15794179,16056323,16121859,16580610,16646145,17104897,17170433,17367041,17432577,17498113,17563649,17629192,17694732,17760266,17825806,18481154,18546689,18677761,18743297,18808833,19267585,19464193,19529730,19660801,19726337,19791873,19922945,20054017,20185089,20905988,20971522,21233665,21299201,21364737,21495809,21692418,21757953,22085633,22216705,22282241,22609921,22872068,22937602,23003139,23199746,23265282,23330818,23592966,23658499,23789571,24182787,24248322,24313858,24444934,24510467,24576003,24772610,25034754,25559041,25821192,25886723,25952260,26017796,26083330,26148865,26869762,29556737,29753346,30277635,30605314,30670850,30736386,31129601,31326220,31457286,31522821,31588359,31653895,31719429,31784964,31850501,31916037,31981573,32047109,32112645,32243717,32309253,32833537,33030145,33423361,33882114,34406401,34668549,34734087,35127297,35192833,35323905,35454977,35520516,35586052,35848196,37158913,37224449,38076419,41353217,41418754,41484289,41549825,41680897,41746434,41811969,41877506,42205186,42270722,42336257,43319297,43778050,43843585,43974658,44040194,44302337,44367873,46399489,46661635,47448065,47906817,48300033],"observablecollectionextended":[131081,2424852,2621460,2818068,3342356,3801090,3866626,3932162,3997698,4980739,5373956,5505028,5701636,6094852,8847365,8912901,8978437,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,11141123,29622275,31522831,31653903,31850511,32309263,32636929,33554441,33619971,33685507,37289986,37683202,42795011,43843585,44040193,44236801,44630017,44957700,47382529,47579137,47906819,48496641],"onitemadded":[131073,2424833,2621441,2818049,3342337,9437187,29622273,31522817,31653889,31850497,32309249],"onitemremoved":[131073,2424833,2621441,2818049,3342337,9502723,29622273,31522817,31653889,31850497,32309249],"onpropertychanged":[131073,327682,2359297,2424833,2555905,2621441,2686977,2818049,3145730,3276801,3342337,9568259,11403268,11468804,20578307,25165828,25231364,29622273,29818882,31457281,31522817,31588353,31653889,31719425,31850497,32112642,32243713,32309249,34144259,35717123],"observablecollection":[131073,327681,2424833,2621441,2818049,3342337,9568257,11141122,29622273,31522817,31653889,31850497,32309249,32636929,40632321,40697857,44957697],"offset":[262147,10092549,10551297,29753345,33882113,37617669,42926082],"operators":[262145,33161218,33947649],"operator":[262146,10747909,10813442,10878978,10944517,33161218],"objectmodel":[327681,11141123],"oncollectionchanged":[327681,11337731,29818881],"onsourcepropertychanged":[327681,11534340,29818881],"occurs":[327682,2359297,2555905,2686977,2752513,2883585,2949121,3080193,3145729,3276801,4063233,4194305,4587521,4784129,5046274,5308417,5439489,5570561,5636097,5767169,5832705,5898241,5963777,6029313],"objects":[393217,458753,524289,2359297,2555905,2621441,2883585,2949121,3538945,6356993,7077889,11730946,11927554,23396353,26083329,26869761,29884417,29949953,31916033,31981569,32374785,32636930,32833537,33030145,37814273,41353217,41680897,41811969,43122689,43778049,43974657,44040193,44957698,46137345,47316993,48627713],"one":[589825,2883586,2949123,3080194,3145730,3538945,3604482,4849665,4915201,5767170,5832706,5898242,5963778,7208961,7274497,8388609,12386305,12845057,13434881,13500417,16842753,18022401,24051713,26869761,27066369,27721729,30081025,31981569,32374785,32440322,36110337,36438017,37289985,48955394],"originalsender":[1703937,16056323,16121859,38076419,43319297],"original":[1703937,2883586,2949123,3604482,6684673,8519681,8585217,8650753,16056321,16121857,18939905,20119553,23068673,23527425,23855105,23986177,24117249,27066369,27131905,31916034,31981571,32440322,32833537,36110338,38076417,43319297,46661633,48300033],"operation":[1835010,16187393,16252929,31064066],"objec":[2162690,39976962,43581442],"operations":[2162690,3407873,3473409,33030148,38600705,38666241,40108033,40173569,42467329,42532865,43581442,44695553,44761089,47644673,47710209,48562177,48758786],"overridden":[2162689,9371649,9895937,9961473,40435713,43581441],"ondeserialized":[2359297,18546691,31457281],"onerrorschanged":[2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,21430276,22544388,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"onpropertychanging":[2359297,2555905,2686977,3145730,3276801,20643843,25296900,25362436,31457281,31588353,31719425,32112642,32243713,35782659],"onvalidateobject":[2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,21495811,22609923,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"override":[2359298,2424834,2555906,2621442,2686978,2752514,2818050,2883587,2949123,3080194,3145730,3276802,3342338,21495809,21561345,22609921,22675457,23134209,23330817,23592961,24313857,24444929,25034753,25821185,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916035,31981571,32047106,32112642,32243714,32309250,35520513,35586049,35848193],"onvalidateproperty":[2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,21561347,22675459,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"onrevalidateobject":[2883585,2949121,3080193,3145729,25427971,31916033,31981569,32047105,32112641],"onrevalidateproperty":[2883585,2949121,3080193,3145729,25493507,31916033,31981569,32047105,32112641],"options":[3670018,17104900,17170436,28049409,28114945,32505858,32899073,48955393],"occurred":[4390913,4521985,4653057],"optional":[6291457,46858241,47448065],"overload":[7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8323073,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10485761,10551297,10813441,10878977,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11599873,11665409,12582913,12648449,12713985,12779521,13565953,13631489,13697025,13762561,14155777,14221313,14352385,14417921,16646145,16711681,16777217,16908289,16973825,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18677761,18743297,18808833,19005441,19070977,19660801,19726337,19791873,20381697,20447233,20512769,20709377,20774913,20840449,20905985,21299201,21364737,21430273,21757953,21823489,21889025,22216705,22282241,22347777,22413313,22478849,22544385,22740993,22806529,22872065,23724033,24838145,24903681,25165825,25231361,25296897,25362433,25624577,25690113,25755649,25821185,25952257,26017793,26279937,26345473,26411009,26607617,26673153,26738689,26804225,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,28049409,28114945,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29294593,29360129,29425665,29491201,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233],"outattribute":[8716289,8781825,18153473,23592961,24444929,25821185],"overridable":[9437185,9502721,11337729,11534337,19267585,19333121,19464193,19922945,19988481,20054017,21495809,21561345,22609921,22675457,23068673,23527425,25427969],"obj":[10485763,11796483,11993091,26148867],"old":[20709377,20840449,22740993,22806529,25690113,25755649],"owner":[23003139,23789571,24182787,24576005],"owning":[23003137,23789569,24576001],"oldvalue":[23592963,24444931,25821187,48693251],"option":[28049412,28114948],"observe":[28901377,28966913]} \ No newline at end of file +{"occurrence":[65537,8650753,29622273,33488897],"object":[65537,262146,917507,1245186,1310721,1376258,1441794,1572865,1703937,1900545,2162700,2359304,2424838,2555913,2621449,2686981,2752516,2818053,2883590,2949126,3080197,3145733,3276805,3342341,4456449,5242881,6815745,7995394,8060929,8126465,8650754,8716289,8781825,9371649,10158081,10485767,11730946,11927554,12058625,12517377,13828099,14090241,14155777,14221313,14286850,14942211,15073283,15138817,15204353,15269889,15335425,15400961,15466497,15728644,15794179,16056323,16121859,16580610,16646145,17104897,17170433,17235969,17432577,17498113,17563649,17629185,17694728,17760268,17825802,17891342,18546690,18612225,18743297,18808833,18874369,19333121,19529729,19595266,19726337,19791873,19857409,19988481,20119553,20250625,20971524,21037058,21299201,21364737,21430273,21561345,21757954,21823489,22151169,22282241,22347777,22675457,22937604,23003138,23068675,23265282,23330818,23396354,23658502,23724035,23855107,24248323,24313858,24379394,24510470,24576003,24641539,24838146,25100290,25624577,25886728,25952259,26017796,26083332,26148866,26214401,26935298,29622273,29818882,30343171,30670850,30736386,30801922,31195137,31391756,31522822,31588357,31653895,31719431,31784965,31850500,31916037,31981573,32047109,32112645,32178181,32309253,32374789,32899073,33095681,33488897,33947650,34471937,34734085,34799623,35192833,35258369,35389441,35520513,35586052,35651588,35913732,37224449,37289985,38141955,41680897,41746434,41811969,41877505,42008577,42074114,42139649,42205186,42532866,42598402,42663937,43646977,44105730,44171265,44302338,44367874,44630017,44695553,46727169,46989315,47775745,48234497,48627713],"observablecollectionextended":[131081,2424852,2621460,2818068,3342356,3801090,3866626,3932162,3997698,4980739,5373956,5505028,5701636,6094852,8847365,8912901,8978437,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,11141123,29687811,31588367,31719439,31916047,32374799,32702465,33619977,33685507,33751043,37355522,37748738,43122691,44171265,44367873,44564481,44957697,45285380,47710209,47906817,48234499,48824321],"onitemadded":[131073,2424833,2621441,2818049,3342337,9437187,29687809,31588353,31719425,31916033,32374785],"onitemremoved":[131073,2424833,2621441,2818049,3342337,9502723,29687809,31588353,31719425,31916033,32374785],"onpropertychanged":[131073,327682,2359297,2424833,2555905,2621441,2686977,2818049,3145730,3276801,3342337,9568259,11403268,11468804,20643843,25231364,25296900,29687809,29884418,31522817,31588353,31653889,31719425,31784961,31916033,32178178,32309249,32374785,34209795,35782659],"observablecollection":[131073,327681,2424833,2621441,2818049,3342337,9568257,11141122,29687809,31588353,31719425,31916033,32374785,32702465,40894465,40960001,45285377],"offset":[262147,10092549,10551297,29818881,33947649,37683205,43253762],"operators":[262145,33226754,34013185],"operator":[262146,10747909,10813442,10878978,10944517,33226754],"objectmodel":[327681,11141123],"oncollectionchanged":[327681,11337731,29884417],"onsourcepropertychanged":[327681,11534340,29884417],"occurs":[327682,2359297,2555905,2686977,2752513,2883585,2949121,3080193,3145729,3276801,4063233,4194305,4587521,4784129,5046274,5308417,5439489,5570561,5636097,5767169,5832705,5898241,5963777,6029313],"objects":[393217,458753,524289,2359297,2555905,2621441,2883585,2949121,3538945,6356993,7077889,11730946,11927554,23461889,26148865,26935297,29949953,30015489,31981569,32047105,32440321,32702466,32899073,33095681,37879809,41680897,42008577,42139649,43450369,44105729,44302337,44367873,45285378,46465025,47644673,48955393],"one":[589825,2031617,2883586,2949123,3080194,3145730,3538945,3604482,4849665,4915201,5767170,5832706,5898242,5963778,7208961,7274497,8388609,12386305,12845057,13434881,13500417,16842753,18087937,24117249,26935297,27131905,27787265,30146561,32047105,32440321,32505858,36175873,36503553,37355521,39256065,43843585,49283074],"originalsender":[1703937,16056323,16121859,38141955,43646977],"original":[1703937,2883586,2949123,3604482,6684673,8519681,8585217,8650753,16056321,16121857,19005441,20185089,23134209,23592961,23920641,24051713,24182785,27131905,27197441,31981570,32047107,32505858,32899073,36175874,38141953,43646977,46989313,48627713],"operation":[1835010,16187393,16252929,31129602],"objec":[2162690,40239106,43909122],"operations":[2162690,3407873,3473409,33095684,38666241,38731777,40370177,40435713,42795009,42860545,43909122,45023233,45088769,47972353,48037889,48889857,49086466],"overridden":[2162689,9371649,9895937,9961473,40697857,43909121],"ondeserialized":[2359297,18612227,31522817],"onerrorschanged":[2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,21495812,22609924,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"onpropertychanging":[2359297,2555905,2686977,3145730,3276801,20709379,25362436,25427972,31522817,31653889,31784961,32178178,32309249,35848195],"onvalidateobject":[2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,21561347,22675459,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"override":[2359298,2424834,2555906,2621442,2686978,2752514,2818050,2883587,2949123,3080194,3145730,3276802,3342338,21561345,21626881,22675457,22740993,23199745,23396353,23658497,24379393,24510465,25100289,25886721,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981571,32047107,32112642,32178178,32309250,32374786,35586049,35651585,35913729],"onvalidateproperty":[2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,21626883,22740995,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"onrevalidateobject":[2883585,2949121,3080193,3145729,25493507,31981569,32047105,32112641,32178177],"onrevalidateproperty":[2883585,2949121,3080193,3145729,25559043,31981569,32047105,32112641,32178177],"options":[3670018,17170436,17235972,28114945,28180481,32571394,32964609,49283073],"occurred":[4390913,4521985,4653057],"optional":[6291457,47185921,47775745],"overload":[7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8323073,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10485761,10551297,10813441,10878977,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11599873,11665409,12582913,12648449,12713985,12779521,13565953,13631489,13697025,13762561,14155777,14221313,14352385,14417921,16646145,16711681,16777217,16908289,16973825,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18743297,18808833,18874369,19070977,19136513,19726337,19791873,19857409,20447233,20512769,20578305,20774913,20840449,20905985,20971521,21364737,21430273,21495809,21823489,21889025,21954561,22282241,22347777,22413313,22478849,22544385,22609921,22806529,22872065,22937601,23789569,24903681,24969217,25231361,25296897,25362433,25427969,25690113,25755649,25821185,25886721,26017793,26083329,26345473,26411009,26476545,26673153,26738689,26804225,26869761,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,28114945,28180481,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29360129,29425665,29491201,29556737,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769],"outattribute":[8716289,8781825,18219009,23658497,24510465,25886721],"overridable":[9437185,9502721,11337729,11534337,19333121,19398657,19529729,19988481,20054017,20119553,21561345,21626881,22675457,22740993,23134209,23592961,25493505],"obj":[10485763,11796483,11993091,26214403],"old":[20774913,20905985,22806529,22872065,25755649,25821185],"owner":[23068675,23855107,24248323,24641541],"owning":[23068673,23855105,24641537],"oldvalue":[23658499,24510467,25886723,49020931],"option":[28114948,28180484],"observe":[28966913,29032449]} \ No newline at end of file diff --git a/docs/API/fti/FTI_112.json b/docs/API/fti/FTI_112.json index 743d92bb..901f7cab 100644 --- a/docs/API/fti/FTI_112.json +++ b/docs/API/fti/FTI_112.json @@ -1 +1 @@ -{"provided":[65538,131073,327683,2424833,2621441,2818049,3342337,7995393,8060929,9568257,11337729,11403265,11468801,29556738,29622273,29818883,31522817,31653889,31850497,32309249,33292290,34144258],"particular":[65537,2031617,8388609,16842753,29556737,31195137],"properties":[65537,131074,196609,262145,327683,458753,524289,786433,851969,917505,1310721,1703937,1900548,1966081,2031617,2162690,2228226,2293764,2359299,2424836,2490369,2555907,2621443,2686978,2752513,2818051,2883589,2949125,3080196,3145732,3276802,3342339,3407873,3473409,3670017,3866625,4128769,4456449,4849665,4915201,4980737,5046273,5242881,5373953,5505025,5701633,5767170,5832706,5898242,5963778,6094849,6160386,6225921,6684673,6750209,11534338,13893633,18219010,18350081,18415617,18612225,18874369,18939905,19202049,19398657,19595265,19857409,20119553,23724033,25559041,29818881,30212097,31457281,31588353,31916034,31981570,32047105,32112641,32702465,33030146,38207489,38731780,39976961,40632321,40697857,40960001,41091073,41222145,41287681,41484289,41943043,42139651,42729474,42795010,42860546,42926082,42991618,43057154,43122690,43188226,43253762,43319298,43384837,43450370,43515906,43581443,43646979,43712516,43778051,43843588,43909122,43974659,44040195,44105731,44171266,44236803,44302338,44367874,44433410,44498946,44564483,44630019,44695554,44761090,44826626,45613057,46858242,47251457,47448065,48300034],"propertychangedeventargs":[131076,327683,2162690,2424836,2621444,2818052,3342340,3866626,4128770,4456450,9109508,9175044,9764868,9830404,11272196,11468804,11665412,15269891,15335427,15400963,15466499,21102595,21626883,29622276,29818883,31522820,31653892,31850500,32309252,33619970,33685506,34078721,34144257,34209793,40632326,43581442,46333955,46465027],"propertychanged":[131075,327683,2359298,2424835,2555906,2621443,2686978,2752513,2818051,2883585,2949121,3080193,3145732,3276802,3342339,3997700,4194307,4587523,4718595,4980738,5046273,5308417,5373954,5439489,5505026,5570561,5636097,5701634,5767169,5832705,5898241,5963777,6029313,6094850,9568257,11403265,11468801,20578305,20709381,22740997,25165825,25231361,25362433,25690117,29622273,29818882,31457281,31522817,31588353,31653889,31719425,31850497,32112643,32243713,32309249,34144258,35717122,35782657],"predicate":[131073,2424833,2621441,2818049,3342337,9633797,29622273,31522817,31653889,31850497,32309249],"performs":[196609,262146,589828,3211265,3735553,10354689,10813441,10878977,13565953,13631489,13697025,13762561,26083329,29032449,29687809,30081028,32178177,32571393,33161218,33947650,34340868],"position":[196609,37421057,42860545],"property":[327683,655361,917507,2162708,2228231,2293764,2359311,2424846,2555919,2621454,2686990,2752517,2818062,2883602,2949138,3014657,3080209,3145744,3276815,3342350,4194305,4587521,4718593,4784129,5046273,5308417,5439489,5570561,5636097,5767170,5832706,5898242,5963778,6029313,6160386,6422529,6488065,6619137,6684673,6815745,6881281,7405569,9568257,11534338,13828098,14024705,14090242,14155777,14221314,17367042,17432579,17498114,17563651,17629186,17694722,17760258,17825794,17891329,17956867,18153475,18219011,18481154,18677761,18743297,18808833,19529730,19660801,19726337,19791873,20185089,20250626,20316162,20381698,20447235,20512769,20578305,20643841,20709380,20774916,20840451,20905987,21168129,21233666,21299201,21364738,21430273,21561346,21757953,21823489,21889025,21954561,22020098,22085634,22151170,22216705,22282242,22347778,22413315,22478849,22544385,22675458,22740996,22806531,22872067,23003137,23265282,23330817,23461890,23592963,23789569,24182785,24313857,24379394,24444931,24510465,24641539,24707075,24838148,24903683,24969218,25034753,25100291,25165830,25231361,25296902,25362433,25493510,25559041,25624580,25690116,25755651,25821187,25886721,25952259,26017795,26214401,26279937,26345473,26411009,29818882,30146561,30277635,31326210,31391748,31457293,31522826,31588365,31653898,31719435,31784964,31850506,31916047,31981583,32047118,32112654,32243724,32309258,32833537,32964609,33030151,33095684,34406401,34799618,34865155,34996227,35127304,35192833,35258371,35323905,35454982,35520522,35586058,35848202,35913731,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814275,37879810,37945347,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321603,39387139,39452675,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976962,40042498,40108035,40173571,40239107,40304643,40370178,40435714,40501251,40566786,40632323,40697859,40763398,40828931,40894467,40960002,41025538,41091077,41156611,41222147,41287683,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943043,42008579,42074115,42139652,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,43581458,43646979,43712514,43778049,43843585,43974657,44040193,44105729,44236801,44564481,44630017,46137345,46858241,47120385,47251458,47448065,47644673,47710209,47775745,47906817,47972353,48037889,48103425,48168961,48300037,48431105,48496641,48693251],"place":[589828,13565953,13631489,13697025,13762561,30081028,34340868],"previous":[655361,2359305,2424838,2555913,2621446,2686984,2818054,2883595,2949131,3080202,3145738,3276808,3342342,13828097,18481153,19529729,20709378,20774914,20840450,20905986,22740994,22806530,22872066,23265281,25624578,25690114,25755650,25952258,26017794,30146561,31457289,31522822,31588361,31653894,31719432,31850502,31916043,31981579,32047114,32112650,32243720,32309254,32702465,35127304,35454982,35520522,35586058,35848202,45481985,48693249],"propertychangedeventmanager":[1638404,15859715,15925250,15990786,30932995,32833537,46465029],"parameternames":[1966081,38993923,43450369],"parameter":[1966081,8716290,8781826,17432577,17563649,38993922,41091073,43450369],"propertymetadata":[2162691,2228226,3145730,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891332,18022403,18087938,18153475,25165828,25296900,25493507,31326210,31391745,32112642,32964610,34668547,34734083,34799617,35717121,35782657,39321602,39387140,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,41025540,41091074,43581443,43646977,46989313,47120388,47185921],"propert":[2162694,17629185,17694721,17760257,17825793,31326212,34668546,34734082,40435713,40566785,43581442],"public":[2162697,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4521986,4587522,4653058,4718594,4784130,4849666,4915202,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9633794,9699330,9764866,9830402,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13959170,14352386,14417922,14483458,14548994,14745602,15007746,15532034,15728642,15794178,15859714,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18612226,18677761,18743297,18808833,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660801,19726337,19791873,19857410,19922946,19988482,20054018,20119554,20185089,20709378,20971522,21102594,21168130,21233666,21299202,21364738,21626882,21692418,21757953,21954562,22085634,22216706,22282242,22740994,22937602,23003138,23068674,23134210,23265282,23330818,23396354,23461890,23527426,23592962,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24313858,24379394,24444930,24641538,24707074,24838146,24903682,25034754,25100290,25559042,25624578,25690114,25755650,25821186,25952258,26017794,26083330,26148866,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37748738,37814274,37879810,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452675,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501251,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,42008578,42074114,42205186,42336258,42401794,42467330,42532866,42598402,42663938,43581449,44892162,44957698,45023234,45088770,45154306,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466],"prefix":[2162689,2490370,19070980,40042498,41615365,43581441,43909122,47448065],"propertychangingeventargs":[2162690,40697862,43581442],"propertyindex":[2162689,40763395,43581441],"propertytype":[2162689,40828931,43581441],"propertymetadatacollection":[2228227,17891330,17956866,18022402,18087938,18153474,31391747,32964609,34799619,38731778,40960002,41025538,41091074,41156610,43646979,47185924],"propertynames":[2228225,41156611,43646977],"propertychanging":[2359297,2555905,2686977,2883585,2949121,3080193,3145730,3276801,4784131,5767169,5832705,5898241,5963777,20643841,25296897,31457281,31588353,31719425,32112641,32243713,35782657],"pending":[2359297,2424833,2555905,2621441,18612225,18939905,19595265,20119553,23855105,24117249,31457281,31522817,31588353,31653889],"propertychangedeventhandler":[2359297,2424833,2555905,2621441,2686977,2818049,2883585,2949121,3080193,3145729,3276801,3342337,3997698,4194306,4587522,4718594,4915202,20709380,22740996,25690116,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32243713,32309249,35127297,35454977,35520513,35586049,35848193],"populates":[2424834,2621442,2818050,18743297,18808833,19726337,19791873,21823489,21889025,34865154,34996226,35258370],"pushes":[2555905,2621441,19464193,20054017,31588353,31653889],"propertybagbase":[2883602,2949138,3080211,3145732,4718594,4784130,4849666,4915202,5767172,5832708,5898244,5963779,24182786,24576003,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,31916045,31981581,32047117,32112643,33095683,35520517,35586053,35651587,35717123,35782659,35848195,42401794,44302337,44367873,44433409,44498947,47775746,47906818,47972355,48037889,48168964,48234500,48300033],"propertysetmodes":[2883586,2949122,3080194,3145730,6488068,6553604,6619140,6684676,6750212,6815748,6881284,23592963,24444931,25821188,25952260,31916034,31981570,32047106,32112642,33095681,35520514,35586050,35848194,48300035],"propertybag":[3080196,5898243,24182787,24248322,24313858,24379394,24444930,24510466,32047107,33095681,35586051,44433411,48168965,48431107,48496643],"pick":[3604484,27721733,27787269,32440324,36438021],"parallel":[3735554,29032449,29097985,32571394],"propertychangingeventhandler":[4784130],"perform":[6225921,46858241],"primarily":[6684673,12845057,48300033],"prevents":[7208961,7274497,48955394],"parameters":[7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8323073,8388609,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10485761,10551297,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12320769,12386305,12517377,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828097,13959169,14221313,14417921,14483457,14548993,14745601,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15728641,15794177,15859713,16056321,16121858,16187393,16252929,16318465,16384001,16646145,16711681,16777217,16842753,16908289,16973825,17104898,17170434,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18153473,18219009,18481153,18546689,18743297,18808833,19070977,19529729,19726337,19791873,20250626,20316162,20381698,20447234,20512769,20578305,20643841,20709378,20774914,20840450,20905985,21102593,21364737,21430273,21495809,21561345,21626881,21823489,21889025,22020098,22151170,22282241,22347778,22413314,22478849,22544385,22609921,22675457,22740994,22806530,22872065,23003137,23068673,23265281,23330817,23461889,23527425,23592961,23658497,23789569,23855105,24117249,24182785,24313857,24379393,24444929,24510465,24576001,24641538,24707074,24838146,24903682,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25493505,25624578,25690114,25755650,25821185,25886721,25952257,26017793,26083329,26148865,26345473,26411009,26476545,26542081,26673153,26738689,26804225,26869761,27000833,27066370,27131906,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721730,27787266,27852801,27918337,27983873,28049410,28114945,28180481,28246018,28311553,28377090,28442626,28508161,28573697,28639233,28704769,28770306,28835842,28901377,28966913,29032450,29097985,29163521,29229057,29294593,29360129,29425665,29491201,37027841,37093377,37486593,41025537,41091073,44892161,44957697,45088769,45154305,45219841,45350913,45547521,45678593,45940737,46006273,46399489,46530561,46661634,47382529,47579137,47775745,47906817,48496641,48693250],"passed":[8716289,8781825,10420225,29032449],"protected":[9306114,9371650,9437186,9502722,9568258,9895938,9961474,11337730,11403266,11468802,11534338,14614530,14680066,14811138,14876674,14942210,15597570,15663106,15925250,15990786,18546690,18677762,18743298,18808834,19660802,19726338,19791874,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20774914,20840450,20905986,21037058,21430274,21495810,21561346,21757954,21823490,21889026,22020098,22151170,22347778,22413314,22478850,22544386,22609922,22675458,22806530,22872066,23199746,23658498,23724034,24248322,24510466,24576002,24772610,24969218,25165826,25231362,25296898,25362434,25427970,25493506,25886722,26214402,26279938,26345474,26411010,37683202,41943042,42139650,42270722],"provide":[9371649,9895937,9961473,17367041,17432577,17498113,17563649,45219841,45285377],"propertyname":[9568259,11403267,11534339,13828099,14221315,17956868,18153476,18481155,19529731,20250631,20316167,20381703,20447239,20512776,20578307,20643843,20709383,20774919,20840455,20905991,21364739,21430275,21561347,22020103,22151175,22282243,22347783,22413319,22478856,22544387,22675459,22740999,22806535,22872071,23134212,23265283,23330820,23461895,23592967,24313863,24379399,24444935,24641544,24707080,24838152,24903688,24969219,25034755,25100291,25231363,25362435,25624583,25690119,25755655,25821187,25952263,26017799,41091075],"previously":[12517377,23592961,24444929,25821185],"params":[12713985,14483457,16777217,16973825],"paramarray":[12713985,14483457,16777217,16973825],"poorly":[12845057],"predate":[12910593,12976129],"possible":[16318465,16384001,17104897,17170433],"purpose":[17104897,17170433,33030145,47316993],"parameterless":[20381697,22347777,24903681],"pass":[24182785],"parsing":[26673153,26804225],"pseudo":[27000833],"picked":[27131905],"performed":[27852801,29032449],"preferable":[28180481],"pair":[32833538,46530561,46596097],"part":[33030145,47448065],"parent":[33030145,47448065],"propagated":[33030145,48627713],"properly":[48365569]} \ No newline at end of file +{"provided":[65538,131073,327683,2424833,2621441,2818049,3342337,7995393,8060929,9568257,11337729,11403265,11468801,29622274,29687809,29884419,31588353,31719425,31916033,32374785,33357826,34209794],"particular":[65537,2031617,8388609,16842753,29622273,31260673],"properties":[65537,131074,196609,262145,327683,458753,524289,786433,851969,917505,1310721,1703937,1900548,1966081,2031617,2162690,2228226,2293764,2359299,2424836,2490369,2555907,2621443,2686978,2752513,2818051,2883589,2949125,3080196,3145732,3276802,3342339,3407873,3473409,3670017,3866625,4128769,4456449,4849665,4915201,4980737,5046273,5242881,5373953,5505025,5701633,5767170,5832706,5898242,5963778,6094849,6160386,6225921,6684673,6750209,11534338,13893633,18284546,18415617,18481153,18677761,18939905,19005441,19267585,19464193,19660801,19922945,20185089,23789569,25624577,29884417,30277633,31522817,31653889,31981570,32047106,32112641,32178177,32768001,33095682,38273025,38797316,40239105,40894465,40960001,41287681,41418753,41549825,41615361,41811969,42270723,42467331,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712517,43778050,43843586,43909123,43974659,44040196,44105731,44171268,44236802,44302339,44367875,44433411,44498946,44564483,44630018,44695554,44761090,44826626,44892163,44957699,45023234,45088770,45154306,45940737,47185922,47579137,47775745,48627714],"propertychangedeventargs":[131076,327683,2162690,2424836,2621444,2818052,3342340,3866626,4128770,4456450,9109508,9175044,9764868,9830404,11272196,11468804,11665412,15269891,15335427,15400963,15466499,21168131,21692419,29687812,29884419,31588356,31719428,31916036,32374788,33685506,33751042,34144257,34209793,34275329,40894470,43909122,46661635,46792707],"propertychanged":[131075,327683,2359298,2424835,2555906,2621443,2686978,2752513,2818051,2883585,2949121,3080193,3145732,3276802,3342339,3997700,4194307,4587523,4718595,4980738,5046273,5308417,5373954,5439489,5505026,5570561,5636097,5701634,5767169,5832705,5898241,5963777,6029313,6094850,9568257,11403265,11468801,20643841,20774917,22806533,25231361,25296897,25427969,25755653,29687809,29884418,31522817,31588353,31653889,31719425,31784961,31916033,32178179,32309249,32374785,34209794,35782658,35848193],"predicate":[131073,2424833,2621441,2818049,3342337,9633797,29687809,31588353,31719425,31916033,32374785],"performs":[196609,262146,589828,3211265,3735553,10354689,10813441,10878977,13565953,13631489,13697025,13762561,26148865,29097985,29753345,30146564,32243713,32636929,33226754,34013186,34406404],"position":[196609,37486593,43188225],"property":[327683,655361,917507,2162710,2228231,2293764,2359311,2424846,2555919,2621454,2686990,2752517,2818062,2883602,2949138,3014657,3080209,3145744,3276815,3342350,4194305,4587521,4718593,4784129,5046273,5308417,5439489,5570561,5636097,5767170,5832706,5898242,5963778,6029313,6160386,6422529,6488065,6619137,6684673,6815745,6881281,7405569,9568257,11534338,13828098,14024705,14090242,14155777,14221314,17432578,17498115,17563650,17629187,17694722,17760258,17825794,17891330,17956865,18022403,18219011,18284547,18546690,18743297,18808833,18874369,19595266,19726337,19791873,19857409,20250625,20316162,20381698,20447234,20512771,20578305,20643841,20709377,20774916,20840452,20905987,20971523,21233665,21299202,21364737,21430274,21495809,21626882,21823489,21889025,21954561,22020097,22085634,22151170,22216706,22282241,22347778,22413314,22478851,22544385,22609921,22740994,22806532,22872067,22937603,23068673,23330818,23396353,23527426,23658499,23724033,23855105,24248321,24379393,24444930,24510467,24576001,24707075,24772611,24903684,24969219,25034754,25100289,25165827,25231366,25296897,25362438,25427969,25559046,25624577,25690116,25755652,25821187,25886723,25952257,26017795,26083331,26279937,26345473,26411009,26476545,29884418,30212097,30343171,31391746,31457284,31522829,31588362,31653901,31719434,31784971,31850500,31916042,31981583,32047119,32112654,32178190,32309260,32374794,32899073,33030145,33095687,33161220,34471937,34865154,34930691,35061763,35192840,35258369,35323907,35389441,35520518,35586058,35651594,35913738,35979267,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879811,37945346,38010883,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976963,40042499,40108035,40173571,40239106,40304642,40370179,40435715,40501251,40566787,40632322,40697858,40763395,40828930,40894467,40960003,41025542,41091075,41156611,41222147,41287682,41353218,41418757,41484291,41549827,41615363,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270723,42336259,42401795,42467332,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43909140,43974659,44040194,44105729,44171265,44302337,44367873,44433409,44564481,44892161,44957697,46465025,47185921,47448065,47579138,47775745,47972353,48037889,48103425,48234497,48300033,48365569,48431105,48496641,48627717,48758785,48824321,49020931],"place":[589828,13565953,13631489,13697025,13762561,30146564,34406404],"previous":[655361,2359305,2424838,2555913,2621446,2686984,2818054,2883595,2949131,3080202,3145738,3276808,3342342,13828097,18546689,19595265,20774914,20840450,20905986,20971522,22806530,22872066,22937602,23330817,25690114,25755650,25821186,26017794,26083330,30212097,31522825,31588358,31653897,31719430,31784968,31916038,31981579,32047115,32112650,32178186,32309256,32374790,32768001,35192840,35520518,35586058,35651594,35913738,45809665,49020929],"propertychangedeventmanager":[1638404,15859715,15925250,15990786,30998531,32899073,46792709],"parameternames":[1966081,39059459,43778049],"parameter":[1966081,8716290,8781826,17498113,17629185,39059458,41418753,43778049],"propertymetadata":[2162691,2228226,3145730,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956868,18087939,18153474,18219011,25231364,25362436,25559043,31391746,31457281,32178178,33030146,34734083,34799619,34865153,35782657,35848193,39518210,39583746,39649284,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41353220,41418754,43909123,43974657,47316993,47448068,47513601],"propert":[2162694,17694721,17760257,17825793,17891329,31391748,34734082,34799618,40697857,40828929,43909122],"public":[2162697,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4521986,4587522,4653058,4718594,4784130,4849666,4915202,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9633794,9699330,9764866,9830402,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13959170,14352386,14417922,14483458,14548994,14745602,15007746,15532034,15728642,15794178,15859714,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18677762,18743297,18808833,18874369,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726337,19791873,19857409,19922946,19988482,20054018,20119554,20185090,20250625,20774914,21037058,21168130,21233666,21299202,21364738,21430274,21692418,21757954,21823489,22020098,22151170,22282242,22347778,22806530,23003138,23068674,23134210,23199746,23330818,23396354,23461890,23527426,23592962,23658498,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24379394,24444930,24510466,24707074,24772610,24903682,24969218,25100290,25165826,25624578,25690114,25755650,25821186,25886722,26017794,26083330,26148866,26214402,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37814274,37879810,37945346,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714819,39780355,39845891,39911427,39976963,40042499,40108035,40173571,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763395,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42336258,42401794,42532866,42663938,42729474,42795010,42860546,42926082,42991618,43909129,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146],"prefix":[2162689,2490370,19136516,40304642,41943045,43909121,44236802,47775745],"propertychangingeventargs":[2162690,40960006,43909122],"propertyindex":[2162689,41025539,43909121],"propertyinfo":[2162690,41091078,43909122],"propertytype":[2162689,41156611,43909121],"propertymetadatacollection":[2228227,17956866,18022402,18087938,18153474,18219010,31457283,33030145,34865155,38797314,41287682,41353218,41418754,41484290,43974659,47513604],"propertynames":[2228225,41484291,43974657],"propertychanging":[2359297,2555905,2686977,2883585,2949121,3080193,3145730,3276801,4784131,5767169,5832705,5898241,5963777,20709377,25362433,31522817,31653889,31784961,32178177,32309249,35848193],"pending":[2359297,2424833,2555905,2621441,18677761,19005441,19660801,20185089,23920641,24182785,31522817,31588353,31653889,31719425],"propertychangedeventhandler":[2359297,2424833,2555905,2621441,2686977,2818049,2883585,2949121,3080193,3145729,3276801,3342337,3997698,4194306,4587522,4718594,4915202,20774916,22806532,25755652,31522817,31588353,31653889,31719425,31784961,31916033,31981569,32047105,32112641,32178177,32309249,32374785,35192833,35520513,35586049,35651585,35913729],"populates":[2424834,2621442,2818050,18808833,18874369,19791873,19857409,21889025,21954561,34930690,35061762,35323906],"pushes":[2555905,2621441,19529729,20119553,31653889,31719425],"propertybagbase":[2883602,2949138,3080211,3145732,4718594,4784130,4849666,4915202,5767172,5832708,5898244,5963779,24248322,24641539,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,31981581,32047117,32112653,32178179,33161219,35586053,35651589,35717123,35782659,35848195,35913731,42729474,44630017,44695553,44761089,44826627,48103426,48234498,48300035,48365569,48496644,48562180,48627713],"propertysetmodes":[2883586,2949122,3080194,3145730,6488068,6553604,6619140,6684676,6750212,6815748,6881284,23658499,24510467,25886724,26017796,31981570,32047106,32112642,32178178,33161217,35586050,35651586,35913730,48627715],"propertybag":[3080196,5898243,24248323,24313858,24379394,24444930,24510466,24576002,32112643,33161217,35651587,44761091,48496645,48758787,48824323],"pick":[3604484,27787269,27852805,32505860,36503557],"parallel":[3735554,29097985,29163521,32636930],"propertychangingeventhandler":[4784130],"perform":[6225921,47185921],"primarily":[6684673,12845057,48627713],"prevents":[7208961,7274497,49283074],"parameters":[7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8323073,8388609,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10485761,10551297,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12320769,12386305,12517377,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828097,13959169,14221313,14417921,14483457,14548993,14745601,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15728641,15794177,15859713,16056321,16121858,16187393,16252929,16318465,16384001,16646145,16711681,16777217,16842753,16908289,16973825,17104897,17170434,17235970,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18219009,18284545,18546689,18612225,18808833,18874369,19136513,19595265,19791873,19857409,20316162,20381698,20447234,20512770,20578305,20643841,20709377,20774914,20840450,20905986,20971521,21168129,21430273,21495809,21561345,21626881,21692417,21889025,21954561,22085634,22216706,22347777,22413314,22478850,22544385,22609921,22675457,22740993,22806530,22872066,22937601,23068673,23134209,23330817,23396353,23527425,23592961,23658497,23724033,23855105,23920641,24182785,24248321,24379393,24444929,24510465,24576001,24641537,24707074,24772610,24903682,24969218,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25559041,25690114,25755650,25821186,25886721,25952257,26017793,26083329,26148865,26214401,26411009,26476545,26542081,26607617,26738689,26804225,26869761,26935297,27066369,27131906,27197442,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787266,27852802,27918337,27983873,28049409,28114946,28180481,28246017,28311554,28377089,28442626,28508162,28573697,28639233,28704769,28770305,28835842,28901378,28966913,29032449,29097986,29163521,29229057,29294593,29360129,29425665,29491201,29556737,37093377,37158913,37552129,39452673,41353217,41418753,45219841,45285377,45416449,45481985,45547521,45678593,45875201,46006273,46268417,46333953,46727169,46858241,46989314,47710209,47906817,48103425,48234497,48824321,49020930],"passed":[8716289,8781825,10420225,29097985],"protected":[9306114,9371650,9437186,9502722,9568258,9895938,9961474,11337730,11403266,11468802,11534338,14614530,14680066,14811138,14876674,14942210,15597570,15663106,15925250,15990786,18612226,18743298,18808834,18874370,19726338,19791874,19857410,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20840450,20905986,20971522,21102594,21495810,21561346,21626882,21823490,21889026,21954562,22085634,22216706,22413314,22478850,22544386,22609922,22675458,22740994,22872066,22937602,23265282,23724034,23789570,24313858,24576002,24641538,24838146,25034754,25231362,25296898,25362434,25427970,25493506,25559042,25952258,26279938,26345474,26411010,26476546,37748738,42270722,42467330,42598402],"provide":[9371649,9895937,9961473,17432577,17498113,17563649,17629185,45547521,45613057],"propertyname":[9568259,11403267,11534339,13828099,14221315,18022404,18219012,18546691,19595267,20316167,20381703,20447239,20512775,20578312,20643843,20709379,20774919,20840455,20905991,20971527,21430275,21495811,21626883,22085639,22216711,22347779,22413319,22478855,22544392,22609923,22740995,22806535,22872071,22937607,23199748,23330819,23396356,23527431,23658503,24379399,24444935,24510471,24707080,24772616,24903688,24969224,25034755,25100291,25165827,25296899,25427971,25690119,25755655,25821191,25886723,26017799,26083335,41418755],"previously":[12517377,23658497,24510465,25886721],"params":[12713985,14483457,16777217,16973825],"paramarray":[12713985,14483457,16777217,16973825],"poorly":[12845057],"predate":[12910593,12976129],"possible":[16318465,16384001,17170433,17235969],"purpose":[17170433,17235969,33095681,47644673],"parameterless":[20447233,22413313,24969217],"pass":[24248321],"parsing":[26738689,26869761],"pseudo":[27066369],"picked":[27197441],"performed":[27918337,29097985],"preferable":[28246017],"pair":[32899074,46858241,46923777],"part":[33095681,47775745],"parent":[33095681,47775745],"propagated":[33095681,48955393],"properly":[48693249]} \ No newline at end of file diff --git a/docs/API/fti/FTI_113.json b/docs/API/fti/FTI_113.json index 08ba5693..61afc03a 100644 --- a/docs/API/fti/FTI_113.json +++ b/docs/API/fti/FTI_113.json @@ -1 +1 @@ -{"quantified":[1900547,38273025,38338561,38862849,43384835]} \ No newline at end of file +{"quantified":[1900547,38338561,38404097,38928385,43712515]} \ No newline at end of file diff --git a/docs/API/fti/FTI_114.json b/docs/API/fti/FTI_114.json index 76b9f5d9..65f494d6 100644 --- a/docs/API/fti/FTI_114.json +++ b/docs/API/fti/FTI_114.json @@ -1 +1 @@ -{"removes":[65540,131078,327682,524291,589825,1048577,1114113,1507329,1638401,2359297,2424838,2555905,2621446,2686977,2752513,2818054,3276801,3342342,8192001,8519681,8585217,8650753,9306113,9633793,9699329,9764865,9830401,9895937,11599873,11665409,12189697,12255233,12517377,13500418,15007745,21626881,29556740,29622278,29818882,30015491,30081025,30408705,30474241,30801921,30932993,31457281,31522822,31588353,31653894,31719425,31784961,31850502,32243713,32309254,33423363,33685507,34209794],"returns":[65537,131073,262146,393217,458753,524291,589825,917508,1900547,2031619,2162699,2228229,2359303,2424839,2555911,2621448,2686980,2752516,2818054,2883585,2949121,3080193,3145729,3211266,3276805,3342342,3538945,3604488,6946817,7471105,8454145,8519681,8585217,8650753,8716289,8781825,10551297,10682369,11796481,11993089,12320769,12451841,12517377,12845058,14090241,14155777,14221313,16449538,16515074,16580609,16908289,16973825,17039361,17891329,17956865,18087937,21233665,21299201,21364737,22085633,22216705,22282241,24248321,24772609,26148865,26869761,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,29556737,29753346,29884417,29949953,30015490,30081025,30277635,31129603,31195139,31391747,31457283,31522819,31588355,31653891,31719426,31784963,31850499,32047105,32112641,32178177,32243715,32309251,32374785,32440328,33882113,34406402,34603010,34799618,35192834,35323906,36175874,36241410,36306946,36372482,37289986,37814273,37945345,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40239105,40960001,41156609,41353217,41418753,41549825,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42795009,43122689,43253761,43581451,43646978,43778052,43843588,43974660,44040197,44105730,44171265,44236803,44302337,44367873,44564482,44630019],"remove":[65539,524289,1245185,1376257,1441793,3604482,8519685,8585220,8650757,9633793,9895937,12517380,15204353,15335425,15466497,21495809,21561345,22609921,22675457,27721729,27787265,29556739,30015489,30605313,30670849,30736385,32440322,33423364,36438018],"relayedeventargs":[131074,1703940,1769475,2424834,2621442,2818050,3342338,9175044,9830404,15269891,15335427,16056323,16121861,29622274,30998531,31522818,31653890,31850498,32309250,32833538,33619969,33685505,38010882,38076418,43319299,46333955,46530565,46596100,46661635],"removed":[131078,327681,720898,851969,2424838,2621446,2818054,2949121,3342342,3932162,4063233,4325378,4980738,5046273,5111810,5373954,5505026,5701634,6094850,8519681,8585217,8650753,9437186,9502722,9633793,9895937,12517377,20709377,20840449,22740993,22806529,24051713,25690113,25755649,29622276,31522820,31653892,31850500,31981569,32309252,37879809,43188225],"raises":[131073,327683,2424833,2621441,2818049,3342337,9568257,11337729,11403265,11468801,29622273,29818883,31522817,31653889,31850497,32309249,34144258],"removeall":[131073,2424833,2621441,2818049,3342337,9633795,29622273,31522817,31653889,31850497,32309249],"removehandler":[131075,327682,1048577,1114113,1245185,1376257,1441793,1507329,1638401,2359297,2424835,2555905,2621443,2686977,2752513,2818051,3276801,3342339,9699332,9764868,9830404,11599876,11665412,15007747,15204355,15335427,15466499,21626883,29622275,29818882,30408705,30474241,30605313,30670849,30736385,30801921,30932993,31457281,31522819,31588353,31653891,31719425,31784961,31850499,32243713,32309251,33685508,34209795],"removeitem":[131073,2424833,2621441,2818049,3342337,3932161,4325377,9437185,9502721,9895939,29622273,31522817,31653889,31850497,32309249],"replaces":[131073,2424833,2621441,2818049,2883585,2949121,3080193,3145729,3342337,9961473,23527425,24117249,24510465,25886721,29622273,31522817,31653889,31850497,31916033,31981569,32047105,32112641,32309249],"readonlywrapper":[131073,2424833,2621441,2818049,3342337,37289988,42795009,43843585,44040193,44236801,44630017],"read":[131073,1835010,2031617,2424833,2621441,2818049,3342337,3407873,3473409,8519681,8650753,16318468,27721729,27787265,31064066,32636929,33030146,37289985,39256066,42467329,42532865,42795009,43515905,43843585,44040193,44236801,44630017,44695553,44761089,44957697,48562177,48758785],"readonlylistsegment":[196611,262156,10027013,10092549,10158082,10223618,10289154,10354689,10420225,10485762,10551302,10616836,10682370,10747912,10813446,10878982,10944520,11010053,11075589,13107202,29687811,29753348,32636931,33161223,33751047,33816579,33882116,33947655,34013187,37355522,37421057,37486594,37552131,37617666,42860547,42926083,45023235,45088772],"releasing":[196609,10354689,29687809],"resetting":[196609,10354689,29687809],"resources":[196609,10354689,29687809],"refer":[262145,10551297,29753345,33882113],"readonlyobservablecollectionextended":[327685,4063234,4128770,4194306,5046275,11141124,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,29818883,32636929,34078723,34144259,34209795,37289987,37683202,42991619,45154308],"reversibleequalitycomparer":[393219,11730946,11796482,29884419,32636929,45219844],"reversiblestringequalitycomparer":[458757,11862020,11927554,11993090,29949955,32636929,37748738,43057155,45285380],"reference":[524289,1572865,2162689,8388609,12058625,15728641,30015489,32833537,38404097,40370177,43581441,46399489],"references":[524290,12189697,12451841,30015490,32636929,45350913],"results":[589825,12779521,21495811,21561347,22609923,22675459,30081025,32768001,34275329,45809665],"readonlycollection":[589825,12976129,13238274,13303810,14090242,14155778,14221314,21233666,21299202,21364738,22085634,22216706,22282242,30081025,41156610,41222146],"readonly":[589826,13238273,13303809,30081026,36896769,36962305,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,42008577,42074113,42270721,42401793,42532865],"removerange":[589825,13500420,30081025],"revalidated":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14286849,20971521,21692417,22937601,30277633,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"raised":[917505,1703937,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,4390913,4521985,4653057,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,6029313,6094849,11337729,11403265,11468801,38076417,43319297],"result":[983041,2490369,10747905,10813441,10878977,10944513,12845057,12910593,12976129,14483457,26083329,26148865,28442625,28770308,28835845,30343169,41615361,43909121,47448065],"referenced":[1572865,15728641,32833537,46399489],"relayed":[1703937,1769473,16056321,16121857,30998529,32833540,46137345,46530561,46596097,46661633],"released":[1835010,16187393,16252929,28180481,31064066],"readerwriterlockslim":[1835010,16318468,16384004,31064066],"representation":[1900546,16449537,16515073,31129602],"represents":[1900545,2162689,16580610,28901377,28966913,31129601,32636930,32833537,40239105,43581441,45088769,45350913,46661633],"referred":[1900548,38469633,38535169,38600705,38666241,43384836],"revert":[2359297,18284545],"returning":[2359298,2424834,2555906,2621442,2686978,2818050,2883585,2949121,3080193,3145729,3276802,3342338,20250625,20512769,22020097,22478849,24641537,31457282,31522818,31588354,31653890,31719426,31850498,31916033,31981569,32047105,32112641,32243714,32309250,35061761,35389441],"rejectchanges":[2359297,2424833,2555905,2621441,2883585,2949121,18612228,18939908,19595268,20119556,23527427,24117251,31457281,31522817,31588353,31653889,31916033,31981569,33030145,47316993],"reverts":[2359297,2424833,2555905,2621441,2949121,18612225,18939905,19595265,20119553,23986177,31457281,31522817,31588353,31653889,31981569],"return":[2883586,2949122,3080193,3145729,8257537,8323073,8454145,8519681,8585217,8650753,8716289,8781825,9633793,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11730945,11796481,11927553,11993089,12320769,12451841,12517377,12845058,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13828097,14090241,14155777,14221314,14286849,14483457,16121857,16187393,16252929,16449537,16515073,16580609,16646145,16711681,16777217,16908289,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18087937,20250625,20316161,20381697,20447233,20512769,20709377,20774913,20840449,20905985,20971521,21233665,21299201,21364738,21692417,22020097,22085633,22151169,22216705,22282242,22347777,22413313,22478849,22740993,22806529,22937601,23134210,23330818,23396353,23461889,23592962,24248321,24313858,24379393,24444930,24641537,24707073,24772609,24838145,24903681,25034754,25100289,25624577,25690113,25755649,25821186,25952257,26017793,26083329,26148865,26869761,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29229057,29360129,29491201,31916034,31981570,32047105,32112641,36962305,37027841,37093377,37158913,37224449,37486593,41025537,41091073,41353217,41418753,41484289,41549825,41680897,41746433,41811969,41877505,42205185],"revalidateobject":[2883586,2949122,3080194,3145730,4849667,5767169,5832705,5898241,5963777,25427969,31916033,31981569,32047105,32112641],"revalidateproperty":[2883587,2949123,3080195,3145731,4849665,4915203,5767170,5832706,5898242,5963778,25493505,31916033,31981569,32047105,32112641],"revalidateall":[2883585,2949121,3080193,3145729,25559043,31916033,31981569,32047105,32112641],"requests":[2883585,2949121,3080193,3145729,25559041,31916033,31981569,32047105,32112641],"recomparing":[2883585,2949121,23724033,31916033,31981569],"remains":[2949121,23920641,31981569],"recursively":[2949122,7012353,23986177,24051713,31981570,48627713],"randomextended":[3604486,26935301,27000837,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,32440322,32899073,36044807,36110339,36175875,36241411,36306947,36372483,36438019,48889860],"random":[3604488,27000833,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,32440328,32899073,36175874,36241410,36306946,36372482,48889857],"range":[3604483,27328513,27525121,27590657,32440323,36241409,36306945,36372481],"release":[3670017,28180485,32505857],"releases":[3670017,28180481,32505857],"runs":[3735554,29097985,29163521,32571394],"runconcurrently":[3735553,29163523,32571393],"running":[3735553,29163521,32571393],"remarks":[3801089,3932161,4259841,4325377,4390913,4521985,4653057,6160385,6225921,6356993,9371649,9437185,9502721,9895937,9961473,11534337,12517377,12845057,12910593,12976129,13238273,13303809,13434881,13500417,14090241,14155777,14221313,16318465,16384001,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,18350081,18612225,18677761,18743297,18808833,18874369,18939905,19202049,19595265,19660801,19726337,19791873,19857409,20119553,20185089,20250625,20316161,20381697,20447233,20512769,21233665,21299201,21364737,21757953,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,23592961,23855105,23920641,23986177,24051713,24117249,24248321,24444929,24510465,24641537,24707073,24772609,24838145,24903681,25821185,25886721,26083329,26148865,27852801,28180481,28442625,28835841,29163521,37289985,37814273,37945345,38141953,38600705,38666241,40566785,40632321,40697857,40763393,42008577,42074113,42663937,45219841,45285377,45744129,45875201,46333953,46465025,47448065,48365569,48758785],"relayedeventhandler":[3866626,4128770,4456450,32833537,46661635],"recursive":[6356993,23068676,23527428,23855108,24117252],"raisechangedevent":[6619139,48300033],"revalidate":[6815745,6881281,48300034],"replace":[9961473],"readonlyobservablecollection":[11141121,32636929,45154305],"returned":[11796481,11993089,27852801,28901377,28966913],"real":[13434881,13500417],"refresh":[14090241,14155777,14221313,21233665,21299201,21364737,22085633,22216705,22282241,37945345,42008577,42074113],"recursion":[17104897,17170433],"require":[17235969,17301505],"requires":[18677761,18743297,18808833,19660801,19726337,19791873,20185089,21757953],"reflection":[23134209,24313857,25034753,32964609,47054849],"reentrant":[23920641,23986177,24051713],"relative":[26869761],"required":[28180481],"ran":[29229057],"retrieve":[32702465,45481985],"removing":[32833539,46071809,46202881,46268417],"revertible":[33030146,47382529,47579137],"reading":[37814273],"roslyn":[40566785],"reduced":[40632321,40697857]} \ No newline at end of file +{"removes":[65540,131078,327682,524291,589825,1048577,1114113,1507329,1638401,2359297,2424838,2555905,2621446,2686977,2752513,2818054,3276801,3342342,8192001,8519681,8585217,8650753,9306113,9633793,9699329,9764865,9830401,9895937,11599873,11665409,12189697,12255233,12517377,13500418,15007745,21692417,29622276,29687814,29884418,30081027,30146561,30474241,30539777,30867457,30998529,31522817,31588358,31653889,31719430,31784961,31850497,31916038,32309249,32374790,33488899,33751043,34275330],"returns":[65537,131073,262146,393217,458753,524291,589825,917508,1900547,2031619,2162699,2228229,2359303,2424839,2555911,2621448,2686980,2752516,2818054,2883585,2949121,3145729,3211266,3276805,3342342,3538945,3604488,6946817,7471105,8454145,8519681,8585217,8650753,8716289,8781825,10551297,10682369,11796481,11993089,12320769,12451841,12517377,12845058,14090241,14155777,14221313,16449538,16515074,16580609,16908289,16973825,17039361,17956865,18022401,18153473,21299201,21364737,21430273,22151169,22282241,22347777,24838145,26214401,26935297,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,29622273,29818882,29949953,30015489,30081026,30146561,30343171,31195139,31260675,31457283,31522819,31588355,31653891,31719427,31784962,31850499,31916035,32178177,32243713,32309251,32374787,32440321,32505864,33947649,34471938,34668546,34865154,35258370,35389442,36241410,36306946,36372482,36438018,37355522,37879809,38010881,39518209,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40501249,41287681,41484289,41680897,41746433,41877505,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,43122689,43450369,43581441,43909131,43974658,44105732,44171268,44302340,44367877,44433410,44498945,44564483,44630017,44695553,44892162,44957699],"remove":[65539,524289,1245185,1376257,1441793,3604482,8519685,8585220,8650757,9633793,9895937,12517380,15204353,15335425,15466497,21561345,21626881,22675457,22740993,27787265,27852801,29622275,30081025,30670849,30736385,30801921,32505858,33488900,36503554],"relayedeventargs":[131074,1703940,1769475,2424834,2621442,2818050,3342338,9175044,9830404,15269891,15335427,16056323,16121861,29687810,31064067,31588354,31719426,31916034,32374786,32899074,33685505,33751041,38076418,38141954,43646979,46661635,46858245,46923780,46989315],"removed":[131078,327681,720898,851969,2424838,2621446,2818054,2949121,3342342,3932162,4063233,4325378,4980738,5046273,5111810,5373954,5505026,5701634,6094850,8519681,8585217,8650753,9437186,9502722,9633793,9895937,12517377,20774913,20905985,22806529,22872065,24117249,25755649,25821185,29687812,31588356,31719428,31916036,32047105,32374788,37945345,43515905],"raises":[131073,327683,2424833,2621441,2818049,3342337,9568257,11337729,11403265,11468801,29687809,29884419,31588353,31719425,31916033,32374785,34209794],"removeall":[131073,2424833,2621441,2818049,3342337,9633795,29687809,31588353,31719425,31916033,32374785],"removehandler":[131075,327682,1048577,1114113,1245185,1376257,1441793,1507329,1638401,2359297,2424835,2555905,2621443,2686977,2752513,2818051,3276801,3342339,9699332,9764868,9830404,11599876,11665412,15007747,15204355,15335427,15466499,21692419,29687811,29884418,30474241,30539777,30670849,30736385,30801921,30867457,30998529,31522817,31588355,31653889,31719427,31784961,31850497,31916035,32309249,32374787,33751044,34275331],"removeitem":[131073,2424833,2621441,2818049,3342337,3932161,4325377,9437185,9502721,9895939,29687809,31588353,31719425,31916033,32374785],"replaces":[131073,2424833,2621441,2818049,2883586,2949121,3080193,3145729,3342337,9961473,23592961,23724033,24182785,24576001,25952257,29687809,31588353,31719425,31916033,31981570,32047105,32112641,32178177,32374785],"readonlywrapper":[131073,2424833,2621441,2818049,3342337,37355524,43122689,44171265,44367873,44564481,44957697],"read":[131073,1835010,2031617,2424833,2621441,2818049,3342337,3407873,3473409,8519681,8650753,16318468,27787265,27852801,31129602,32702465,33095682,37355521,39387138,42795009,42860545,43122689,43843585,44171265,44367873,44564481,44957697,45023233,45088769,45285377,48889857,49086465],"readonlylistsegment":[196611,262156,10027013,10092549,10158082,10223618,10289154,10354689,10420225,10485762,10551302,10616836,10682370,10747912,10813446,10878982,10944520,11010053,11075589,13107202,29753347,29818884,32702467,33226759,33816583,33882115,33947652,34013191,34078723,37421058,37486593,37552130,37617667,37683202,43188227,43253763,45350915,45416452],"releasing":[196609,10354689,29753345],"resetting":[196609,10354689,29753345],"resources":[196609,10354689,29753345],"refer":[262145,10551297,29818881,33947649],"readonlyobservablecollectionextended":[327685,4063234,4128770,4194306,5046275,11141124,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,29884419,32702465,34144259,34209795,34275331,37355523,37748738,43319299,45481988],"reversibleequalitycomparer":[393219,11730946,11796482,29949955,32702465,45547524],"reversiblestringequalitycomparer":[458757,11862020,11927554,11993090,30015491,32702465,37814274,43384835,45613060],"reference":[524289,1572865,2162689,8388609,12058625,15728641,30081025,32899073,38469633,40632321,43909121,46727169],"references":[524290,12189697,12451841,30081026,32702465,45678593],"results":[589825,12779521,21561347,21626883,22675459,22740995,30146561,32833537,34340865,46137345],"readonlycollection":[589825,12976129,13238274,13303810,14090242,14155778,14221314,21299202,21364738,21430274,22151170,22282242,22347778,30146561,41484290,41549826],"readonly":[589826,13238273,13303809,30146562,36962305,37027841,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42336257,42401793,42598401,42729473,42860545],"removerange":[589825,13500420,30146561],"revalidated":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14286849,21037057,21757953,23003137,30343169,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"raised":[917505,1703937,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,4390913,4521985,4653057,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,6029313,6094849,11337729,11403265,11468801,38141953,43646977],"result":[983041,2490369,10747905,10813441,10878977,10944513,12845057,12910593,12976129,14483457,26148865,26214401,28508161,28835844,28901381,30408705,41943041,44236801,47775745],"referenced":[1572865,15728641,32899073,46727169],"relayed":[1703937,1769473,16056321,16121857,31064065,32899076,46465025,46858241,46923777,46989313],"released":[1835010,16187393,16252929,28246017,31129602],"readerwriterlockslim":[1835010,16318468,16384004,31129602],"representation":[1900546,16449537,16515073,31195138],"represents":[1900545,2162689,16580610,28966913,29032449,31195137,32702466,32899073,40501249,43909121,45416449,45678593,46989313],"referred":[1900548,38535169,38600705,38666241,38731777,43712516],"revert":[2359297,18350081],"returning":[2359298,2424834,2555906,2621442,2686978,2818050,2883585,2949121,3080193,3145729,3276802,3342338,20316161,20578305,22085633,22544385,24707073,31522818,31588354,31653890,31719426,31784962,31916034,31981569,32047105,32112641,32178177,32309250,32374786,35127297,35454977],"rejectchanges":[2359297,2424833,2555905,2621441,2883585,2949121,18677764,19005444,19660804,20185092,23592963,24182787,31522817,31588353,31653889,31719425,31981569,32047105,33095681,47644673],"reverts":[2359297,2424833,2555905,2621441,2949121,18677761,19005441,19660801,20185089,24051713,31522817,31588353,31653889,31719425,32047105],"return":[2883586,2949122,3080193,3145729,8257537,8323073,8454145,8519681,8585217,8650753,8716289,8781825,9633793,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11730945,11796481,11927553,11993089,12320769,12451841,12517377,12845058,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13828097,14090241,14155777,14221314,14286849,14483457,16121857,16187393,16252929,16449537,16515073,16580609,16646145,16711681,16777217,16908289,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18153473,20316161,20381697,20447233,20512769,20578305,20774913,20840449,20905985,20971521,21037057,21299201,21364737,21430274,21757953,22085633,22151169,22216705,22282241,22347778,22413313,22478849,22544385,22806529,22872065,23003137,23199746,23396354,23461889,23527425,23658498,24379394,24444929,24510466,24707073,24772609,24838145,24903681,24969217,25100290,25165825,25690113,25755649,25821185,25886722,26017793,26083329,26148865,26214401,26935297,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29294593,29425665,29556737,31981570,32047106,32112641,32178177,37027841,37093377,37158913,37224449,37289985,37552129,39452673,41353217,41418753,41680897,41746433,41811969,41877505,42008577,42074113,42139649,42205185,42532865],"revalidateobject":[2883586,2949122,3080194,3145730,4849667,5767169,5832705,5898241,5963777,25493505,31981569,32047105,32112641,32178177],"revalidateproperty":[2883587,2949123,3080195,3145731,4849665,4915203,5767170,5832706,5898242,5963778,25559041,31981569,32047105,32112641,32178177],"revalidateall":[2883585,2949121,3080193,3145729,25624579,31981569,32047105,32112641,32178177],"requests":[2883585,2949121,3080193,3145729,25624577,31981569,32047105,32112641,32178177],"recomparing":[2883585,2949121,23789569,31981569,32047105],"remains":[2949121,23986177,32047105],"recursively":[2949122,7012353,24051713,24117249,32047106,48955393],"randomextended":[3604486,27000837,27066373,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,32505858,32964609,36110343,36175875,36241411,36306947,36372483,36438019,36503555,49217540],"random":[3604488,27066369,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,32505864,32964609,36241410,36306946,36372482,36438018,49217537],"range":[3604483,27394049,27590657,27656193,32505859,36306945,36372481,36438017],"release":[3670017,28246021,32571393],"releases":[3670017,28246017,32571393],"runs":[3735554,29163521,29229057,32636930],"runconcurrently":[3735553,29229059,32636929],"running":[3735553,29229057,32636929],"remarks":[3801089,3932161,4259841,4325377,4390913,4521985,4653057,6160385,6225921,6356993,9371649,9437185,9502721,9895937,9961473,11534337,12517377,12845057,12910593,12976129,13238273,13303809,13434881,13500417,14090241,14155777,14221313,16318465,16384001,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,18415617,18677761,18743297,18808833,18874369,18939905,19005441,19267585,19660801,19726337,19791873,19857409,19922945,20185089,20250625,20316161,20381697,20447233,20512769,20578305,21299201,21364737,21430273,21823489,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,23658497,23724033,23920641,23986177,24051713,24117249,24182785,24510465,24576001,24707073,24772609,24838145,24903681,24969217,25886721,25952257,26148865,26214401,27918337,28246017,28508161,28901377,29229057,37355521,37879809,38010881,38207489,38666241,38731777,40828929,40894465,40960001,41025537,42336257,42401793,42991617,45547521,45613057,46071809,46202881,46661633,46792705,47775745,48693249,49086465],"relayedeventhandler":[3866626,4128770,4456450,32899073,46989315],"recursive":[6356993,23134212,23592964,23920644,24182788],"raisechangedevent":[6619139,48627713],"revalidate":[6815745,6881281,48627714],"replace":[9961473],"readonlyobservablecollection":[11141121,32702465,45481985],"returned":[11796481,11993089,27918337,28966913,29032449],"real":[13434881,13500417],"refresh":[14090241,14155777,14221313,21299201,21364737,21430273,22151169,22282241,22347777,38010881,42336257,42401793],"recursion":[17170433,17235969],"require":[17301505,17367041],"requires":[18743297,18808833,18874369,19726337,19791873,19857409,20250625,21823489],"reflection":[23199745,24379393,25100289,33030145,47382529],"reentrant":[23986177,24051713,24117249],"relative":[26935297],"required":[28246017],"ran":[29294593],"retrieve":[32768001,45809665],"removing":[32899075,46399489,46530561,46596097],"revertible":[33095682,47710209,47906817],"reading":[37879809],"roslyn":[40828929],"reduced":[40894465,40960001]} \ No newline at end of file diff --git a/docs/API/fti/FTI_115.json b/docs/API/fti/FTI_115.json index 44a6afed..b74033cd 100644 --- a/docs/API/fti/FTI_115.json +++ b/docs/API/fti/FTI_115.json @@ -1 +1 @@ -{"specified":[65544,131078,262148,327681,393217,458753,589830,2031620,2097154,2228225,2424836,2621444,2818052,3342340,3407873,3473409,3670021,3735554,8257537,8323073,8519681,8585217,8716291,8781827,8912897,8978433,9371649,9633793,9895937,9961474,10485762,11010049,11075585,11141121,11730946,11927554,13041665,13107201,13565953,13631489,13697025,13762561,16711682,16777218,16908289,16973825,17104897,17170433,17956865,26083329,26476545,26542081,27000833,27918337,27983873,28049409,28114945,28180481,28901377,28966913,29556742,29622276,29753347,29884417,29949953,30081030,31195140,31260674,31522820,31653892,31850500,32309252,32505861,32571394,33357826,33423362,33488898,33554434,33882113,34013186,34340868,34537474,34603010,36700162,37027841,37093377,37486593,41025537,42729474,42926081,43646977],"starting":[65537,2031617,8388609,16842753,27000833,29556737,31195137],"specific":[65537,262145,2031617,8650753,10158081,16646145,29556737,29753345,31195137,32964609,33423361,34537473,47120385],"sets":[65538,262145,2162689,3407873,3473410,37027841,37093377,37486593,40763393,42467329,42532865,42598401,42729474,42926081,43581441,44695553,44761090],"setitem":[131073,2424833,2621441,2818049,3342337,3801089,3932161,4259841,4325377,9437185,9502721,9961475,29622273,31522817,31653889,31850497,32309249],"safe":[131074,720898,2424834,2621442,2818050,3342338,3801089,3932161,4259841,4325377,4980738,5111810,5373954,5505026,5701634,6094850,17235969,17301505,32702465,45547521],"structure":[196609,262145,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,29687809,29753345,32636929,33161217,33751041,33816577,33882113,33947649,34013185,37355521,37421057,37486593,37552129,37617665,42860545,42926081,45023234,45088770],"struct":[262146,10027009,10092545,33751042,45023233,45088769],"segment":[262149,10158082,10223617,10289153,10551297,11010049,11075585,29753349,32636929,33816578,34013186,45088769],"system":[262145,327681,2031619,2555907,2621443,9633793,10485762,10551297,11141123,13172737,13369345,13828097,16646146,16842754,17039361,17367041,17432577,17498113,17563649,17629185,17694723,17760257,17825795,18022401,19333121,19464194,19988481,20054018,23134209,24313857,25034753,28049409,28114945,29753345,31195139,31588355,31653891,32636929,33882113,34537473,41418753,41549825,41746433,41877505,42205185,45023234,48562177,48758785],"segments":[262145,589825,10551297,13107201,29753345,30081025,33882113],"slice":[262146,11010052,11075588,29753346,34013187],"slices":[262146,11010049,11075585,29753346,34013186],"serves":[327681,11141121],"string":[327682,458753,917505,1900545,2228226,2359306,2424841,2490369,2555914,2621449,2686985,2752514,2818058,2883592,2949128,3080200,3145738,3276810,3342345,3670024,7340033,9568259,11403268,11534340,11862017,11927564,11993094,13828099,13893634,14221317,14483462,16580612,17956868,18153475,18219011,18415618,18481155,19070980,19398658,19529731,20250627,20316163,20381700,20447236,20512776,20578307,20643843,20709380,20774916,20840452,20905988,21364741,21430276,21561347,22020099,22151171,22282245,22347780,22413316,22478856,22544388,22675459,22740996,22806532,22872068,23134210,23265283,23330819,23461891,23592963,24313859,24379395,24444931,24641539,24707075,24838148,24903684,24969219,25034755,25100291,25231364,25362436,25624580,25690116,25755652,25821188,25952260,26017796,26476547,26542083,26869766,27852801,27918341,27983877,28049415,28114955,28180486,29818882,30277633,31129601,31391745,31457290,31522825,31588362,31653897,31719433,31784962,31850506,31916040,31981576,32047112,32112650,32243722,32309257,32505863,32899074,34144257,34406401,34799617,34930689,35061765,35127300,35192833,35323905,35389445,35454979,35520518,35586054,35651586,35717121,35782657,35848198,37748738,38141954,38273026,38338562,38469634,38535170,38600706,38666242,38862850,38993922,40042498,40435714,40501250,41091075,41156610,41222146,41287682,41615362,42467330,42532866,42598402,42663937,43057153,43646977,44826625,48955394,49020929],"source":[327682,1048578,1114114,1507330,1638402,2097154,8388609,11534338,12845061,12910597,12976133,13041669,13107205,13172737,14548997,14614529,14680065,14811137,14876673,15532035,15597569,15663105,15859717,15925249,15990785,17104901,17170437,29818882,30408706,30474242,30801922,30932994,31260674,32833541,45875201,45940737,46333953,46465025,46661633],"sourcelist":[327681,37683203,42991617],"stringcomparison":[458753,11862022,37748741,43057153],"snapshot":[524289,12386305,30015489],"safely":[589825,12845057,30081025],"size":[589826,3670017,13041666,13107202,30081026,42663937,44826625],"sort":[589832,13565958,13631494,13697030,13762566,30081032,34340873],"semaphore":[1835012,16187398,16252934,31064068],"schema":[1900546,3473410,38469633,38666241,42598404,43384834,44761090,48562177,48758785],"signature":[1966082,2031618,16711686,16777222,16908292,16973828,31195138,34537474,39059461,43450370],"setter":[2162700,17367041,17432577,17498113,17563649,17760257,17825793,31326214,34734082,39714817,39780353,39845890,39911426,43581446],"supplied":[2162692,2424834,2621442,2818050,17629185,17694721,17760257,17825793,18743297,18808833,19726337,19791873,21823489,21889025,31326212,34668546,34734082,34865154,34996226,35258370],"sourceproperties":[2293761,41222147,43712513],"sources":[2293761,18219012,41287683,43712513],"separated":[2293761,18219009,41287681,43712513],"set":[2359304,2424838,2490369,2555912,2621446,2686984,2818054,2883595,2949131,3014657,3080203,3145739,3276808,3342342,6225921,6422529,7405569,20709381,20774917,20840453,20905989,22740997,22806533,22872069,23068673,23527425,23592964,23855105,24117249,24444932,25624581,25690117,25755653,25821189,25952261,26017797,27131905,31457288,31522822,31588360,31653894,31719432,31850502,31916043,31981579,32047115,32112651,32243720,32309254,33030145,33095681,35127305,35454983,35520524,35586060,35848204,37027842,37093378,37879810,38731778,39387138,41615361,41943042,42139650,42205186,42336258,42467330,42598402,42663938,43909121,47448065,48103425,48693249],"storing":[2883585,2949121,20250625,20316161,22020097,22151169,23068673,23855105,24641537,24707073,31916033,31981569],"save":[2883585,2949121,3080193,3145729,23592961,24444929,25821185,31916033,31981569,32047105,32112641,35520513,35586049,35848193],"setinternalvalues":[2883585,3080193,3145729,23658499,24510467,25886723,31916033,32047105,32112641],"sub":[2883585,2949121,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8388609,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10223617,10289153,10354689,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11862017,12058625,12124161,12189697,12255233,12386305,12582913,12648449,12713985,13434881,13500417,13565953,13631489,13697025,13762561,13959169,14024705,14352385,14417921,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16842753,17170433,17760257,17825793,18022401,18219009,18284545,18350081,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20578305,20643841,21037057,21102593,21168129,21430273,21495809,21561345,21626881,21757953,21823489,21889025,21954561,22544385,22609921,22675457,23003137,23068673,23527425,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24510465,24576001,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25886721,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26935297,27000833,29163521,37289985,42270721,44302337,44367873,46661633,48693249],"simplest":[3080193,24182785,33095681,48168961],"supports":[3080193,24182785,33030146,33095681,47382529,47579137,48168961],"store":[3145729,24576001,33095681,40763393,48234497],"span":[3604483,27197441,27262978,27394050,28901377,32440323,36175874,36241409],"stringutilities":[3670019,27852802,27918338,27983874,28049410,28114946,28180482,32505859,32899073,42663938,44826627,49020932],"space":[3670018,8388609,27918337,27983873,32505858],"stringjoinoption":[3670018,7208964,7274500,7340036,28049412,28114948,32505858,32899073,48955395],"strings":[3670017,7208961,20512769,22478849,28114945,32505857,48955393],"separator":[3670018,28049413,28114949,32505858],"start":[3735553,13697025,29163521,32571393],"syntax":[3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465],"selected":[6291457,46858241],"static":[6422529,6946817,10747905,10813441,10878977,10944513,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,16121857,16187393,16252929,16318465,16384001,17104897,17170433,17235969,17301505,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,42663937,45416449,46596097,46727169,47054849,49020929,49086465],"shared":[6422529,6946817,10747905,10813441,10878977,10944513,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,16121857,16187393,16252929,16318465,16384001,17104897,17170433,17235969,17301505,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,42663937],"special":[6553601,20512769,22478849,23592961,24444929,25821185,25952257,33095681,48300034],"setasoriginal":[6684675,24444929,48300033],"support":[6684673,32636929,44957697,48300033,48365569],"skipped":[7208961,7274497,48955394],"separators":[7208961,7274497,48955394],"second":[8060929,8323073,8585217,8781825,11730945,11927553,26083329,26869761,37027841,44892161],"successfully":[8519681,8585217,8650753,10420225],"suitable":[10682369,11796481,11993089,26148865,33030145,47579137],"structures":[10682369,11796481,11993089,26148865,32636929],"sequences":[13172737],"startingindex":[13434883,13500419],"sorting":[13631489,13697025,13762561],"startindex":[13697027],"sender":[14942211,15073283,15794179,16056321,16121857,32833538,46530561,46596097,46661635],"semaphoreslim":[16187395,16252931],"scenarios":[17104897,17170433],"setting":[17760257,17825793,33095681,48300033],"streamingcontext":[18546691],"sensitive":[20250625,20316161,20381697,20447233,20512769,22020097,22151169,22347777,22413313,22478849,24641537,24707073,24838145,24903681],"saved":[20709377,20774913,20840449,20905985,22740993,22806529,22872065,23592961,24444929,25624577,25690113,25755649,25821185,25952257,26017793],"stored":[23592961,24444929,25821185,47906817],"signed":[26869761],"shown":[26869761],"seed":[27000835],"sequence":[27000833],"stringbuilder":[27852804,28180486],"strictly":[28180481],"strongly":[32702465,45744129],"sorts":[32899073,48824321],"semantics":[33030145,47513601],"shadow":[37289985],"subclass":[37289985],"select":[38600705,38666241],"sealed":[45350913,45875201,46333953,46923777,46989313,47185921,47251457,47448065,47644673,47710209,48103425,48365569,48562177,48758785],"subclasses":[48365569]} \ No newline at end of file +{"specified":[65544,131078,262148,327681,393217,458753,589830,2031621,2097154,2228225,2424836,2621444,2818052,3342340,3407873,3473409,3670021,3735554,8257537,8323073,8519681,8585217,8716291,8781827,8912897,8978433,9371649,9633793,9895937,9961474,10485762,11010049,11075585,11141121,11730946,11927554,13041665,13107201,13565953,13631489,13697025,13762561,16711682,16777218,16908289,16973825,17170433,17235969,18022401,26148865,26542081,26607617,27066369,27983873,28049409,28114945,28180481,28246017,28966913,29032449,29622278,29687812,29818883,29949953,30015489,30146566,31260676,31326210,31588356,31719428,31916036,32374788,32571397,32636930,33423362,33488898,33554434,33619970,33947649,34078722,34406404,34603010,34668546,36765698,37093377,37158913,37552129,39452673,41353217,43057154,43253761,43843585,43974657],"starting":[65537,2031617,8388609,16842753,27066369,29622273,31260673],"specific":[65537,262145,2031618,8650753,10158081,16646145,17104897,29622273,29818881,31260674,33030145,33488897,34603009,47448065],"sets":[65538,262145,2162689,3407873,3473410,37093377,37158913,37552129,41025537,42795009,42860545,42926081,43057154,43253761,43909121,45023233,45088770],"setitem":[131073,2424833,2621441,2818049,3342337,3801089,3932161,4259841,4325377,9437185,9502721,9961475,29687809,31588353,31719425,31916033,32374785],"safe":[131074,720898,2424834,2621442,2818050,3342338,3801089,3932161,4259841,4325377,4980738,5111810,5373954,5505026,5701634,6094850,17301505,17367041,32768001,45875201],"structure":[196609,262145,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,29753345,29818881,32702465,33226753,33816577,33882113,33947649,34013185,34078721,37421057,37486593,37552129,37617665,37683201,43188225,43253761,45350914,45416450],"struct":[262146,10027009,10092545,33816578,45350913,45416449],"segment":[262149,10158082,10223617,10289153,10551297,11010049,11075585,29818885,32702465,33882114,34078722,45416449],"system":[262145,327681,2031619,2555907,2621443,9633793,10485762,10551297,11141123,13172737,13369345,13828097,16646146,16842754,17039361,17432577,17498113,17563649,17629185,17694721,17760259,17825793,17891331,18087937,19398657,19529730,20054017,20119554,23199745,24379393,25100289,28114945,28180481,29818881,31260675,31653891,31719427,32702465,33947649,34603009,41746433,41877505,42074113,42205185,42532865,45350914,48889857,49086465],"segments":[262145,589825,10551297,13107201,29818881,30146561,33947649],"slice":[262146,11010052,11075588,29818882,34078723],"slices":[262146,11010049,11075585,29818882,34078722],"serves":[327681,11141121],"string":[327682,458753,917505,1900545,2228226,2359306,2424841,2490369,2555914,2621449,2686985,2752514,2818058,2883592,2949128,3080200,3145738,3276810,3342345,3670024,7340033,9568259,11403268,11534340,11862017,11927564,11993094,13828099,13893634,14221317,14483462,16580612,18022404,18219011,18284547,18481154,18546691,19136516,19464194,19595267,20316163,20381699,20447236,20512772,20578312,20643843,20709379,20774916,20840452,20905988,20971524,21430277,21495812,21626883,22085635,22216707,22347781,22413316,22478852,22544392,22609924,22740995,22806532,22872068,22937604,23199746,23330819,23396355,23527427,23658499,24379395,24444931,24510467,24707075,24772611,24903684,24969220,25034755,25100291,25165827,25296900,25427972,25690116,25755652,25821188,25886724,26017796,26083332,26542083,26607619,26935302,27918337,27983877,28049413,28114951,28180491,28246022,29884418,30343169,31195137,31457281,31522826,31588361,31653898,31719433,31784969,31850498,31916042,31981576,32047112,32112648,32178186,32309258,32374793,32571399,32964610,34209793,34471937,34865153,34996225,35127301,35192836,35258369,35389441,35454981,35520515,35586054,35651590,35717122,35782657,35848193,35913734,37814274,38207490,38338562,38404098,38535170,38600706,38666242,38731778,38928386,39059458,40304642,40697858,40763394,41418755,41484290,41549826,41615362,41943042,42795010,42860546,42926082,42991617,43384833,43974657,45154305,49283074,49348609],"source":[327682,1048578,1114114,1507330,1638402,2097154,8388609,11534338,12845061,12910597,12976133,13041669,13107205,13172737,14548997,14614529,14680065,14811137,14876673,15532035,15597569,15663105,15859717,15925249,15990785,17170437,17235973,29884418,30474242,30539778,30867458,30998530,31326210,32899077,46202881,46268417,46661633,46792705,46989313],"sourcelist":[327681,37748739,43319297],"stringcomparison":[458753,11862022,37814277,43384833],"snapshot":[524289,12386305,30081025],"safely":[589825,12845057,30146561],"size":[589826,3670017,13041666,13107202,30146562,42991617,45154305],"sort":[589832,13565958,13631494,13697030,13762566,30146568,34406409],"semaphore":[1835012,16187398,16252934,31129604],"schema":[1900546,3473410,38535169,38731777,42926084,43712514,45088770,48889857,49086465],"signature":[1966082,2031618,16711686,16777222,16908292,16973828,31260674,34603010,39124997,43778050],"setter":[2162700,17432577,17498113,17563649,17629185,17825793,17891329,31391750,34799618,39976961,40042497,40108034,40173570,43909126],"supplied":[2162692,2424834,2621442,2818050,17694721,17760257,17825793,17891329,18808833,18874369,19791873,19857409,21889025,21954561,31391748,34734082,34799618,34930690,35061762,35323906],"sourceproperties":[2293761,41549827,44040193],"sources":[2293761,18284548,41615363,44040193],"separated":[2293761,18284545,41615361,44040193],"set":[2359304,2424838,2490369,2555912,2621446,2686984,2818054,2883595,2949131,3014657,3080203,3145739,3276808,3342342,6225921,6422529,7405569,20774917,20840453,20905989,20971525,22806533,22872069,22937605,23134209,23592961,23658500,23920641,24182785,24510468,25690117,25755653,25821189,25886725,26017797,26083333,27197441,31522824,31588358,31653896,31719430,31784968,31916038,31981579,32047115,32112651,32178187,32309256,32374790,33095681,33161217,35192841,35520519,35586060,35651596,35913740,37093378,37158914,37945346,38797314,39649282,41943041,42270722,42467330,42532866,42663938,42795010,42926082,42991618,44236801,47775745,48431105,49020929],"storing":[2883585,2949121,20316161,20381697,22085633,22216705,23134209,23920641,24707073,24772609,31981569,32047105],"save":[2883585,2949121,3080193,3145729,23658497,24510465,25886721,31981569,32047105,32112641,32178177,35586049,35651585,35913729],"setinternalvalues":[2883585,3080193,3145729,23724035,24576003,25952259,31981569,32112641,32178177],"sub":[2883585,2949121,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8388609,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10223617,10289153,10354689,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11862017,12058625,12124161,12189697,12255233,12386305,12582913,12648449,12713985,13434881,13500417,13565953,13631489,13697025,13762561,13959169,14024705,14352385,14417921,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16842753,17235969,17825793,17891329,18087937,18284545,18350081,18415617,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19529729,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20643841,20709377,21102593,21168129,21233665,21495809,21561345,21626881,21692417,21823489,21889025,21954561,22020097,22609921,22675457,22740993,23068673,23134209,23592961,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24576001,24641537,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25952257,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,29229057,37355521,42598401,44630017,44695553,46989313,49020929],"simplest":[3080193,24248321,33161217,48496641],"supports":[3080193,24248321,33095682,33161217,47710209,47906817,48496641],"store":[3145729,24641537,33161217,41025537,48562177],"span":[3604483,27262977,27328514,27459586,28966913,32505859,36241410,36306945],"stringutilities":[3670019,27918338,27983874,28049410,28114946,28180482,28246018,32571395,32964609,42991618,45154307,49348612],"space":[3670018,8388609,27983873,28049409,32571394],"stringjoinoption":[3670018,7208964,7274500,7340036,28114948,28180484,32571394,32964609,49283075],"strings":[3670017,7208961,20578305,22544385,28180481,32571393,49283073],"separator":[3670018,28114949,28180485,32571394],"start":[3735553,13697025,29229057,32636929],"syntax":[3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145],"selected":[6291457,47185921],"static":[6422529,6946817,10747905,10813441,10878977,10944513,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,16121857,16187393,16252929,16318465,16384001,17170433,17235969,17301505,17367041,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,42991617,45744129,46923777,47054849,47382529,49348609,49414145],"shared":[6422529,6946817,10747905,10813441,10878977,10944513,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,16121857,16187393,16252929,16318465,16384001,17170433,17235969,17301505,17367041,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,42991617],"special":[6553601,20578305,22544385,23658497,24510465,25886721,26017793,33161217,48627714],"setasoriginal":[6684675,24510465,48627713],"support":[6684673,32702465,45285377,48627713,48693249],"skipped":[7208961,7274497,49283074],"separators":[7208961,7274497,49283074],"second":[8060929,8323073,8585217,8781825,11730945,11927553,26148865,26935297,37093377,45219841],"successfully":[8519681,8585217,8650753,10420225],"suitable":[10682369,11796481,11993089,26214401,33095681,47906817],"structures":[10682369,11796481,11993089,26214401,32702465],"sequences":[13172737],"startingindex":[13434883,13500419],"sorting":[13631489,13697025,13762561],"startindex":[13697027],"sender":[14942211,15073283,15794179,16056321,16121857,32899074,46858241,46923777,46989315],"semaphoreslim":[16187395,16252931],"scenarios":[17170433,17235969],"setting":[17825793,17891329,33161217,48627713],"streamingcontext":[18612227],"sensitive":[20316161,20381697,20447233,20512769,20578305,22085633,22216705,22413313,22478849,22544385,24707073,24772609,24903681,24969217],"saved":[20774913,20840449,20905985,20971521,22806529,22872065,22937601,23658497,24510465,25690113,25755649,25821185,25886721,26017793,26083329],"stored":[23658497,24510465,25886721,48234497],"signed":[26935297],"shown":[26935297],"seed":[27066371],"sequence":[27066369],"stringbuilder":[27918340,28246022],"strictly":[28246017],"strongly":[32768001,46071809],"sorts":[32964609,49152001],"semantics":[33095681,47841281],"shadow":[37355521],"subclass":[37355521],"select":[38666241,38731777],"sealed":[45678593,46202881,46661633,47251457,47316993,47513601,47579137,47775745,47972353,48037889,48431105,48693249,48889857,49086465],"subclasses":[48693249]} \ No newline at end of file diff --git a/docs/API/fti/FTI_116.json b/docs/API/fti/FTI_116.json index 12fbef44..6c4c3677 100644 --- a/docs/API/fti/FTI_116.json +++ b/docs/API/fti/FTI_116.json @@ -1 +1 @@ -{"topic":[1],"title":[1],"tkey1":[65571,7536644,7602184,7667720,7733256,7798788,7864332,7929864,7995398,8060934,8126470,8192002,8257542,8323078,8388613,8454148,8519686,8585222,8650758,8716294,8781830,29556749,32636929,33226775,33292294,33357829,33423366,33488901,36896772,36962306,37027845,37093381,37158916,37224450,42729477,44892168],"tkey2":[65571,7536644,7602184,7667720,7733256,7798788,7864332,7929864,7995398,8060934,8126470,8192002,8257542,8323078,8388613,8454148,8519686,8585222,8650758,8716294,8781830,29556749,32636929,33226775,33292294,33357829,33423366,33488901,36896772,36962306,37027845,37093381,37158916,37224450,42729477,44892168],"tvalue":[65570,589826,2424842,2621450,2818058,3342346,7536644,7602184,7667720,7733252,7798788,7864328,7929860,7995400,8060936,8126470,8192002,8257541,8323076,8388613,8454148,8519685,8585220,8650758,8716295,8781831,13238279,13303817,22020103,22151177,22347782,22413322,22741001,22806537,29556751,30081026,31522826,31653898,31850506,32309258,32636929,33226772,33292296,33357829,33423366,33488901,35389443,35454980,36896770,36962306,37027844,37093381,37158916,37224454,42729477,44892165],"type":[65537,131075,196609,262145,327681,393217,458753,524289,589825,655361,720899,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900548,1966081,2031621,2097156,2162691,2228225,2293761,2359297,2424835,2490369,2555905,2621443,2686977,2752513,2818051,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342339,3407873,3473409,3538945,3670017,3735553,3801089,3932161,4259841,4325377,4980739,5046273,5111811,5177345,5242881,5308417,5373955,5439489,5505027,5570561,5636097,5701635,5767169,5832705,5898241,5963777,6029313,6094851,7405569,7471105,7602177,7667713,7733249,7798785,7864322,7929858,7995394,8060931,8126465,8257537,8323074,8388610,8519681,8585218,8650753,8716291,8781828,8912897,8978433,9043969,9109505,9175041,9240577,9371650,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961474,10027009,10092547,10158081,10223617,10289154,10485761,10551297,10747906,10813441,10878977,10944514,11010049,11075586,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730948,11796481,11862017,11927556,11993089,12058625,12124161,12320769,12386306,12517377,12582915,12648451,12713987,12779523,12845058,12910594,12976130,13041667,13107203,13172740,13238276,13303812,13369347,13434884,13500420,13565955,13631492,13697030,13762564,13828097,13959169,14221313,14417921,14483458,14548993,14745601,14942210,15007745,15073282,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15728641,15794178,15859713,16056322,16121859,16187393,16252929,16318465,16384001,16449540,16515076,16646145,16711685,16777221,16842754,16908293,16973829,17104900,17170437,17235971,17301514,17367043,17432580,17498115,17563652,17629185,17694722,17760258,17825795,17891329,17956865,18022402,18153474,18219009,18481153,18546689,18743297,18808833,19070977,19529729,19726337,19791873,20250627,20316164,20381699,20447236,20512769,20578305,20643841,20709380,20774916,20840452,20905986,21102593,21364737,21430273,21495809,21561346,21626881,21823489,21889025,22020099,22151172,22282241,22347779,22413316,22478849,22544385,22609921,22675458,22740996,22806532,22872066,23003137,23068673,23265281,23330817,23461889,23527425,23592964,23658497,23789569,23855105,24117249,24182785,24313857,24379393,24444932,24510465,24576001,24641539,24707076,24838148,24903683,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25493505,25624580,25690116,25755652,25821188,25886721,25952259,26017794,26083330,26148865,26345473,26411009,26476545,26542081,26673153,26738689,26804226,26869762,27000833,27066370,27131908,27197442,27262978,27328514,27394050,27459585,27525122,27590658,27656193,27721730,27787267,27852801,27918337,27983873,28049412,28114947,28180481,28246018,28311553,28377091,28442627,28508161,28573697,28639233,28704769,28770308,28835844,28901378,28966914,29032451,29097985,29163521,29229057,29294594,29360129,29425666,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129603,31195141,31260676,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32505857,32571393,32702465,32964609,33161218,34537474,34603010,37027842,37093377,37486593,38404099,38797313,39059458,40370177,40828931,41025537,41091073,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384834,43450369,43515905,43581443,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892164,44957698,45088769,45154306,45219841,45350914,45547522,45678593,45940738,46006273,46399489,46530561,46661635,46792705,47382529,47579137,47775746,47906819,48496641,48693252],"tkey":[65544,589826,7995394,8060930,8257539,8323074,8519683,8585218,8716289,8781825,13238281,13303815,29556742,30081026,33292290,33357826,33423362,37158914,37224450,42729474],"trygetvalue":[65538,2228225,8716292,8781828,18153475,29556738,31391745,33488899],"tortuga":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801092,3866628,3932164,3997700,4063236,4128772,4194308,4259844,4325380,4390916,4456452,4521988,4587524,4653060,4718596,4784132,4849668,4915204,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160388,6225924,6291460,6356996,6422532,6488068,6553604,6619140,6684676,6750212,6815748,6881284,6946820,7012356,7077892,7143428,7208964,7274500,7340036,7405569,7471105,7536644,7602180,7667716,7733252,7798788,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781828,8847364,8912900,8978436,9043973,9109509,9175045,9240580,9306116,9371652,9437188,9502724,9568260,9633796,9699333,9764869,9830405,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420228,10485764,10551301,10616836,10682372,10747910,10813444,10878980,10944518,11010052,11075588,11141125,11206661,11272197,11337732,11403268,11468804,11534340,11599877,11665413,11730948,11796484,11862020,11927556,11993092,12058628,12124164,12189700,12255236,12320772,12386308,12451844,12517380,12582916,12648452,12713988,12779524,12845060,12910596,12976132,13041668,13107204,13172740,13238276,13303812,13369348,13434884,13500420,13565956,13631492,13697028,13762564,13828100,13893636,13959172,14024708,14090244,14155780,14221316,14286852,14352388,14417924,14483460,14548996,14614532,14680068,14745605,14811140,14876676,14942212,15007749,15073284,15138821,15204357,15269893,15335429,15400965,15466501,15532037,15597572,15663108,15728644,15794180,15859716,15925252,15990788,16056324,16121860,16187396,16252932,16318468,16384004,16449540,16515076,16580612,16646149,16711684,16777220,16842756,16908292,16973828,17039364,17104901,17170437,17235972,17301508,17367044,17432580,17498116,17563652,17629188,17694724,17760260,17825796,17891333,17956868,18022404,18087940,18153476,18219012,18284548,18350084,18415620,18481156,18546692,18612228,18677764,18743300,18808836,18874372,18939908,19005444,19070980,19136516,19202052,19267588,19333124,19398660,19464196,19529732,19595268,19660804,19726340,19791876,19857412,19922948,19988484,20054020,20119556,20185092,20250628,20316164,20381700,20447236,20512772,20578308,20643844,20709380,20774917,20840452,20905988,20971524,21037060,21102597,21168132,21233668,21299204,21364740,21430276,21495813,21561349,21626885,21692420,21757956,21823492,21889028,21954564,22020100,22085636,22151172,22216708,22282244,22347780,22413316,22478852,22544388,22609925,22675461,22740996,22806532,22872068,22937604,23003140,23068676,23134212,23199748,23265284,23330820,23396356,23461892,23527428,23592965,23658500,23724036,23789572,23855108,23920644,23986180,24051716,24117252,24182788,24248324,24313860,24379396,24444933,24510468,24576004,24641540,24707076,24772612,24838148,24903684,24969220,25034756,25100292,25165829,25231364,25296901,25362436,25427972,25493509,25559044,25624581,25690116,25755652,25821189,25886724,25952261,26017796,26083332,26148868,26214404,26279940,26345476,26411012,26476548,26542084,26607620,26673156,26738692,26804228,26869764,26935300,27000836,27066372,27131908,27197444,27262980,27328516,27394052,27459588,27525124,27590660,27656196,27721732,27787268,27852804,27918340,27983876,28049413,28114949,28180484,28246020,28311556,28377092,28442628,28508164,28573700,28639236,28704772,28770308,28835844,28901380,28966916,29032452,29097988,29163524,29229060,29294596,29360132,29425668,29491204,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896772,36962308,37027844,37093380,37158916,37224452,37289988,37355524,37421060,37486596,37552132,37617668,37683204,37748740,37814276,37879812,37945348,38010884,38076420,38141956,38207492,38273028,38338564,38404100,38469636,38535172,38600708,38666244,38731780,38797316,38862852,38928388,38993924,39059460,39124996,39190532,39256068,39321604,39387140,39452676,39518212,39583748,39649284,39714820,39780356,39845892,39911428,39976964,40042500,40108036,40173572,40239108,40304644,40370180,40435716,40501252,40566788,40632324,40697860,40763396,40828932,40894468,40960004,41025540,41091076,41156612,41222148,41287684,41353220,41418756,41484292,41549828,41615364,41680900,41746436,41811972,41877508,41943044,42008580,42074116,42139652,42205188,42270724,42336260,42401796,42467332,42532868,42598404,42663940,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892164,44957700,45023236,45088772,45154308,45219844,45285380,45350916,45416452,45481988,45547524,45613060,45678596,45744132,45809668,45875206,45940740,46006276,46071812,46137348,46202884,46268420,46333958,46399493,46465030,46530564,46596100,46661637,46727172,46792708,46858244,46923780,46989316,47054852,47120388,47185924,47251460,47316999,47382535,47448068,47513607,47579143,47644676,47710212,47775750,47841284,47906822,47972358,48037895,48103428,48168966,48234500,48300036,48365572,48431111,48496647,48562180,48627716,48693252,48758788,48824324,48889860,48955396,49020932,49086468],"tasks":[196609,589825,10354689,12779521,29294596,29360133,29425668,29491205,29687809,30081025,32899073,34275329,49086465],"true":[262145,524289,917505,2162698,2228226,2359299,2424834,2555907,2621443,2686977,2752513,2818049,2883585,2949121,3276801,3342337,8257537,8323073,8519681,8585217,8650753,8716289,8781825,10420229,10485761,10551297,11730949,11927557,12320769,12517377,14286849,16646145,16711681,16777217,16908289,17891334,17956866,20774913,20905985,20971521,21692417,22937601,23068673,23527425,23592961,23855105,24117249,24444929,25821185,26083329,26738689,26804225,27131905,29229057,29753345,30015489,31391746,33882113,34799618,37945346,38404097,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,40239105,40370177,41353217,41418754,41549826,41680897,41746434,41811969,41877506,42008578,42074114,42205186,42336257,43253761,43581450,43778051,43843586,43974659,44040195,44105729,44171265,44236801,44302337,44367873,44564481,44630017],"time":[524289,2359298,2424833,2555905,2621441,3604487,3735555,12451841,13434881,13500417,18284545,18612225,18939905,19595265,20119553,27197442,27262978,27328513,27394050,28639233,28704769,28901379,28966913,30015489,31457281,31522817,31588353,31653889,32440327,32571395,33030145,36175876,36241411,36569090,36700161,47316993],"target":[589829,2097153,12582916,12648452,12713988,12779525,13434884,17170437,17367041,17432577,17498113,17563649,17629188,17694724,17760260,17825796,30081029,31260673,34275332],"task":[589825,3735575,12779526,16252931,28246020,28311556,28377094,28442631,28508165,28573701,28770311,28835848,28901382,28966918,29032455,29097991,29163531,29229068,29294599,29360136,29425671,29491208,30081025,32571415,34275329,36503556,36634626,36700162,36765700,36831236],"times":[589825,12845057,23920641,27131905,30081025],"tsource":[589825,13172748,30081025],"tostring":[1900545,16580611,31129601],"tableattribute":[1900546,38469633,38535169,43384834,48562177,48758786],"table":[1900545,3407873,3473409,10682369,11796481,11993089,26148865,26476546,26542082,26869761,38535169,43384833],"typeinfo":[1900545,38797317,43384833],"ttarget":[2162692,17367048,17432584,17498120,17563656,31326212],"tproperty":[2162692,17367048,17432584,17498120,17563656,31326212],"tindex":[2162690,17432582,17563654,31326210],"trigger":[2162689,2883585,2949121,3080193,3145729,20250625,20316161,20381697,20447233,22020097,22151169,22347777,22413313,24248321,24510465,24641537,24707073,24772609,24838145,24903681,25559041,25886721,31916033,31981569,32047105,32112641,39321601,43581441],"throw":[2228226,2293761,3735554,18153473,18219009,28901377,28966913,31391745,32571394,33030145,36700162,41091073,43646977,47251457],"tracks":[2359297,18284545,33030145,47316993],"tpropertytracking":[2359309,2424854,2555917,2621462,2686981,2818057,3276813,3342355,4653058,5373953,5505025,5570563,5701635,6094849,18677762,18743298,18808834,19660802,19726338,19791874,20185092,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21757957,21823492,21889028,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,31457292,31522832,31588364,31653904,31719427,31850499,32243724,32309264,33095682,34865155,34996227,35061763,35127299,35258377,35323907,35389443,35454979,41943044,42074114,42139652,43778049,43843586,43974657,44040194,44105731,44236803,44564481,44630018,47775751,47906823],"triggers":[2359298,2555906,2686978,2883586,2949122,3080194,3145734,3276802,20578305,20643841,25165825,25231361,25296897,25362433,25427969,25493505,31457282,31588354,31719426,31916034,31981570,32047106,32112646,32243714,35717122,35782658],"tmodeltype":[2424840,2621448,5373955,5505027,18677763,18743303,18808839,18874370,18939906,19660803,19726343,19791879,19857410,19922946,19988482,20054018,20119554,31522819,31653891,33030146,34865160,34996232,41484290,41549826,41811970,41877506,43843587,44040195,47382537,47579145],"tracking":[2883585,2949121,23003137,23789569,33030146,33095682,47382529,47579137,47775745,47906817,47972353,48037889],"taken":[2883585,2949121,42270721,44302337,44367873],"two":[2949121,3538945,7208961,7274497,13172737,23789569,26869761,32374785,33095681,48037889,48955394],"template":[3145729,24576001,33095681,48234497],"tableandviewattribute":[3407877,3473409,26476548,26542081,33030145,42467330,44695555,48562180],"timespan":[3604482,3735557,27262980,27394052,28377092,28508164,28639236,28770308,28901381,32440322,32571397,36175873,36241409,36503554,36569089,36634625,36700161],"taskutilities":[3735555,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,32571395,32899073,36503555,36569091,36634627,36700163,36765699,36831235,49086468],"token":[3735554,28246018,28311554,28639233,28704769,28901377,28966913,29294593,29425665,32571394],"triggered":[3735554,3801089,3932161,4259841,4325377,9437185,9502721,28901377,28966913,32571394,36700162],"thread":[3735553,16318465,16384001,17235969,17301505,27852801,28180481,29163521,32571393],"treat":[6684673,48300033],"taking":[17235969,17301505],"trimmed":[18219009],"test":[27918337,27983873],"typed":[32702465,45744129],"types":[32899073,41091073,46727169],"treated":[33030145,47448065],"track":[33030145,47513601],"things":[40763393]} \ No newline at end of file +{"topic":[1],"title":[1],"tkey1":[65571,7536644,7602184,7667720,7733256,7798788,7864332,7929864,7995398,8060934,8126470,8192002,8257542,8323078,8388613,8454148,8519686,8585222,8650758,8716294,8781830,29622285,32702465,33292311,33357830,33423365,33488902,33554437,36962308,37027842,37093381,37158917,37224452,37289986,43057157,45219848],"tkey2":[65571,7536644,7602184,7667720,7733256,7798788,7864332,7929864,7995398,8060934,8126470,8192002,8257542,8323078,8388613,8454148,8519686,8585222,8650758,8716294,8781830,29622285,32702465,33292311,33357830,33423365,33488902,33554437,36962308,37027842,37093381,37158917,37224452,37289986,43057157,45219848],"tvalue":[65570,589826,2424842,2621450,2818058,3342346,7536644,7602184,7667720,7733252,7798788,7864328,7929860,7995400,8060936,8126470,8192002,8257541,8323076,8388613,8454148,8519685,8585220,8650758,8716295,8781831,13238279,13303817,22085639,22216713,22413318,22478858,22806537,22872073,29622287,30146562,31588362,31719434,31916042,32374794,32702465,33292308,33357832,33423365,33488902,33554437,35454979,35520516,36962306,37027842,37093380,37158917,37224452,37289990,43057157,45219845],"type":[65537,131075,196609,262145,327681,393217,458753,524289,589825,655361,720899,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900548,1966081,2031621,2097156,2162691,2228225,2293761,2359297,2424835,2490369,2555905,2621443,2686977,2752513,2818051,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342339,3407873,3473409,3538945,3670017,3735553,3801089,3932161,4259841,4325377,4980739,5046273,5111811,5177345,5242881,5308417,5373955,5439489,5505027,5570561,5636097,5701635,5767169,5832705,5898241,5963777,6029313,6094851,7405569,7471105,7602177,7667713,7733249,7798785,7864322,7929858,7995394,8060931,8126465,8257537,8323074,8388610,8519681,8585218,8650753,8716291,8781828,8912897,8978433,9043969,9109505,9175041,9240577,9371650,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961474,10027009,10092547,10158081,10223617,10289154,10485761,10551297,10747906,10813441,10878977,10944514,11010049,11075586,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730948,11796481,11862017,11927556,11993089,12058625,12124161,12320769,12386306,12517377,12582915,12648451,12713987,12779523,12845058,12910594,12976130,13041667,13107203,13172740,13238276,13303812,13369347,13434884,13500420,13565955,13631492,13697030,13762564,13828097,13959169,14221313,14417921,14483458,14548993,14745601,14942210,15007745,15073282,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15728641,15794178,15859713,16056322,16121859,16187393,16252929,16318465,16384001,16449540,16515076,16646145,16711685,16777221,16842754,16908293,16973829,17104897,17170436,17235973,17301507,17367050,17432579,17498116,17563651,17629188,17694721,17760258,17825794,17891331,17956865,18022401,18087938,18219010,18284545,18546689,18612225,18808833,18874369,19136513,19595265,19791873,19857409,20316163,20381700,20447235,20512772,20578305,20643841,20709377,20774916,20840452,20905988,20971522,21168129,21430273,21495809,21561345,21626882,21692417,21889025,21954561,22085635,22216708,22347777,22413315,22478852,22544385,22609921,22675457,22740994,22806532,22872068,22937602,23068673,23134209,23330817,23396353,23527425,23592961,23658500,23724033,23855105,23920641,24182785,24248321,24379393,24444929,24510468,24576001,24641537,24707075,24772612,24903684,24969219,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25559041,25690116,25755652,25821188,25886724,25952257,26017795,26083330,26148866,26214401,26411009,26476545,26542081,26607617,26738689,26804225,26869762,26935298,27066369,27131906,27197444,27262978,27328514,27394050,27459586,27525121,27590658,27656194,27721729,27787266,27852803,27918337,27983873,28049409,28114948,28180483,28246017,28311554,28377089,28442627,28508163,28573697,28639233,28704769,28770305,28835844,28901380,28966914,29032450,29097987,29163521,29229057,29294593,29360130,29425665,29491202,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195139,31260677,31326212,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32571393,32636929,32768001,33030145,33226754,34603010,34668546,37093378,37158913,37552129,38469635,38862849,39124994,39452673,40632321,41156611,41353217,41418753,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712514,43778049,43843585,43909123,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219844,45285378,45416449,45481986,45547521,45678594,45875202,46006273,46268418,46333953,46727169,46858241,46989315,47120385,47710209,47906817,48103426,48234499,48824321,49020932],"tkey":[65544,589826,7995394,8060930,8257539,8323074,8519683,8585218,8716289,8781825,13238281,13303815,29622278,30146562,33357826,33423362,33488898,37224450,37289986,43057154],"trygetvalue":[65538,2228225,8716292,8781828,18219011,29622274,31457281,33554435],"tortuga":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801092,3866628,3932164,3997700,4063236,4128772,4194308,4259844,4325380,4390916,4456452,4521988,4587524,4653060,4718596,4784132,4849668,4915204,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160388,6225924,6291460,6356996,6422532,6488068,6553604,6619140,6684676,6750212,6815748,6881284,6946820,7012356,7077892,7143428,7208964,7274500,7340036,7405569,7471105,7536644,7602180,7667716,7733252,7798788,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781828,8847364,8912900,8978436,9043973,9109509,9175045,9240580,9306116,9371652,9437188,9502724,9568260,9633796,9699333,9764869,9830405,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420228,10485764,10551301,10616836,10682372,10747910,10813444,10878980,10944518,11010052,11075588,11141125,11206661,11272197,11337732,11403268,11468804,11534340,11599877,11665413,11730948,11796484,11862020,11927556,11993092,12058628,12124164,12189700,12255236,12320772,12386308,12451844,12517380,12582916,12648452,12713988,12779524,12845060,12910596,12976132,13041668,13107204,13172740,13238276,13303812,13369348,13434884,13500420,13565956,13631492,13697028,13762564,13828100,13893636,13959172,14024708,14090244,14155780,14221316,14286852,14352388,14417924,14483460,14548996,14614532,14680068,14745605,14811140,14876676,14942212,15007749,15073284,15138821,15204357,15269893,15335429,15400965,15466501,15532037,15597572,15663108,15728644,15794180,15859716,15925252,15990788,16056324,16121860,16187396,16252932,16318468,16384004,16449540,16515076,16580612,16646149,16711684,16777220,16842756,16908292,16973828,17039364,17104901,17170437,17235973,17301508,17367044,17432580,17498116,17563652,17629188,17694724,17760260,17825796,17891332,17956869,18022404,18087940,18153476,18219012,18284548,18350084,18415620,18481156,18546692,18612228,18677764,18743300,18808836,18874372,18939908,19005444,19070980,19136516,19202052,19267588,19333124,19398660,19464196,19529732,19595268,19660804,19726340,19791876,19857412,19922948,19988484,20054020,20119556,20185092,20250628,20316164,20381700,20447236,20512772,20578308,20643844,20709380,20774916,20840453,20905988,20971524,21037060,21102596,21168133,21233668,21299204,21364740,21430276,21495812,21561349,21626885,21692421,21757956,21823492,21889028,21954564,22020100,22085636,22151172,22216708,22282244,22347780,22413316,22478852,22544388,22609924,22675461,22740997,22806532,22872068,22937604,23003140,23068676,23134212,23199748,23265284,23330820,23396356,23461892,23527428,23592964,23658501,23724036,23789572,23855108,23920644,23986180,24051716,24117252,24182788,24248324,24313860,24379396,24444932,24510469,24576004,24641540,24707076,24772612,24838148,24903684,24969220,25034756,25100292,25165828,25231365,25296900,25362437,25427972,25493508,25559045,25624580,25690117,25755652,25821188,25886725,25952260,26017797,26083332,26148868,26214404,26279940,26345476,26411012,26476548,26542084,26607620,26673156,26738692,26804228,26869764,26935300,27000836,27066372,27131908,27197444,27262980,27328516,27394052,27459588,27525124,27590660,27656196,27721732,27787268,27852804,27918340,27983876,28049412,28114949,28180485,28246020,28311556,28377092,28442628,28508164,28573700,28639236,28704772,28770308,28835844,28901380,28966916,29032452,29097988,29163524,29229060,29294596,29360132,29425668,29491204,29556740,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962308,37027844,37093380,37158916,37224452,37289988,37355524,37421060,37486596,37552132,37617668,37683204,37748740,37814276,37879812,37945348,38010884,38076420,38141956,38207492,38273028,38338564,38404100,38469636,38535172,38600708,38666244,38731780,38797316,38862852,38928388,38993924,39059460,39124996,39190532,39256068,39321604,39387140,39452676,39518212,39583748,39649284,39714820,39780356,39845892,39911428,39976964,40042500,40108036,40173572,40239108,40304644,40370180,40435716,40501252,40566788,40632324,40697860,40763396,40828932,40894468,40960004,41025540,41091076,41156612,41222148,41287684,41353220,41418756,41484292,41549828,41615364,41680900,41746436,41811972,41877508,41943044,42008580,42074116,42139652,42205188,42270724,42336260,42401796,42467332,42532868,42598404,42663940,42729476,42795012,42860548,42926084,42991620,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219844,45285380,45350916,45416452,45481988,45547524,45613060,45678596,45744132,45809668,45875204,45940740,46006276,46071812,46137348,46202886,46268420,46333956,46399492,46465028,46530564,46596100,46661638,46727173,46792710,46858244,46923780,46989317,47054852,47120388,47185924,47251460,47316996,47382532,47448068,47513604,47579140,47644679,47710215,47775748,47841287,47906823,47972356,48037892,48103430,48168964,48234502,48300038,48365575,48431108,48496646,48562180,48627716,48693252,48758791,48824327,48889860,48955396,49020932,49086468,49152004,49217540,49283076,49348612,49414148],"tasks":[196609,589825,10354689,12779521,29360132,29425669,29491204,29556741,29753345,30146561,32964609,34340865,49414145],"true":[262145,524289,917505,2162698,2228226,2359299,2424834,2555907,2621443,2686977,2752513,2818049,2883585,2949121,3276801,3342337,8257537,8323073,8519681,8585217,8650753,8716289,8781825,10420229,10485761,10551297,11730949,11927557,12320769,12517377,14286849,16646145,16711681,16777217,16908289,17956870,18022402,20840449,20971521,21037057,21757953,23003137,23134209,23592961,23658497,23920641,24182785,24510465,25886721,26148865,26804225,26869761,27197441,29294593,29818881,30081025,31457282,33947649,34865154,38010882,38469633,39321601,39387137,39518209,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40501249,40632321,41680897,41746434,41877506,42008577,42074114,42139649,42205186,42336258,42401794,42532866,42663937,43581441,43909130,44105731,44171266,44302339,44367875,44433409,44498945,44564481,44630017,44695553,44892161,44957697],"time":[524289,2359298,2424833,2555905,2621441,3604487,3735555,12451841,13434881,13500417,18350081,18677761,19005441,19660801,20185089,27262978,27328514,27394049,27459586,28704769,28770305,28966915,29032449,30081025,31522817,31588353,31653889,31719425,32505863,32636931,33095681,36241412,36306947,36634626,36765697,47644673],"target":[589829,2097153,12582916,12648452,12713988,12779525,13434884,17235973,17432577,17498113,17563649,17629185,17694724,17760260,17825796,17891332,30146565,31326209,34340868],"task":[589825,3735575,12779526,16252931,28311556,28377092,28442630,28508167,28573701,28639237,28835847,28901384,28966918,29032454,29097991,29163527,29229067,29294604,29360135,29425672,29491207,29556744,30146561,32636951,34340865,36569092,36700162,36765698,36831236,36896772],"times":[589825,12845057,23986177,27197441,30146561],"tsource":[589825,13172748,30146561],"tostring":[1900545,16580611,31195137],"tableattribute":[1900546,38535169,38600705,43712514,48889857,49086466],"table":[1900545,3407873,3473409,10682369,11796481,11993089,26214401,26542082,26607618,26935297,38600705,43712513],"typeinfo":[1900545,38862853,43712513],"ttarget":[2162692,17432584,17498120,17563656,17629192,31391748],"tproperty":[2162692,17432584,17498120,17563656,17629192,31391748],"tindex":[2162690,17498118,17629190,31391746],"trigger":[2162689,2883585,2949121,3080193,3145729,20316161,20381697,20447233,20512769,22085633,22216705,22413313,22478849,23724033,24576001,24707073,24772609,24838145,24903681,24969217,25624577,25952257,31981569,32047105,32112641,32178177,39518209,43909121],"throw":[2228226,2293761,3735554,18219009,18284545,28966913,29032449,31457281,32636930,33095681,36765698,41418753,43974657,47579137],"tracks":[2359297,18350081,33095681,47644673],"tpropertytracking":[2359309,2424854,2555917,2621462,2686981,2818057,3276813,3342355,4653058,5373953,5505025,5570563,5701635,6094849,18743298,18808834,18874370,19726338,19791874,19857410,20250628,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21823493,21889028,21954564,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,31522828,31588368,31653900,31719440,31784963,31916035,32309260,32374800,33161218,34930691,35061763,35127299,35192835,35323913,35389443,35454979,35520515,42270724,42401794,42467332,44105729,44171266,44302337,44367874,44433411,44564483,44892161,44957698,48103431,48234503],"triggers":[2359298,2555906,2686978,2883586,2949122,3080194,3145734,3276802,20643841,20709377,25231361,25296897,25362433,25427969,25493505,25559041,31522818,31653890,31784962,31981570,32047106,32112642,32178182,32309250,35782658,35848194],"tmodeltype":[2424840,2621448,5373955,5505027,18743299,18808839,18874375,18939906,19005442,19726339,19791879,19857415,19922946,19988482,20054018,20119554,20185090,31588355,31719427,33095682,34930696,35061768,41811970,41877506,42139650,42205186,44171267,44367875,47710217,47906825],"tracking":[2883585,2949121,23068673,23855105,33095682,33161218,47710209,47906817,48103425,48234497,48300033,48365569],"taken":[2883585,2949121,42598401,44630017,44695553],"two":[2949121,3538945,7208961,7274497,13172737,23855105,26935297,32440321,33161217,48365569,49283074],"template":[3145729,24641537,33161217,48562177],"tableandviewattribute":[3407877,3473409,26542084,26607617,33095681,42795010,45023235,48889860],"timespan":[3604482,3735557,27328516,27459588,28442628,28573700,28704772,28835844,28966917,32505858,32636933,36241409,36306945,36569090,36634625,36700161,36765697],"taskutilities":[3735555,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,32636931,32964609,36569091,36634627,36700163,36765699,36831235,36896771,49414148],"token":[3735554,28311554,28377090,28704769,28770305,28966913,29032449,29360129,29491201,32636930],"triggered":[3735554,3801089,3932161,4259841,4325377,9437185,9502721,28966913,29032449,32636930,36765698],"thread":[3735553,16318465,16384001,17301505,17367041,27918337,28246017,29229057,32636929],"treat":[6684673,48627713],"taking":[17301505,17367041],"trimmed":[18284545],"test":[27983873,28049409],"typed":[32768001,46071809],"types":[32964609,41418753,47054849],"treated":[33095681,47775745],"track":[33095681,47841281],"things":[41025537]} \ No newline at end of file diff --git a/docs/API/fti/FTI_117.json b/docs/API/fti/FTI_117.json index acc5bba3..dc3708df 100644 --- a/docs/API/fti/FTI_117.json +++ b/docs/API/fti/FTI_117.json @@ -1 +1 @@ -{"unmanaged":[196609,10354689,29687809],"underlying":[262145,1900547,2359297,2424833,2555906,2621442,2686977,2818049,3276801,3342337,16449537,16515073,19464193,20054017,31129602,31588353,31653889,37552129,38797313,41943041,42139649,42926081,43384833,43778049,43843585,43974657,44040193,44105729,44236801,44564481,44630017],"using":[327683,589825,2359297,2424835,2555905,2621443,2686977,2818051,2883585,2949122,3080193,3145729,3276802,3342340,3407873,3473409,3538946,3670018,3735554,11337729,11403265,11468801,13565953,18743297,18808833,19726337,19791873,20316161,21823489,21889025,22151169,23920641,24707073,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26738689,28049409,28114945,28246017,28311553,29818883,30081025,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981570,32047105,32112641,32243713,32309249,32505858,32571394,33030146,34144258,34340865,34865154,34996226,35258370,35913731,35979266,48431105,48496641],"unwraps":[589825,12779521,30081025,34275329],"updates":[2162689,2883585,2949121,23724033,31916033,31981569,39321601,43581441],"updated":[2162689,20709377,20774913,20840449,20905985,22740993,22806529,22872065,25624577,25690113,25755649,25952257,26017793,39387137,43581441],"update":[2162689,6750209,23592961,24444929,25821185,33030145,40173569,43581441,47710209,48300033],"unchanged":[2359297,2424833,2555905,2621441,2883585,2949121,6684673,18350081,18874369,19202049,19857409,23068673,23855105,31457281,31522817,31588353,31653889,31916033,31981569,48300033],"used":[2359298,2424834,2490369,2555906,2621442,2686977,2752513,2818049,3276801,3342337,3407873,3473409,6356993,6684673,8454145,12845057,12910593,12976129,17039361,17104898,17170434,18612225,18939905,19595265,20119553,21430273,22544385,23003137,23789569,24576001,26673153,26804225,27000834,28180481,29163521,31457282,31522818,31588354,31653890,31719425,31784961,31850497,32243713,32309249,32702466,32833541,32899073,33030148,33095685,38600705,38666241,40763393,41615361,42467329,42532865,43909121,44695553,44761089,45613057,45678593,45875201,45940737,46006273,46333953,46465025,47448065,47775745,47841281,47906817,48300034,48365569,48562177,48627713,48693249,48758786,48824321],"unsaved":[2883585,2949121,23396353,31916033,31981569,33030146,47316993,47513601],"uses":[2883585,2949121,3080193,3145729,25559041,31916033,31981569,32047105,32112641,32636929,44892161],"updateischangedlocal":[2883585,2949121,23724036,31916033,31981569],"unaltered":[3604482,27066369,27131905,32440322,36110338],"useiclonable":[6356995,46858241],"updateischangedproperty":[6750211,48300033],"updatemode":[7012356,7077892,7143428,33030145,48627715],"uninitialized":[8716289,8781825,23592961,24444929,25821185],"usually":[20512769,22478849,29163521],"unfortunately":[26083329,26148865],"utility":[32899073,45416449],"useful":[37289985],"usage":[42663937]} \ No newline at end of file +{"unmanaged":[196609,10354689,29753345],"underlying":[262145,1900547,2359297,2424833,2555906,2621442,2686977,2818049,3276801,3342337,16449537,16515073,19529729,20119553,31195138,31653889,31719425,37617665,38862849,42270721,42467329,43253761,43712513,44105729,44171265,44302337,44367873,44433409,44564481,44892161,44957697],"using":[327683,589825,2359297,2424835,2555905,2621443,2686977,2818051,2883585,2949122,3080193,3145729,3276802,3342340,3407873,3473409,3538946,3670018,3735554,11337729,11403265,11468801,13565953,18808833,18874369,19791873,19857409,20381697,21889025,21954561,22216705,23986177,24772609,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26804225,28114945,28180481,28311553,28377089,29884419,30146561,31522817,31588353,31653889,31719425,31784961,31916033,31981569,32047106,32112641,32178177,32309249,32374785,32571394,32636930,33095682,34209794,34406401,34930690,35061762,35323906,35979267,36044802,48758785,48824321],"unwraps":[589825,12779521,30146561,34340865],"updates":[2162689,2883585,2949121,23789569,31981569,32047105,39518209,43909121],"updated":[2162689,20774913,20840449,20905985,20971521,22806529,22872065,22937601,25690113,25755649,25821185,26017793,26083329,39649281,43909121],"update":[2162689,6750209,23658497,24510465,25886721,33095681,40435713,43909121,48037889,48627713],"unchanged":[2359297,2424833,2555905,2621441,2883585,2949121,6684673,18415617,18939905,19267585,19922945,23134209,23920641,31522817,31588353,31653889,31719425,31981569,32047105,48627713],"used":[2359298,2424834,2490369,2555906,2621442,2686977,2752513,2818049,3276801,3342337,3407873,3473409,6356993,6684673,8454145,12845057,12910593,12976129,17039361,17170434,17235970,18677761,19005441,19660801,20185089,21495809,22609921,23068673,23855105,24641537,26738689,26869761,27066370,28246017,29229057,31522818,31588354,31653890,31719426,31784961,31850497,31916033,32309249,32374785,32768002,32899077,32964609,33095684,33161221,38666241,38731777,41025537,41943041,42795009,42860545,44236801,45023233,45088769,45940737,46006273,46202881,46268417,46333953,46661633,46792705,47775745,48103425,48168961,48234497,48627714,48693249,48889857,48955393,49020929,49086466,49152001],"unsaved":[2883585,2949121,23461889,31981569,32047105,33095682,47644673,47841281],"uses":[2883585,2949121,3080193,3145729,25624577,31981569,32047105,32112641,32178177,32702465,45219841],"updateischangedlocal":[2883585,2949121,23789572,31981569,32047105],"unaltered":[3604482,27131905,27197441,32505858,36175874],"useiclonable":[6356995,47185921],"updateischangedproperty":[6750211,48627713],"updatemode":[7012356,7077892,7143428,33095681,48955395],"uninitialized":[8716289,8781825,23658497,24510465,25886721],"usually":[20578305,22544385,29229057],"unfortunately":[26148865,26214401],"utility":[32964609,45744129],"useful":[37355521],"usage":[42991617]} \ No newline at end of file diff --git a/docs/API/fti/FTI_118.json b/docs/API/fti/FTI_118.json index 5ba2ed5a..d9c3ddb8 100644 --- a/docs/API/fti/FTI_118.json +++ b/docs/API/fti/FTI_118.json @@ -1 +1 @@ -{"valuetuple":[65549,7602180,7667716,7733252,7864328,7929860,7995396,8126468,8257540,8388611,8454146,8519684,8650756,8716292,11730950,11796483,11927558,11993091,29556742,32636930,33226758,33292290,33357825,33423362,33488897,36896770,37093379,37158914,42729473,45219841,45285377],"value":[65541,262146,327681,655361,1900545,2031619,2162692,2359320,2424850,2555928,2621458,2686999,2752513,2818066,2883614,2949152,3014657,3080220,3145756,3211265,3276823,3342354,3538945,4194305,4587521,4784129,5046273,5308417,5439489,5570561,5636097,5767169,5832705,5898241,5963777,6029313,6356993,6422531,6684674,7405569,7995397,8060933,8257537,8323073,8454145,8519681,8585217,8650753,8716297,8781832,9633793,9961473,10158081,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11730945,11796482,11927553,11993090,12320769,12451841,12517377,12845057,12910593,12976129,13041665,13107201,13172737,13238274,13303810,13369345,13828098,14090241,14155777,14221313,14286849,14483457,16121857,16187393,16252929,16449538,16515074,16580609,16646146,16711681,16777217,16908289,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760261,17825797,17891329,17956865,18087937,18153476,18481153,19529729,20250627,20316165,20381698,20447234,20512770,20709387,20774923,20840459,20905994,20971521,21233665,21299201,21364737,21692417,22020099,22085633,22151173,22216705,22282241,22347778,22413314,22478850,22741003,22806539,22872072,22937601,23134212,23265281,23330821,23396353,23461889,23592970,23986177,24051713,24248321,24313860,24379393,24444938,24641539,24707077,24772609,24838146,24903682,25034756,25100289,25624586,25690123,25755659,25821194,25952265,26017801,26083330,26148865,26869763,27000834,27066369,27131905,27197443,27262978,27328515,27394050,27459586,27525123,27590659,27656194,27721729,27787265,27852801,27918339,27983875,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29229057,29360129,29491201,29556740,29753345,30146561,31195137,31457303,31522834,31588375,31653906,31719446,31850514,31916061,31981599,32047131,32112667,32178177,32243734,32309266,32374785,33095681,33292290,33488898,34537473,35061763,35127312,35389443,35454988,35520533,35586069,35651586,35848213,36896769,36962305,37027843,37093377,37158913,37224449,37355521,37486594,37552129,37617665,37748737,37945345,38404099,38928385,38993921,39059457,39124993,39190530,39256066,39976961,40042497,40108033,40173569,40370178,40566785,40763393,41025537,41091073,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42926081,43384833,43515906,43581444,44892161,46858241,48300035,48693250],"values":[65538,131073,524289,589829,2359297,2424834,2555905,2621442,2818049,2883589,2949129,3080194,3145730,3342337,3670017,9240577,12124161,12582913,12648449,12713985,13303809,13434881,18612225,18939905,19595265,20119553,23068673,23527426,23855105,23920641,23986177,24051714,24117250,24248321,24510465,24772609,25886721,26869761,28049414,28114949,29032449,29622273,30015489,30081029,31457281,31522818,31588353,31653890,31850497,31916035,31981575,32047106,32112642,32309249,32505857,32702465,34275331,37224453,40763393,42270725,42729474,44302338,44367874,45481985],"validate":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14090241,14155777,14221313,14286851,20971523,21233665,21299201,21364737,21692419,22085633,22216705,22282241,22937603,30277633,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249,37945345,42008577,42074113],"validationresultcollection":[983047,14352389,14417925,14483458,21495811,21561347,22609923,22675459,30343171,32768001,34471943,45809668],"validationresult":[983041,14090242,14155778,14221314,14417924,14483459,21233666,21299202,21364738,22085634,22216706,22282242,26083335,26148868,34471937],"validation":[983041,2359298,2424834,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3080195,3145730,3276802,3342338,9371649,9895937,9961473,14483457,20250625,20316161,20381697,20447233,21495810,21561346,22020097,22151169,22347777,22413313,22609922,22675458,24182785,24641537,24707073,24838145,24903681,25559042,30343169,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32243714,32309250,32702465,32768001,33095681,45744129,45809665,48168961],"view":[1900545,3407873,3473410,33030146,38600705,42467330,42532866,42598401,43384833,44695553,44761090,48562177,48758785],"viewattribute":[1900546,3473412,26542083,33030145,38600705,38666241,42532866,42598402,43384834,44761091,48758788],"visualbasicfullname":[1900545,38862851,43384833],"validators":[2162690,6815745,40894468,43581442,48300033],"valuechanged":[2359297,2555905,2686977,2883585,2949121,3080193,3145729,3276801,20774919,25624585,31457281,31588353,31719425,31916033,31981569,32047105,32112641,32243713,33030146,35127297,35520513,35586049,35848193,48693252],"validationresultequalitycomparer":[3211267,6946820,7471107,26083330,26148866,32178179,33095681,48365572],"viewname":[3407873,42467331,44695553],"version":[3735555,29294593,29425665,29491201,32571395,32702465,32899073,36765697,36831234,45547521,48889857],"validateobject":[6815747,48300033],"validateproperty":[6881283,48300033],"void":[7995393,8060929,8126465,8192001,8388609,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9699329,9764865,9830401,9895937,9961473,10223617,10289153,10354689,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,12058625,12124161,12189697,12255233,12386305,12582913,12648449,12713985,13434881,13500417,13565953,13631489,13697025,13762561,14024705,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15794177,15925249,15990785,16842753,17170433,17760257,17825793,18022401,18350081,18546689,18612225,18874369,18939905,19202049,19267585,19333121,19464193,19595265,19857409,19922945,19988481,20054017,20119553,20578305,20643841,21102593,21168129,21430273,21495809,21561345,21626881,21954561,22544385,22609921,22675457,23068673,23527425,23658497,23724033,23855105,23920641,23986177,24051713,24117249,24510465,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25886721,29163521,46661633,48693249],"visual":[8388609,10420226,11730946,11927554,17891330],"virtual":[9437185,9502721,11337729,11534337,19267585,19333121,19464193,19922945,19988481,20054017,21495809,21561345,22609921,22675457,23068673,23527425,25427969],"validated":[21561345,22675457],"valuesarray":[23658499,24510467,25886723],"various":[32899073,46727169],"validationresults":[33095681,48365569],"validationattribute":[40894466]} \ No newline at end of file +{"valuetuple":[65549,7602180,7667716,7733252,7864328,7929860,7995396,8126468,8257540,8388611,8454146,8519684,8650756,8716292,11730950,11796483,11927558,11993091,29622278,32702466,33292294,33357826,33423361,33488898,33554433,36962306,37158915,37224450,43057153,45547521,45613057],"value":[65541,262146,327681,655361,1900545,2031619,2162692,2359320,2424850,2555928,2621458,2686999,2752513,2818066,2883614,2949152,3014657,3080220,3145756,3211265,3276823,3342354,3538945,4194305,4587521,4784129,5046273,5308417,5439489,5570561,5636097,5767169,5832705,5898241,5963777,6029313,6356993,6422531,6684674,7405569,7995397,8060933,8257537,8323073,8454145,8519681,8585217,8650753,8716297,8781832,9633793,9961473,10158081,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11730945,11796482,11927553,11993090,12320769,12451841,12517377,12845057,12910593,12976129,13041665,13107201,13172737,13238274,13303810,13369345,13828098,14090241,14155777,14221313,14286849,14483457,16121857,16187393,16252929,16449538,16515074,16580609,16646146,16711681,16777217,16908289,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825797,17891333,17956865,18022401,18153473,18219012,18546689,19595265,20316163,20381701,20447234,20512770,20578306,20774923,20840459,20905995,20971530,21037057,21299201,21364737,21430273,21757953,22085635,22151169,22216709,22282241,22347777,22413314,22478850,22544386,22806539,22872075,22937608,23003137,23199748,23330817,23396357,23461889,23527425,23658506,24051713,24117249,24379396,24444929,24510474,24707075,24772613,24838145,24903682,24969218,25100292,25165825,25690122,25755659,25821195,25886730,26017801,26083337,26148866,26214401,26935299,27066370,27131905,27197441,27262979,27328514,27394051,27459586,27525122,27590659,27656195,27721730,27787265,27852801,27918337,27983875,28049411,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29294593,29425665,29556737,29622276,29818881,30212097,31260673,31522839,31588370,31653911,31719442,31784982,31916050,31981597,32047135,32112667,32178203,32243713,32309270,32374802,32440321,33161217,33357826,33554434,34603009,35127299,35192848,35454979,35520524,35586069,35651605,35717122,35913749,36962305,37027841,37093379,37158913,37224449,37289985,37421057,37552130,37617665,37683201,37814273,38010881,38469635,38993921,39059457,39124993,39190529,39321602,39387138,39452673,40239105,40304641,40370177,40435713,40632322,40828929,41025537,41353217,41418753,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42991617,43057153,43253761,43712513,43843586,43909124,45219841,47185921,48627715,49020930],"values":[65538,131073,524289,589829,2359297,2424834,2555905,2621442,2818049,2883590,2949129,3080193,3145730,3342337,3670017,9240577,12124161,12582913,12648449,12713985,13303809,13434881,18677761,19005441,19660801,20185089,23134209,23592962,23724033,23920641,23986177,24051713,24117250,24182786,24576001,24838145,25952257,26935297,28114950,28180485,29097985,29687809,30081025,30146565,31522817,31588354,31653889,31719426,31916033,31981572,32047111,32112641,32178178,32374785,32571393,32768001,34340867,37289989,41025537,42598405,43057154,44630018,44695554,45809665],"validate":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14090241,14155777,14221313,14286851,21037059,21299201,21364737,21430273,21757955,22151169,22282241,22347777,23003139,30343169,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785,38010881,42336257,42401793],"validationresultcollection":[983047,14352389,14417925,14483458,21561347,21626883,22675459,22740995,30408707,32833537,34537479,46137348],"validationresult":[983041,14090242,14155778,14221314,14417924,14483459,21299202,21364738,21430274,22151170,22282242,22347778,26148871,26214404,34537473],"validation":[983041,2359298,2424834,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3080195,3145730,3276802,3342338,9371649,9895937,9961473,14483457,20316161,20381697,20447233,20512769,21561346,21626882,22085633,22216705,22413313,22478849,22675458,22740994,24248321,24707073,24772609,24903681,24969217,25624578,30408705,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32309250,32374786,32768001,32833537,33161217,46071809,46137345,48496641],"view":[1900545,3407873,3473410,33095682,38666241,42795010,42860546,42926081,43712513,45023233,45088770,48889857,49086465],"viewattribute":[1900546,3473412,26607619,33095681,38666241,38731777,42860546,42926082,43712514,45088771,49086468],"visualbasicfullname":[1900545,38928387,43712513],"validators":[2162690,6815745,41222148,43909122,48627713],"valuechanged":[2359297,2555905,2686977,2883585,2949121,3080193,3145729,3276801,20840455,25690121,31522817,31653889,31784961,31981569,32047105,32112641,32178177,32309249,33095682,35192833,35586049,35651585,35913729,49020932],"validationresultequalitycomparer":[3211267,6946820,7471107,26148866,26214402,32243715,33161217,48693252],"viewname":[3407873,42795011,45023233],"version":[3735555,29360129,29491201,29556737,32636931,32768001,32964609,36831233,36896770,45875201,49217537],"validateobject":[6815747,48627713],"validateproperty":[6881283,48627713],"void":[7995393,8060929,8126465,8192001,8388609,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9699329,9764865,9830401,9895937,9961473,10223617,10289153,10354689,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,12058625,12124161,12189697,12255233,12386305,12582913,12648449,12713985,13434881,13500417,13565953,13631489,13697025,13762561,14024705,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15794177,15925249,15990785,16842753,17235969,17825793,17891329,18087937,18415617,18612225,18677761,18939905,19005441,19267585,19333121,19398657,19529729,19660801,19922945,19988481,20054017,20119553,20185089,20643841,20709377,21168129,21233665,21495809,21561345,21626881,21692417,22020097,22609921,22675457,22740993,23134209,23592961,23724033,23789569,23920641,23986177,24051713,24117249,24182785,24576001,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25952257,29229057,46989313,49020929],"visual":[8388609,10420226,11730946,11927554,17956866],"virtual":[9437185,9502721,11337729,11534337,19333121,19398657,19529729,19988481,20054017,20119553,21561345,21626881,22675457,22740993,23134209,23592961,25493505],"validated":[21626881,22740993],"valuesarray":[23724035,24576003,25952259],"various":[32964609,47054849],"validationresults":[33161217,48693249],"validationattribute":[41222146]} \ No newline at end of file diff --git a/docs/API/fti/FTI_119.json b/docs/API/fti/FTI_119.json index 94e2cc00..f88d250f 100644 --- a/docs/API/fti/FTI_119.json +++ b/docs/API/fti/FTI_119.json @@ -1 +1 @@ -{"weak":[131078,327684,524289,1048578,1114114,1245186,1376258,1441794,1507330,1638402,2359298,2424838,2555906,2621446,2686978,2752514,2818054,3276802,3342342,9043969,9109505,9175041,9699329,9764865,9830401,11206657,11272193,11599873,11665409,12058625,14745601,15007745,15138817,15204353,15269889,15335425,15400961,15466497,21102593,21626881,29622278,29818884,30015489,30408706,30474242,30605314,30670850,30736386,30801922,30932994,31457282,31522822,31588354,31653894,31719426,31784962,31850502,32243714,32309254,32636931,32833544,33619971,33685507,34078722,34209794,44957698,45350913,45875201,45940737,46006273,46071809,46202881,46268417,46333953,46465025],"wrapper":[131073,327681,2424833,2621441,2818049,3342337,11141121,32636929,37289985,42795009,43843585,44040193,44236801,44630017,44957697],"widening":[262146,10813443,10878979,33161218,33947651],"wrap":[327681,11534337,29818881],"wrapped":[327681,589826,1703937,12910593,12976129,30081026,37683201,38010881,42991617,43319297],"weakreferencecollection":[524291,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,30015491,32636929,37814274,43122691,45350916],"write":[1835010,16384004,31064066,33030146,48562177,48758786],"walks":[2359297,2555905,2621441,41353217,41680897,41811969,43778049,43974657,44040193],"walk":[2359297,2424833,2555905,2621441,2883585,2949121,41418753,41484289,41746433,41877505,42205185,43778049,43843585,43974657,44040193,44302337,44367873],"working":[2883585,2949121,32899074,42270721,44302337,44367873,46727169,49086465],"white":[3670018,27918337,27983873,32505858],"waiting":[3735553,28901377,28966913,29163522,32571393],"waitforcompleteorcancel":[3735553,29229059,32571393],"wait":[3735553,28901378,28966914,29229057,29294593,29360129,29425665,29491201,32571393],"whenall":[3735557,29294597,29360133,29491201,32571397,36765701,36831233],"whenany":[3735555,29425669,29491204,32571395,36831236],"warning":[6160385,26083329,26148865,29163521],"work":[6160385,45744130],"wrong":[6488065,48300033],"whitespace":[18219009],"want":[20512769,22478849],"wraps":[32833538,46530561,46596097]} \ No newline at end of file +{"weak":[131078,327684,524289,1048578,1114114,1245186,1376258,1441794,1507330,1638402,2359298,2424838,2555906,2621446,2686978,2752514,2818054,3276802,3342342,9043969,9109505,9175041,9699329,9764865,9830401,11206657,11272193,11599873,11665409,12058625,14745601,15007745,15138817,15204353,15269889,15335425,15400961,15466497,21168129,21692417,29687814,29884420,30081025,30474242,30539778,30670850,30736386,30801922,30867458,30998530,31522818,31588358,31653890,31719430,31784962,31850498,31916038,32309250,32374790,32702467,32899080,33685507,33751043,34144258,34275330,45285378,45678593,46202881,46268417,46333953,46399489,46530561,46596097,46661633,46792705],"wrapper":[131073,327681,2424833,2621441,2818049,3342337,11141121,32702465,37355521,43122689,44171265,44367873,44564481,44957697,45285377],"widening":[262146,10813443,10878979,33226754,34013187],"wrap":[327681,11534337,29884417],"wrapped":[327681,589826,1703937,12910593,12976129,30146562,37748737,38076417,43319297,43646977],"weakreferencecollection":[524291,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,30081027,32702465,37879810,43450371,45678596],"write":[1835010,16384004,31129602,33095682,48889857,49086466],"walks":[2359297,2555905,2621441,41680897,42008577,42139649,44105729,44302337,44367873],"walk":[2359297,2424833,2555905,2621441,2883585,2949121,41746433,41811969,42074113,42205185,42532865,44105729,44171265,44302337,44367873,44630017,44695553],"working":[2883585,2949121,32964610,42598401,44630017,44695553,47054849,49414145],"white":[3670018,27983873,28049409,32571394],"waiting":[3735553,28966913,29032449,29229058,32636929],"waitforcompleteorcancel":[3735553,29294595,32636929],"wait":[3735553,28966914,29032450,29294593,29360129,29425665,29491201,29556737,32636929],"whenall":[3735557,29360133,29425669,29556737,32636933,36831237,36896769],"whenany":[3735555,29491205,29556740,32636931,36896772],"warning":[6160385,26148865,26214401,29229057],"work":[6160385,46071810],"wrong":[6488065,48627713],"whitespace":[18284545],"want":[20578305,22544385],"wraps":[32899074,46858241,46923777]} \ No newline at end of file diff --git a/docs/API/fti/FTI_122.json b/docs/API/fti/FTI_122.json index 3f58638e..0111052d 100644 --- a/docs/API/fti/FTI_122.json +++ b/docs/API/fti/FTI_122.json @@ -1 +1 @@ -{"zero":[8388610,9371649,9895938,9961473,12386306,16842754,18022401,26869763,27131905,27787265]} \ No newline at end of file +{"zero":[8388610,9371649,9895938,9961473,12386306,16842754,18087937,26935299,27197441,27852801]} \ No newline at end of file diff --git a/docs/API/fti/FTI_97.json b/docs/API/fti/FTI_97.json index 68823c4f..91bf1992 100644 --- a/docs/API/fti/FTI_97.json +++ b/docs/API/fti/FTI_97.json @@ -1 +1 @@ -{"assembly":[1,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465],"add":[65539,524289,983041,2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,7995398,8060933,8126469,12058628,14483459,21495810,21561346,22609922,22675458,29556739,30015489,30343169,31457282,31522818,31588354,31653890,31719426,31784962,31850498,32243714,32309250,33292292],"adds":[65539,131076,327682,524290,589828,983041,1048577,1114113,1507329,1638401,2359297,2424836,2555905,2621444,2686977,2752513,2818052,3276801,3342340,7995393,8060929,8126465,9043969,9109505,9175041,9240577,11206657,11272193,12058625,12124161,12582913,12648449,12713985,12779521,13434881,14483457,14745601,21102593,29556739,29622276,29818882,30015490,30081028,30343169,30408705,30474241,30801921,30932993,31457281,31522820,31588353,31653892,31719425,31784961,31850500,32243713,32309252,32702465,33030145,33292291,33619971,34078722,34275332,45481985,47513601],"array":[65538,262148,524290,589825,2031620,2228225,3080194,3145730,8388619,10027009,10223619,10289158,12386315,12517377,12713986,14483457,16777218,16842761,16973826,18022408,23658497,24248321,24510467,24772609,25886723,29556738,29753348,30015490,30081025,31195140,31391745,32047106,32112642,33816580,34275329,34537473,34603009],"associated":[65538,196609,1572865,2883586,2949122,3080194,3145730,8716290,8781826,10354689,15794177,23461889,24379393,25100289,29556738,29687809,30867457,31916033,31981569,32047105,32112641,33488898,42401794,44302337,44367873,44433409,44498945],"anchor":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801092,3866628,3932164,3997700,4063236,4128772,4194308,4259844,4325380,4390916,4456452,4521988,4587524,4653060,4718596,4784132,4849668,4915204,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160388,6225924,6291460,6356996,6422532,6488068,6553604,6619140,6684676,6750212,6815748,6881284,6946820,7012356,7077892,7143428,7208964,7274500,7340036,7405569,7471105,7536644,7602180,7667716,7733252,7798788,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781828,8847364,8912900,8978436,9043973,9109509,9175045,9240580,9306116,9371652,9437188,9502724,9568260,9633796,9699333,9764869,9830405,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420228,10485764,10551301,10616836,10682372,10747910,10813444,10878980,10944518,11010052,11075588,11141125,11206661,11272197,11337732,11403268,11468804,11534340,11599877,11665413,11730948,11796484,11862020,11927556,11993092,12058628,12124164,12189700,12255236,12320772,12386308,12451844,12517380,12582916,12648452,12713988,12779524,12845060,12910596,12976132,13041668,13107204,13172740,13238276,13303812,13369348,13434884,13500420,13565956,13631492,13697028,13762564,13828100,13893636,13959172,14024708,14090244,14155780,14221316,14286852,14352388,14417924,14483460,14548996,14614532,14680068,14745605,14811140,14876676,14942212,15007749,15073284,15138821,15204357,15269893,15335429,15400965,15466501,15532037,15597572,15663108,15728644,15794180,15859716,15925252,15990788,16056324,16121860,16187396,16252932,16318468,16384004,16449540,16515076,16580612,16646149,16711684,16777220,16842756,16908292,16973828,17039364,17104901,17170437,17235972,17301508,17367044,17432580,17498116,17563652,17629188,17694724,17760260,17825796,17891333,17956868,18022404,18087940,18153476,18219012,18284548,18350084,18415620,18481156,18546692,18612228,18677764,18743300,18808836,18874372,18939908,19005444,19070980,19136516,19202052,19267588,19333124,19398660,19464196,19529732,19595268,19660804,19726340,19791876,19857412,19922948,19988484,20054020,20119556,20185092,20250628,20316164,20381700,20447236,20512772,20578308,20643844,20709380,20774917,20840452,20905988,20971524,21037060,21102597,21168132,21233668,21299204,21364740,21430276,21495813,21561349,21626885,21692420,21757956,21823492,21889028,21954564,22020100,22085636,22151172,22216708,22282244,22347780,22413316,22478852,22544388,22609925,22675461,22740996,22806532,22872068,22937604,23003140,23068676,23134212,23199748,23265284,23330820,23396356,23461892,23527428,23592965,23658500,23724036,23789572,23855108,23920644,23986180,24051716,24117252,24182788,24248324,24313860,24379396,24444933,24510468,24576004,24641540,24707076,24772612,24838148,24903684,24969220,25034756,25100292,25165829,25231364,25296901,25362436,25427972,25493509,25559044,25624581,25690116,25755652,25821189,25886724,25952261,26017796,26083332,26148868,26214404,26279940,26345476,26411012,26476548,26542084,26607620,26673156,26738692,26804228,26869764,26935300,27000836,27066372,27131908,27197444,27262980,27328516,27394052,27459588,27525124,27590660,27656196,27721732,27787268,27852804,27918340,27983876,28049413,28114949,28180484,28246020,28311556,28377092,28442628,28508164,28573700,28639236,28704772,28770308,28835844,28901380,28966916,29032452,29097988,29163524,29229060,29294596,29360132,29425668,29491204,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896772,36962308,37027844,37093380,37158916,37224452,37289988,37355524,37421060,37486596,37552132,37617668,37683204,37748740,37814276,37879812,37945348,38010884,38076420,38141956,38207492,38273028,38338564,38404100,38469636,38535172,38600708,38666244,38731780,38797316,38862852,38928388,38993924,39059460,39124996,39190532,39256068,39321604,39387140,39452676,39518212,39583748,39649284,39714820,39780356,39845892,39911428,39976964,40042500,40108036,40173572,40239108,40304644,40370180,40435716,40501252,40566788,40632324,40697860,40763396,40828932,40894468,40960004,41025540,41091076,41156612,41222148,41287684,41353220,41418756,41484292,41549828,41615364,41680900,41746436,41811972,41877508,41943044,42008580,42074116,42139652,42205188,42270724,42336260,42401796,42467332,42532868,42598404,42663940,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892164,44957700,45023236,45088772,45154308,45219844,45285380,45350916,45416452,45481988,45547524,45613060,45678596,45744132,45809668,45875206,45940740,46006276,46071812,46137348,46202884,46268420,46333958,46399493,46465030,46530564,46596100,46661637,46727172,46792708,46858244,46923780,46989316,47054852,47120388,47185924,47251460,47316999,47382535,47448068,47513607,47579143,47644676,47710212,47775750,47841284,47906822,47972358,48037895,48103428,48168966,48234500,48300036,48365572,48431111,48496647,48562180,48627716,48693252,48758788,48824324,48889860,48955396,49020932,49086468],"addhandler":[131075,327682,1048577,1114113,1245185,1376257,1441793,1507329,1638401,2359297,2424835,2555905,2621443,2686977,2752513,2818051,3276801,3342339,9043972,9109508,9175044,11206660,11272196,14745603,15138819,15269891,15400963,21102595,29622275,29818882,30408705,30474241,30605313,30670849,30736385,30801921,30932993,31457281,31522819,31588353,31653891,31719425,31784961,31850499,32243713,32309251,33619972,34078723],"addrange":[131073,524289,589828,2424833,2621441,2818049,3342337,9240579,12124163,12582916,12648452,12713988,12779524,29622273,30015489,30081028,31522817,31653889,31850497,32309249,34275333],"arguments":[131073,327683,2424833,2621441,2818049,3342337,9568257,11337730,11403266,11468802,16056321,16121857,17367041,17432577,17498113,17563649,29622273,29818883,31522817,31653889,31850497,32309249,34144258],"added":[131074,327681,720898,851969,2424834,2621442,2818050,3342338,3801090,4063233,4259842,4980738,5046273,5111810,5373954,5505026,5701634,6094850,9371649,9961473,12779521,37879809,43188225],"attach":[131073,327681,1048577,1114113,1245185,1310721,1376257,1441793,1507329,1638401,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,14614529,14811137,15138817,15269889,15400961,15597569,15925249,30408705,30474241,30605313,30670849,30736385,30801921,30932993,32833540,45875201,45940737,46333953,46465025],"application":[196609,10354689,29687809],"advances":[196609,10420225,29687809],"aslist":[589825,12845059,30081025],"asreadonlycollection":[589825,12910595,30081025],"adapter":[589825,12910593,30081025],"asreadonlylist":[589825,12976131,30081025],"according":[589826,13041665,13107201,30081026],"attachtoevent":[1048577,1114113,1507329,1638401,14614531,14811139,15597571,15925251,30408705,30474241,30801921,30932993],"args":[1703937,11337731,11468803,32833538,38010881,43319297,46530561,46596097],"acquire":[1835009,16187395,31064065],"acquires":[1835012,3670017,16187393,16252929,16318465,16384001,27852801,31064068,32505857],"acquireasync":[1835009,16252931,31064065],"asynchronous":[1835009,3735553,16252929,29032449,31064065,32571393],"attempts":[2031618,2228226,16908289,16973825,18153473,31195138,31391745,34603010,41091073,43646977],"affectscalculatedfields":[2162689,39321603,43581441],"attribute":[2162690,2293761,18219009,33030146,40304641,40435713,43581442,47251457,47448067,47644673,47710209],"apply":[2162689,2293761,18219009,33030145,40894465,43581441,47251457],"affect":[2293761,18219009,33030145,47251457],"automatically":[2293761,2883585,2949121,3735560,18219009,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,32571400,33030145,36503556,36569090,36634626,42270721,44302337,44367873,47251457],"appropriate":[2293761,18219009,33030145,47251457],"acceptchanges":[2359300,2424834,2555908,2621444,2883586,2949122,7012355,18350084,18612225,18874372,18939905,19202052,19595265,19857412,20119553,23068675,23855107,31457282,31522818,31588354,31653890,31916033,31981569,33030146,41353217,41418754,41549825,41680897,41746434,41811969,41877506,42205186,43778050,43974658,44040194,44302337,44367873,47316993,48627714],"abstractmodelbase":[2359321,2555929,2686991,2752517,3276825,4521986,4587522,5308418,5439490,5570565,5636099,6029314,6160385,20185091,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037060,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,31457301,31588373,31719435,31784963,32243733,33095682,35061763,35127299,35192835,41943042,42008578,43778050,43974658,44105732,44171267,44564482,46858241,47316996,47513604,47775752,47841284,48431108],"auto":[2424835,2621443,2686977,2818051,18677761,18743297,18808833,19660801,19726337,19791873,20185089,21757953,21823489,21889025,34865155,34996227,35258371],"abstractmodelcollection":[2424851,2621459,2818054,3342355,4653058,5373953,5505025,5701635,6094849,6160385,21757956,21823492,21889028,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,31522832,31653904,31850499,32309264,33095681,35258374,35323907,35389443,35454979,42074114,42139650,43843586,44040194,44236803,44630018,46858241,47382531,47579139,47906821,48496643],"addnew":[2555905,2621441,19464193,20054017,31588353,31653889],"access":[2883585,2949121,42270721,44302337,44367873],"available":[2949121,8388609,23920641,31981569],"acquirestringbuilder":[3670017,27852803,32505857],"astask":[3735554,28246020,28311556,32571394],"allows":[3735554,28246017,28311553,32571394,32833539,33030146,46071809,46202881,46268417,48562177,48758785],"autocancelingtask":[3735556,28377092,28442628,28508164,28573700,32571396,36503557],"autocancelingtoken":[3735554,28639236,28704772,32571394,36569091],"autocompletingtask":[3735554,28770308,28835844,32571394,36634627],"action":[3735554,15728643,17498115,17563651,23592961,24444929,25821185,25952257,29032455,29097985,32571394,33030145,48693249],"actual":[4390913,4521985,4653057],"applies":[6160385,46858241],"accepted":[7012353,7077889,7143425,48627715],"acceptlocalchanges":[7077891,48627713],"appearing":[7208961,7274497,48955394],"argumentnullexception":[7602177,7667713,7733249,7864321,7929857,7995393,8388609,8519681,9043969,10027009,10092545,12058625,12124161,12386305,12517377,13041665,13107201,13369345,13565953,13631489,13697025,13762561,14548993,14745601,15007745,15728641,15859713,16056321,16121857,17891329,18022401,20250625,20316161,20381697,20447233,20512769,20709377,20774913,20840449,20905985,21102593,21626881,22020097,22151169,22347777,22413313,22478849,22740993,22806529,22872065,23134209,23461889,23592961,24313857,24379393,24444929,24576001,24641537,24707073,24838145,24903681,25165825,25296897,25493505,25624577,25690113,25755649,25952257,26017793,27066369,27131905,27721729,27787265,28049409,28114945,29032449,29097985,29163521,29229057,29360129,29491201],"argumentoutofrangeexception":[7798785,7929857,8388609,9895937,10092545,12386305,13041665,13107201,18022401,27131905,27197441,27328513,27459585,27525121,27590657,27656193,27787265,28639233,28704769,28770305,28901377,28966913,37486593,41091073],"argumentexception":[7995393,8060929,8388609,10027009,12124161,12386305,14483457,17629185,17694721,17760257,17825793,17956865,18153473,18219009,20250625,20316161,20381697,20447233,20512769,20709377,20774913,20840449,20905985,22020097,22151169,22347777,22413313,22478849,22740993,22806529,22872065,23134209,23330817,23461889,23592961,24313857,24379393,24444929,24641537,24707073,24838145,24903681,25624578,25690113,25755649,25952257,26017793,27721729,27787265,29097985,41091073],"arrayindex":[8388613,10289155,12386309,16842755,18022404],"additional":[9371649,9895937,9961473],"advanced":[10420225],"algorithms":[10682369,11796481,11993089,26148865],"appears":[12517377],"appended":[13172737],"accounts":[13238273,13303809],"api":[13238273,13303809],"acquired":[16318465,16384001,28180482],"abort":[16318465,16384001],"applicable":[17104897,17170433],"actually":[17235969,17301505,20774913,20905985,23592961,24444929,25821185],"advisable":[17235969,17301505],"accepts":[18677761,18743297,18808833,19660801,19726337,19791873,20185089,21757953],"attached":[20709377,20840449,22740993,22806529,25690113,25755649],"arrary":[24248321,24510465,24772609,25886721],"absolute":[27000833],"allowduplicates":[27131908],"argument":[28901377,28966913],"actions":[29032449,29097991],"avoid":[29163521],"affected":[32702465,45678593],"ability":[32702465,45481985],"attaching":[32833539,46071809,46202881,46268417],"abstract":[33095681,45940737,47775745,47841282,47906817,48234497],"accurate":[37814273],"attributes":[38141953],"agnostic":[40370177],"arrays":[40763393],"appear":[41091073]} \ No newline at end of file +{"assembly":[1,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145],"add":[65539,524289,983041,2359298,2424834,2555906,2621442,2686978,2752514,2818050,3276802,3342338,7995398,8060933,8126469,12058628,14483459,21561346,21626882,22675458,22740994,29622275,30081025,30408705,31522818,31588354,31653890,31719426,31784962,31850498,31916034,32309250,32374786,33357828],"adds":[65539,131076,327682,524290,589828,983041,1048577,1114113,1507329,1638401,2359297,2424836,2555905,2621444,2686977,2752513,2818052,3276801,3342340,7995393,8060929,8126465,9043969,9109505,9175041,9240577,11206657,11272193,12058625,12124161,12582913,12648449,12713985,12779521,13434881,14483457,14745601,21168129,29622275,29687812,29884418,30081026,30146564,30408705,30474241,30539777,30867457,30998529,31522817,31588356,31653889,31719428,31784961,31850497,31916036,32309249,32374788,32768001,33095681,33357827,33685507,34144258,34340868,45809665,47841281],"array":[65538,262148,524290,589825,2031620,2228225,2883585,3080193,3145730,8388619,10027009,10223619,10289158,12386315,12517377,12713986,14483457,16777218,16842761,16973826,18087944,23724035,24576003,24838145,25952259,29622274,29818884,30081026,30146561,31260676,31457281,31981569,32112641,32178178,33882116,34340865,34603009,34668545],"associated":[65538,196609,1572865,2883586,2949122,3080194,3145730,8716290,8781826,10354689,15794177,23527425,24444929,25165825,29622274,29753345,30932993,31981569,32047105,32112641,32178177,33554434,42729474,44630017,44695553,44761089,44826625],"anchor":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801092,3866628,3932164,3997700,4063236,4128772,4194308,4259844,4325380,4390916,4456452,4521988,4587524,4653060,4718596,4784132,4849668,4915204,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160388,6225924,6291460,6356996,6422532,6488068,6553604,6619140,6684676,6750212,6815748,6881284,6946820,7012356,7077892,7143428,7208964,7274500,7340036,7405569,7471105,7536644,7602180,7667716,7733252,7798788,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781828,8847364,8912900,8978436,9043973,9109509,9175045,9240580,9306116,9371652,9437188,9502724,9568260,9633796,9699333,9764869,9830405,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420228,10485764,10551301,10616836,10682372,10747910,10813444,10878980,10944518,11010052,11075588,11141125,11206661,11272197,11337732,11403268,11468804,11534340,11599877,11665413,11730948,11796484,11862020,11927556,11993092,12058628,12124164,12189700,12255236,12320772,12386308,12451844,12517380,12582916,12648452,12713988,12779524,12845060,12910596,12976132,13041668,13107204,13172740,13238276,13303812,13369348,13434884,13500420,13565956,13631492,13697028,13762564,13828100,13893636,13959172,14024708,14090244,14155780,14221316,14286852,14352388,14417924,14483460,14548996,14614532,14680068,14745605,14811140,14876676,14942212,15007749,15073284,15138821,15204357,15269893,15335429,15400965,15466501,15532037,15597572,15663108,15728644,15794180,15859716,15925252,15990788,16056324,16121860,16187396,16252932,16318468,16384004,16449540,16515076,16580612,16646149,16711684,16777220,16842756,16908292,16973828,17039364,17104901,17170437,17235973,17301508,17367044,17432580,17498116,17563652,17629188,17694724,17760260,17825796,17891332,17956869,18022404,18087940,18153476,18219012,18284548,18350084,18415620,18481156,18546692,18612228,18677764,18743300,18808836,18874372,18939908,19005444,19070980,19136516,19202052,19267588,19333124,19398660,19464196,19529732,19595268,19660804,19726340,19791876,19857412,19922948,19988484,20054020,20119556,20185092,20250628,20316164,20381700,20447236,20512772,20578308,20643844,20709380,20774916,20840453,20905988,20971524,21037060,21102596,21168133,21233668,21299204,21364740,21430276,21495812,21561349,21626885,21692421,21757956,21823492,21889028,21954564,22020100,22085636,22151172,22216708,22282244,22347780,22413316,22478852,22544388,22609924,22675461,22740997,22806532,22872068,22937604,23003140,23068676,23134212,23199748,23265284,23330820,23396356,23461892,23527428,23592964,23658501,23724036,23789572,23855108,23920644,23986180,24051716,24117252,24182788,24248324,24313860,24379396,24444932,24510469,24576004,24641540,24707076,24772612,24838148,24903684,24969220,25034756,25100292,25165828,25231365,25296900,25362437,25427972,25493508,25559045,25624580,25690117,25755652,25821188,25886725,25952260,26017797,26083332,26148868,26214404,26279940,26345476,26411012,26476548,26542084,26607620,26673156,26738692,26804228,26869764,26935300,27000836,27066372,27131908,27197444,27262980,27328516,27394052,27459588,27525124,27590660,27656196,27721732,27787268,27852804,27918340,27983876,28049412,28114949,28180485,28246020,28311556,28377092,28442628,28508164,28573700,28639236,28704772,28770308,28835844,28901380,28966916,29032452,29097988,29163524,29229060,29294596,29360132,29425668,29491204,29556740,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962308,37027844,37093380,37158916,37224452,37289988,37355524,37421060,37486596,37552132,37617668,37683204,37748740,37814276,37879812,37945348,38010884,38076420,38141956,38207492,38273028,38338564,38404100,38469636,38535172,38600708,38666244,38731780,38797316,38862852,38928388,38993924,39059460,39124996,39190532,39256068,39321604,39387140,39452676,39518212,39583748,39649284,39714820,39780356,39845892,39911428,39976964,40042500,40108036,40173572,40239108,40304644,40370180,40435716,40501252,40566788,40632324,40697860,40763396,40828932,40894468,40960004,41025540,41091076,41156612,41222148,41287684,41353220,41418756,41484292,41549828,41615364,41680900,41746436,41811972,41877508,41943044,42008580,42074116,42139652,42205188,42270724,42336260,42401796,42467332,42532868,42598404,42663940,42729476,42795012,42860548,42926084,42991620,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219844,45285380,45350916,45416452,45481988,45547524,45613060,45678596,45744132,45809668,45875204,45940740,46006276,46071812,46137348,46202886,46268420,46333956,46399492,46465028,46530564,46596100,46661638,46727173,46792710,46858244,46923780,46989317,47054852,47120388,47185924,47251460,47316996,47382532,47448068,47513604,47579140,47644679,47710215,47775748,47841287,47906823,47972356,48037892,48103430,48168964,48234502,48300038,48365575,48431108,48496646,48562180,48627716,48693252,48758791,48824327,48889860,48955396,49020932,49086468,49152004,49217540,49283076,49348612,49414148],"addhandler":[131075,327682,1048577,1114113,1245185,1376257,1441793,1507329,1638401,2359297,2424835,2555905,2621443,2686977,2752513,2818051,3276801,3342339,9043972,9109508,9175044,11206660,11272196,14745603,15138819,15269891,15400963,21168131,29687811,29884418,30474241,30539777,30670849,30736385,30801921,30867457,30998529,31522817,31588355,31653889,31719427,31784961,31850497,31916035,32309249,32374787,33685508,34144259],"addrange":[131073,524289,589828,2424833,2621441,2818049,3342337,9240579,12124163,12582916,12648452,12713988,12779524,29687809,30081025,30146564,31588353,31719425,31916033,32374785,34340869],"arguments":[131073,327683,2424833,2621441,2818049,3342337,9568257,11337730,11403266,11468802,16056321,16121857,17432577,17498113,17563649,17629185,29687809,29884419,31588353,31719425,31916033,32374785,34209794],"added":[131074,327681,720898,851969,2424834,2621442,2818050,3342338,3801090,4063233,4259842,4980738,5046273,5111810,5373954,5505026,5701634,6094850,9371649,9961473,12779521,37945345,43515905],"attach":[131073,327681,1048577,1114113,1245185,1310721,1376257,1441793,1507329,1638401,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,14614529,14811137,15138817,15269889,15400961,15597569,15925249,30474241,30539777,30670849,30736385,30801921,30867457,30998529,32899076,46202881,46268417,46661633,46792705],"application":[196609,10354689,29753345],"advances":[196609,10420225,29753345],"aslist":[589825,12845059,30146561],"asreadonlycollection":[589825,12910595,30146561],"adapter":[589825,12910593,30146561],"asreadonlylist":[589825,12976131,30146561],"according":[589826,13041665,13107201,30146562],"attachtoevent":[1048577,1114113,1507329,1638401,14614531,14811139,15597571,15925251,30474241,30539777,30867457,30998529],"args":[1703937,11337731,11468803,32899074,38076417,43646977,46858241,46923777],"acquire":[1835009,16187395,31129601],"acquires":[1835012,3670017,16187393,16252929,16318465,16384001,27918337,31129604,32571393],"acquireasync":[1835009,16252931,31129601],"asynchronous":[1835009,3735553,16252929,29097985,31129601,32636929],"attempts":[2031618,2228226,16908289,16973825,18219009,31260674,31457281,34668546,41418753,43974657],"affectscalculatedfields":[2162689,39518211,43909121],"attributes":[2162690,38207489,39583748,43909122],"apply":[2162690,2293761,18284545,33095681,39583745,41222145,43909122,47579137],"attribute":[2162690,2293761,18284545,33095682,39583746,40566785,40697857,43909122,47579137,47775747,47972353,48037889],"affect":[2293761,18284545,33095681,47579137],"automatically":[2293761,2883585,2949121,3735560,18284545,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,32636936,33095681,36569092,36634626,36700162,42598401,44630017,44695553,47579137],"appropriate":[2293761,18284545,33095681,47579137],"acceptchanges":[2359300,2424834,2555908,2621444,2883586,2949122,7012355,18415620,18677761,18939908,19005441,19267588,19660801,19922948,20185089,23134211,23920643,31522818,31588354,31653890,31719426,31981569,32047105,33095682,41680897,41746434,41877505,42008577,42074114,42139649,42205186,42532866,44105730,44302338,44367874,44630017,44695553,47644673,48955394],"abstractmodelbase":[2359321,2555929,2686991,2752517,3276825,4521986,4587522,5308418,5439490,5570565,5636099,6029314,6160385,20250627,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102596,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,31522837,31653909,31784971,31850499,32309269,33161218,35127299,35192835,35258371,42270722,42336258,44105730,44302338,44433412,44498947,44892162,47185921,47644676,47841284,48103432,48168964,48758788],"auto":[2424835,2621443,2686977,2818051,18743297,18808833,18874369,19726337,19791873,19857409,20250625,21823489,21889025,21954561,34930691,35061763,35323907],"abstractmodelcollection":[2424851,2621459,2818054,3342355,4653058,5373953,5505025,5701635,6094849,6160385,21823492,21889028,21954564,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,31588368,31719440,31916035,32374800,33161217,35323910,35389443,35454979,35520515,42401794,42467330,44171266,44367874,44564483,44957698,47185921,47710211,47906819,48234501,48824323],"addnew":[2555905,2621441,19529729,20119553,31653889,31719425],"access":[2883585,2949121,42598401,44630017,44695553],"available":[2949121,8388609,23986177,32047105],"acquirestringbuilder":[3670017,27918339,32571393],"astask":[3735554,28311556,28377092,32636930],"allows":[3735554,28311553,28377089,32636930,32899075,33095682,46399489,46530561,46596097,48889857,49086465],"autocancelingtask":[3735556,28442628,28508164,28573700,28639236,32636932,36569093],"autocancelingtoken":[3735554,28704772,28770308,32636930,36634627],"autocompletingtask":[3735554,28835844,28901380,32636930,36700163],"action":[3735554,15728643,17563651,17629187,23658497,24510465,25886721,26017793,29097991,29163521,32636930,33095681,49020929],"actual":[4390913,4521985,4653057],"applies":[6160385,47185921],"accepted":[7012353,7077889,7143425,48955395],"acceptlocalchanges":[7077891,48955393],"appearing":[7208961,7274497,49283074],"argumentnullexception":[7602177,7667713,7733249,7864321,7929857,7995393,8388609,8519681,9043969,10027009,10092545,12058625,12124161,12386305,12517377,13041665,13107201,13369345,13565953,13631489,13697025,13762561,14548993,14745601,15007745,15728641,15859713,16056321,16121857,17956865,18087937,20316161,20381697,20447233,20512769,20578305,20774913,20840449,20905985,20971521,21168129,21692417,22085633,22216705,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23527425,23658497,24379393,24444929,24510465,24641537,24707073,24772609,24903681,24969217,25231361,25362433,25559041,25690113,25755649,25821185,26017793,26083329,27131905,27197441,27787265,27852801,28114945,28180481,29097985,29163521,29229057,29294593,29425665,29556737],"argumentoutofrangeexception":[7798785,7929857,8388609,9895937,10092545,12386305,13041665,13107201,18087937,27197441,27262977,27394049,27525121,27590657,27656193,27721729,27852801,28704769,28770305,28835841,28966913,29032449,37552129,41418753],"argumentexception":[7995393,8060929,8388609,10027009,12124161,12386305,14483457,17694721,17760257,17825793,17891329,18022401,18219009,18284545,20316161,20381697,20447233,20512769,20578305,20774913,20840449,20905985,20971521,22085633,22216705,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23527425,23658497,24379393,24444929,24510465,24707073,24772609,24903681,24969217,25690114,25755649,25821185,26017793,26083329,27787265,27852801,29163521,41418753],"arrayindex":[8388613,10289155,12386309,16842755,18087940],"additional":[9371649,9895937,9961473],"advanced":[10420225],"algorithms":[10682369,11796481,11993089,26214401],"appears":[12517377],"appended":[13172737],"accounts":[13238273,13303809],"api":[13238273,13303809],"acquired":[16318465,16384001,28246018],"abort":[16318465,16384001],"applicable":[17170433,17235969],"actually":[17301505,17367041,20840449,20971521,23658497,24510465,25886721],"advisable":[17301505,17367041],"accepts":[18743297,18808833,18874369,19726337,19791873,19857409,20250625,21823489],"attached":[20774913,20905985,22806529,22872065,25755649,25821185],"arrary":[23724033,24576001,24838145,25952257],"absolute":[27066369],"allowduplicates":[27197444],"argument":[28966913,29032449],"actions":[29097985,29163527],"avoid":[29229057],"affected":[32768001,46006273],"ability":[32768001,45809665],"attaching":[32899075,46399489,46530561,46596097],"abstract":[33161217,46268417,48103425,48168962,48234497,48562177],"accurate":[37879809],"agnostic":[40632321],"arrays":[41025537],"appear":[41418753]} \ No newline at end of file diff --git a/docs/API/fti/FTI_98.json b/docs/API/fti/FTI_98.json index 57b23825..e9be52ae 100644 --- a/docs/API/fti/FTI_98.json +++ b/docs/API/fti/FTI_98.json @@ -1 +1 @@ -{"base":[131073,2424833,2621441,2818049,3342337,3997697,4980737,5373953,5505025,5701633,6094849,33095683,47775745,47841281,47906817],"batchaslists":[589825,13041667,30081025],"batches":[589826,13041665,13107201,30081026],"batch":[589826,13041666,13107202,30081026],"batchassegments":[589825,13107203,30081025],"blocking":[1835009,16187393,31064065],"bag":[2359297,2424836,2555905,2621444,2686978,2818052,2883585,2949121,3276802,3342340,6160386,18677761,18743297,18808833,19660801,19726337,19791873,20185089,21757953,21823489,21889025,23003137,23789569,24510465,25886721,26214401,26279937,26345473,26411009,33030146,33095682,34865155,34996227,35258371,35913731,41943041,42139650,43778049,43843585,43974657,44040193,44105729,44236801,44564481,44630017,46858241,47972353,48037889,48431105,48496641],"beginedit":[2555907,2621443,2949121,19267587,19333121,19464193,19922947,19988481,20054017,23920644,23986177,24051713,31588355,31653891,31981569],"begins":[2555905,2621441,8388609,12386305,16842753,18022401,19267585,19922945,31588353,31653889],"basic":[2883585,8388609,10420226,11730946,11927554,17891330,23003137,33095681,47972353],"backing":[3145729,24576001,33095681,48234497],"boolean":[3538946,3604481,8257537,8323073,8519681,8585217,8650753,8716289,8781825,10158081,10420225,10485761,10551298,10747905,10944513,11730945,11927553,12320769,12517377,14286849,16646145,16711681,16777217,17891329,17956865,18153473,20709377,20774913,20840449,20905985,20971521,21692417,22740993,22806529,22872065,22937601,23068674,23396353,23461889,23527426,23592961,23855106,24117250,24379393,24444929,25100289,25624577,25690113,25755649,25821185,25952257,26017793,26083329,26738691,26804227,27131907,27918337,27983873,29229057,32440321,35979266,36110337,37945345,38404097,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40108033,40173569,40239105,40304641,40370177,41353217,41418753,41484289,41549825,41680897,41746433,41811969,41877505,42008577,42074113,42205185,42336257],"builder":[3670019,27852801,28180484,32505858,42663937,44826625],"bypassproperties":[6160387,46858241],"bypass":[6160385,46858241],"behavior":[6291457,7340033,46858241,48955393],"bags":[6684673,40763393,48300033],"bool":[8257537,8323073,8519681,8585217,8650753,8716289,8781825,10158081,10420225,10485761,10551297,10747905,10944513,11730945,11927553,12320769,12517377,14286849,16646145,16711681,16777217,17891329,17956865,18153473,20709377,20774913,20840449,20905985,20971521,21692417,22740993,22806529,22872065,22937601,23068673,23396353,23461889,23527425,23592961,23855105,24117249,24379393,24444929,25100289,25624577,25690113,25755649,25821185,25952257,26017793,26083329,26738689,26804225,27131905,27918337,27983873,29229057,37945345,38404097,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40108033,40173569,40239105,40304641,40370177,41353217,41418753,41484289,41549825,41680897,41746433,41811969,41877505,42008577,42074113,42205185,42336257],"based":[8388610,9371649,9895937,9961473,12386306,16842754,18022401,26083329,26148865,42663937],"byref":[8716289,8781825,18153473,23592961,24444929,25821185],"batchsize":[13041668,13107204],"bug":[13238273,13303809],"basis":[27852801],"button":[33030145,47579137],"behaviors":[33095681,48300033],"byte":[40566786],"blob":[40566785],"brackets":[41091073]} \ No newline at end of file +{"base":[131073,2424833,2621441,2818049,3342337,3997697,4980737,5373953,5505025,5701633,6094849,33161219,48103425,48168961,48234497],"batchaslists":[589825,13041667,30146561],"batches":[589826,13041665,13107201,30146562],"batch":[589826,13041666,13107202,30146562],"batchassegments":[589825,13107203,30146561],"blocking":[1835009,16187393,31129601],"bag":[2359297,2424836,2555905,2621444,2686978,2818052,2883585,2949121,3276802,3342340,6160386,18743297,18808833,18874369,19726337,19791873,19857409,20250625,21823489,21889025,21954561,23068673,23724033,23855105,24576001,25952257,26279937,26345473,26411009,26476545,33095682,33161218,34930691,35061763,35323907,35979267,42270721,42467330,44105729,44171265,44302337,44367873,44433409,44564481,44892161,44957697,47185921,48300033,48365569,48758785,48824321],"beginedit":[2555907,2621443,2949121,19333123,19398657,19529729,19988483,20054017,20119553,23986180,24051713,24117249,31653891,31719427,32047105],"begins":[2555905,2621441,8388609,12386305,16842753,18087937,19333121,19988481,31653889,31719425],"basic":[2883585,8388609,10420226,11730946,11927554,17956866,23068673,33161217,48300033],"backing":[3145729,24641537,33161217,48562177],"boolean":[3538946,3604481,8257537,8323073,8519681,8585217,8650753,8716289,8781825,10158081,10420225,10485761,10551298,10747905,10944513,11730945,11927553,12320769,12517377,14286849,16646145,16711681,16777217,17956865,18022401,18219009,20774913,20840449,20905985,20971521,21037057,21757953,22806529,22872065,22937601,23003137,23134210,23461889,23527425,23592962,23658497,23920642,24182786,24444929,24510465,25165825,25690113,25755649,25821185,25886721,26017793,26083329,26148865,26804227,26869763,27197443,27983873,28049409,29294593,32505857,36044802,36175873,38010881,38469633,39321601,39387137,39518209,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40370177,40435713,40501249,40566785,40632321,41680897,41746433,41811969,41877505,42008577,42074113,42139649,42205185,42336257,42401793,42532865,42663937],"builder":[3670019,27918337,28246020,32571394,42991617,45154305],"bypassproperties":[6160387,47185921],"bypass":[6160385,47185921],"behavior":[6291457,7340033,47185921,49283073],"bags":[6684673,41025537,48627713],"bool":[8257537,8323073,8519681,8585217,8650753,8716289,8781825,10158081,10420225,10485761,10551297,10747905,10944513,11730945,11927553,12320769,12517377,14286849,16646145,16711681,16777217,17956865,18022401,18219009,20774913,20840449,20905985,20971521,21037057,21757953,22806529,22872065,22937601,23003137,23134209,23461889,23527425,23592961,23658497,23920641,24182785,24444929,24510465,25165825,25690113,25755649,25821185,25886721,26017793,26083329,26148865,26804225,26869761,27197441,27983873,28049409,29294593,38010881,38469633,39321601,39387137,39518209,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40370177,40435713,40501249,40566785,40632321,41680897,41746433,41811969,41877505,42008577,42074113,42139649,42205185,42336257,42401793,42532865,42663937],"based":[8388610,9371649,9895937,9961473,12386306,16842754,18087937,26148865,26214401,42991617],"byref":[8716289,8781825,18219009,23658497,24510465,25886721],"batchsize":[13041668,13107204],"bug":[13238273,13303809],"basis":[27918337],"button":[33095681,47906817],"behaviors":[33161217,48627713],"byte":[40828930],"blob":[40828929],"brackets":[41418753]} \ No newline at end of file diff --git a/docs/API/fti/FTI_99.json b/docs/API/fti/FTI_99.json index 856bd4e0..10d84e58 100644 --- a/docs/API/fti/FTI_99.json +++ b/docs/API/fti/FTI_99.json @@ -1 +1 @@ -{"constructors":[65537,131073,262145,327681,458753,851969,983041,1048577,1507329,1572865,1638401,1703937,1900545,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3604481,38207491,43384833],"class":[65544,131077,327683,393217,458754,524289,589825,851969,983043,1048577,1114113,1507329,1572866,1638401,1703937,1769473,1835009,1900548,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424834,2490371,2555906,2621442,2686977,2752514,2818050,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342338,3407874,3473411,3538949,3604483,3670017,3735553,3801089,3866625,3932161,3997698,4063233,4128769,4194305,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980738,5046273,5308417,5373954,5439489,5505026,5570561,5636097,5701634,5767169,5832705,5898241,5963777,6029313,6094850,6422529,6946817,7405569,7471105,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847362,8912898,8978434,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,11141123,11206657,11272193,11337729,11403265,11468801,11534338,11599873,11665409,11730945,11796481,11862018,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13959169,14352386,14417922,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15532033,15597569,15663105,15728642,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005442,19070978,19136514,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037058,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476547,26542083,26607618,26673154,26738690,26804226,26869761,26935298,27000834,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29818882,29884417,29949953,30015489,30081025,30343169,30408705,30474241,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833541,32899074,32964611,33030145,33095684,33226760,33292289,33357825,33423361,33488897,33554436,33619969,33685505,34078721,34144257,34209793,34275329,34340865,34471939,34537473,34603009,34668545,34734081,34799617,34865153,34930691,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979269,36044803,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289986,37683201,37748737,37814273,37879809,38010881,38076417,38141954,38207490,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731778,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598402,42663937,42729473,42795009,42991617,43057153,43122689,43188225,43319297,43384836,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761090,44826625,44892163,44957699,45154307,45219843,45285379,45350915,45416451,45678595,45809667,45875204,45940739,46137345,46333956,46399492,46465028,46530564,46596100,46727171,46792707,46923780,46989316,47054851,47120387,47185923,47251459,47316995,47382531,47448067,47513603,47579139,47644675,47710211,47775748,47841284,47906820,47972355,48037891,48103427,48168963,48234499,48365571,48431107,48496643,48562179,48758787,48824323,48889860,49020931,49086467],"clear":[65537,524289,8192003,12255235,29556737,30015489],"containskey":[65538,8257540,8323076,29556738,33357827],"contains":[65538,131074,262146,524289,2031622,2228226,8257538,8323074,8716289,8781825,8912897,8978433,10158084,12320771,13172737,16646149,16711686,16777222,17891332,17956869,24641537,24707073,24838145,24903681,29556738,29753346,30015489,31195142,31391746,33357826,33554434,34537479,34799619],"copyto":[65537,262146,524289,2031617,2228225,8388611,10223620,10289156,12386307,16842755,18022403,29556737,29753346,30015489,31195137,31391745,33816579],"copies":[65537,262146,524289,2031617,2228225,8388609,10223617,10289153,12386305,16842753,18022401,29556737,29753346,30015489,31195137,31391745,33816578],"collection":[65537,131083,196610,262145,327683,524293,589832,720898,917508,983041,2031617,2228226,2359300,2424849,2555908,2621456,2686979,2752516,2818063,2883587,2949123,3276804,3342353,3801089,3866625,3932161,4128769,4259841,4325377,4390913,4521985,4653057,4980739,5046273,5111810,5177345,5308417,5373956,5439489,5505028,5570561,5636097,5701636,6029313,6094852,8454146,8978436,9240577,9306113,9371650,9437185,9502721,9895939,9961473,10420226,10878984,11534338,12124161,12189697,12255233,12320769,12386305,12517377,12582913,12648449,12713985,12779522,13238273,13303809,13434881,13500417,14090241,14155777,14221313,14483457,17039362,18022401,18087937,18743297,18808837,18874369,18939906,19726337,19791877,19857409,20119554,20840449,21233665,21299201,21364737,21495810,21561346,21889029,22085633,22216705,22282241,22609922,22675458,22806529,23068673,23527426,23855105,24117250,25755649,26279937,26345473,26411013,29556737,29622278,29687809,29818882,30015493,30081032,30277635,30343169,31195137,31391746,31457283,31522825,31588355,31653897,31719426,31784963,31850505,31916035,31981571,32243715,32309257,32636929,32768001,32899073,32964609,33030146,33161217,33554433,33947649,34275332,34406402,34865154,34996226,35192834,35258369,35323906,35913731,37289985,37421057,41484289,42795009,42860545,43843586,44040193,44236801,44630017,44957697,45154305,45350914,45416449,45809665,47185921,47382529,47579137],"comparer":[65538,3211265,6946817,7471105,7733252,7864324,7929860,13565953,13631493,13697029,13762561,32636930,36896773,42729474,45219841,45285377],"count":[65537,262147,524290,589825,2031617,2228225,3604482,9895937,10092549,10551297,11075588,11534337,13500420,13697028,27131914,27787274,29753345,30081025,32440322,33882113,36110337,36438017,36962307,37355525,37814277,39124996,40960003,42729473,42926082,43122690,43515905,43646977],"contained":[65537,131073,327681,1310721,2031617,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,12517377,36962306,39124993,42729473,43515905],"containing":[65538,524289,12451841,30015489,37158914,37224450,42729474],"collections":[65537,131073,196609,262145,327682,393217,458753,524289,917505,2031617,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4980737,5046273,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551299,10616834,10682370,10747908,10813442,10878978,10944516,11010050,11075586,11141126,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,13172737,14024705,16646146,17039361,21168129,21954561,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30277633,31195137,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249,32636930,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34537473,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,42729473,42795009,42860545,42926081,42991617,43057153,43122689,44892162,44957698,45023236,45088770,45154306,45219842,45285378,45350914,47382529,47579137,47906818,48496641],"copied":[131074,8388609,8912897,8978433,12386305,16842753,18743297,18808833,19726337,19791873,21823489,21889025,24510465,25886721,26345473,26411009,33554434],"clearitems":[131073,2424833,2621441,2818049,3342337,3932161,4325377,9306115,9437185,9502721,29622273,31522817,31653889,31850497,32309249],"conditions":[131073,2424833,2621441,2818049,3342337,9633794,29622273,31522817,31653889,31850497,32309249],"changes":[131073,327683,1310721,2359299,2424834,2555909,2621445,2686977,2752513,2818049,2949121,3276801,3342337,3866625,4128769,4194305,4456449,4587521,4980737,5046274,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,6029313,6094849,7012353,7077889,7143425,11534337,18612225,18939905,19333121,19464193,19595265,19988481,20054017,20119553,20774913,23986177,24248321,24510465,24772609,25624577,25886721,29818881,31457281,31522817,31588355,31653891,31981569,33030146,41353217,41680897,41811969,43778049,43974657,44040193,47316993,47513601,48627715],"cast":[131073,589826,2424833,2621441,2818049,3342337,3997697,4980737,5373953,5505025,5701633,6094849,12910593,12976129,13238273,13303809,30081026],"current":[196610,1900545,2883585,2949122,10485761,16580610,23527425,23920641,24117249,31129601,31916033,31981570,37421060,42860546,48693249],"code":[262145,393217,458753,3211265,10682370,11796483,11993091,26148866,29753345,29884417,29949953,32178177,33095683,47775745,47841281,47906817],"conversion":[262146,10813443,10878979,33161218,33947651],"collectionchanged":[327682,4063235,5046273,11337729,20840453,22806533,25755653,29818881,32833539,46071809,46202881,46268417],"called":[327681,524289,2359299,2424833,2555905,2621441,2949123,11534337,12451841,18284545,18546689,18612225,18939905,19595265,20119553,23920641,23986177,24051713,29818881,30015489,31457282,31522817,31588353,31653889,31981571,33030145,47316993],"change":[327681,2883585,2949121,3080193,4390913,4521985,4653057,11534337,23003137,23789569,24182785,26083329,26148865,29818881,32833537,33030146,33095683,46137345,47382529,47579137,47972353,48037889,48168961],"comparison":[458753,589825,3211265,11862017,13762568,26083329,30081025,32178177,34340865,37748738,43057153],"cleanup":[524289,12189699,30015489,37814273],"collectionutilities":[589827,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,30081027,32899073,34275331,34340867,45416452],"casts":[589826,12910593,12976129,30081026],"concat":[589825,13172739,30081025],"concatenates":[589825,13172737,30081025],"componentmodel":[655361,720897,786433,851969,917505,2555907,2621443,4259842,4325378,4390914,5111809,5177345,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,19333121,19464194,19988481,20054018,30146561,30212097,30277633,31588355,31653891,32702465,34406401,37879810,37945346,41418753,41549825,41746433,41877505,42205185,43188225,43253761,45481986,45547522,45613058,45678594,45744130,48562177,48758785],"changedproperties":[786433,2359297,2555905,2883585,2949121,13893635,18415619,19398659,23134211,30212097,31457281,31588353,31916033,31981569],"changed":[786433,917505,2162689,2293763,2359303,2424837,2555910,2621444,2686981,2752513,2818052,2883594,2949130,3080201,3145737,3276805,3342340,4390913,4521985,4653057,4718593,4784129,4849665,4915201,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767172,5832708,5898244,5963780,6029313,6094849,6619137,9568257,13893633,18219010,18284545,18415617,19398657,20250625,20316161,20381697,20447233,20709378,20774914,20840450,20905986,22020097,22151169,22347777,22413313,22740994,22806530,22872065,23396353,23592961,24444929,24641537,24707073,24838145,24903681,25624577,25690114,25755650,25821185,25952257,26017793,30212097,31457285,31522819,31588357,31653891,31719428,31850499,31916038,31981574,32047109,32112645,32243716,32309251,32702465,33030146,35127300,35454979,35520517,35586053,35848197,39387137,41222145,41287681,41418753,41484289,41549825,41746433,41877505,42205185,43581441,43712514,43843585,45613057,47251457,47316993,48300033],"create":[851969,1703937,1769474,11141121,13959169,16056321,16121860,17104897,17170433,23592961,24444929,25821185,30998530],"clearerrors":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14024707,21168131,21954563,30277633,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"clears":[917505,2359298,2424834,2555906,2621442,2686977,2752513,2818049,3276801,3342337,14024705,18350081,18874369,19202049,19857409,21168129,21954561,30277633,31457282,31522818,31588354,31653890,31719425,31784961,31850497,32243713,32309249],"completely":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14286849,20971521,21692417,22937601,30277633,31457281,31522817,31588353,31653889,31719425,31784961,31850497,32243713,32309249],"collectionchangedeventmanager":[1048581,1507329,1638401,14548996,14614530,14680066,15532033,15859713,30408707,32833537,45875205],"creates":[1048577,1507329,1638401,2162692,2424835,2621443,2686977,2818051,2949121,3276801,3342339,3735560,14548993,15532033,15859713,17367041,17432577,17498113,17563649,18677761,18743297,18808833,19660801,19726337,19791873,20185089,21757953,21823489,21889025,23920641,26214401,26279937,26345473,26411009,28377089,28442625,28508161,28573697,28770305,28835841,28901377,28966913,31326212,31981569,32571400,34865155,34996227,35258371,35913731,36503556,36634626,36700162],"callback":[1179649,15073281,30539777],"classmetadata":[1900547,16449540,16515076,16580610,17235970,17301506,31129603,32964609,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,42401794,43384835,46792708],"columnsfor":[1900545,38141955,43384833],"columns":[1900545,2162689,2490369,38141953,39976961,41615361,43384833,43581441,43909121],"csharpfullname":[1900545,38273027,43384833],"constructormetadata":[1966083,2031617,16646148,16842755,16908290,16973826,17039362,31195137,32964610,34537473,38928386,38993922,39059458,43450371,46923781],"constructorinfo":[1966081,38928389,43450369],"constructor":[1966081,2031619,7536641,7602177,7667713,7733249,7798785,7864321,7929857,8847361,8912897,8978433,10027009,10092545,11141121,11862017,13959169,14352385,14417921,14548993,15532033,15728641,15859713,16056321,16908289,16973825,18219009,18284545,18677762,18743298,18808834,19005441,19070977,19136513,19660802,19726338,19791874,20185090,20381698,21037057,21757954,21823489,21889025,22347778,23003137,23789569,24182785,24576001,24903682,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26935297,27000833,31195138,33226753,33554433,33751041,34471937,34603010,34865153,34930689,34996225,35258369,35913729,35979265,36044801,38928386,39190530,43450369,43515905],"constructormetadatacollection":[2031619,16646146,16711682,16777218,16842754,16908290,16973826,17039362,31195139,32964610,34537475,34603011,38207490,39124994,39190530,39256066,43515907,46989317],"clone":[2097153,6225921,6356994,17104901,17170434,31260673,46858242],"clones":[2097154,17104897,17170433,31260674],"cloneinto":[2097153,17170435,31260673],"createdelegategetter":[2162690,17367044,17432580,31326210],"createdelegatesetter":[2162690,17498116,17563652,31326210],"calculated":[2162690,2293761,18219009,33030145,39321601,39387137,43581442,47251457],"calculatedfields":[2162689,39387139,43581441],"canread":[2162689,17367041,17629185,39452675,43581441],"canreadindexed":[2162689,17432577,17694721,39518211,43581441],"canreadindexedandrestricted":[2162689,39583747,43581441],"canreadrestricted":[2162689,17629185,39649283,43581441],"canwrite":[2162689,17498113,17760257,39714819,43581441],"canwriteindexed":[2162689,17563649,17825793,39780355,43581441],"canwriteindexedandrestricted":[2162689,39845891,43581441],"canwriterestricted":[2162689,17760257,39911427,43581441],"child":[2162689,2359297,2555905,2621441,7077889,32833537,33030145,39976961,41353217,41680897,41811969,43581441,43778049,43974657,44040193,46137345,47448065,48627713],"column":[2162689,38141953,40435713,43581441,47448065],"columnattribute":[2162689,40435713,43581441],"cached":[2162690,2883585,2949121,3080193,3145729,32964609,40632321,40697857,42401793,43581442,44302337,44367873,44433409,44498945,46792705],"copy":[2228225,7602177,7667713,7864321,17104897,17170433,17235969,17301505,41156609,43646977],"calculatedfieldattribute":[2293764,18219011,33030145,41222146,41287682,43712515,47251460],"classes":[2293761,2883585,2949121,6160385,18219009,32636929,32702465,32768001,32833537,32899074,32964609,33030146,33095681,42270721,44302337,44367873,45416449,45744129,46858241,47251457],"comma":[2293761,18219009,41287681,43712513],"changetrackingmodelbase":[2359300,5308419,18284547,18350082,18415618,18481154,18546690,18612226,31457283,33030146,41353218,41418754,43778051,47316997,47513601],"checkpoint":[2359297,2424833,2949125,18284545,23920642,23986177,24051714,31981573,41549825,43843585],"creating":[2359298,2424834,2555906,2621442,2686978,2818050,2883586,2949122,3080194,3145730,3276802,3342338,20381697,20447233,22347777,22413313,24838145,24903681,31457282,31522818,31588354,31653890,31719426,31850498,31916034,31981570,32047106,32112642,32243714,32309250,35061762,35389442,35651586],"call":[2359298,2424833,2555908,2621444,2883585,2949121,14090241,14155777,14221313,18350081,18612225,18874369,18939905,19202049,19333121,19464193,19595265,19857409,19988481,20054017,20119553,21233665,21299201,21364737,22085633,22216705,22282241,23920641,23986177,24051713,31588354,31653890,37814273,37945345,41353217,41418754,41549826,41680897,41746434,41811969,41877506,42008577,42074113,42205186,43778050,43843585,43974658,44040194,44302337,44367873],"changetrackingmodelcollection":[2424838,5373955,18677764,18743300,18808836,18874370,18939906,31522819,33030145,34865158,41484290,41549826,43843587,47382533],"constructing":[2424835,2621443,2686977,2818051,18677761,18743297,18808833,19660801,19726337,19791873,20185089,21757953,21823489,21889025,34865155,34996227,35258371],"checks":[2424833,41549825,43843585],"canceledit":[2555905,2621441,2949123,19333123,19988483,23920641,23986181,31588353,31653889,31981571],"changetrackingpropertybag":[2883588,2949129,5767171,23003139,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,31916035,31981575,33095681,35520515,42205186,42270722,44302339,44367874,47316995,47382531,47972357,48037891],"capabilities":[2883585,2949121,23003137,23789569,33095682,47972353,48037889],"created":[2883585,2949121,3080193,3145729,20709377,20774913,20840449,20905985,22740993,22806529,22872065,23461889,24379393,25100289,25624577,25690113,25755649,25952257,26017793,31916033,31981569,32047105,32112641],"care":[2883585,2949121,20512769,22478849,42270721,44302337,44367873],"corresponding":[2883585,2949121,3080193,3145729,4849665,5767169,5832705,5898241,5963777],"currently":[2949121,42336257,44367873],"cultureinfo":[3538946,26673156,26804228,35979266],"compare":[3538945,10485761,11730946,11927554,26083330,26869765,32374785,33095681,48365569],"compares":[3538945,26869761,32374785],"choose":[3604484,27066373,27131909,32440324,36110341],"capacity":[3670017,7798788,7929860,27852805,32505857],"consists":[3670018,27918337,27983873,32505858],"characters":[3670018,27918337,27983873,32505858],"cache":[3670018,17235969,17301505,28180481,32505857,32964609,42663937,44826625,47120385],"cancellationtoken":[3735562,28246023,28311559,28639236,28704772,28901384,28966920,29294599,29425671,32571402,36569090,36700164,36765697,36831233],"cancellation":[3735554,28246018,28311554,28901377,28966913,29294593,29425665,32571394],"cancels":[3735558,24117249,28377089,28442625,28508161,28573697,28639233,28704769,32571398,36503556,36569090],"completes":[3735556,28770305,28835841,28901377,28966913,32571396,36634626,36700162],"cancellable":[3735554,28901377,28966913,32571394,36700162],"concurrent":[3735553,29163521,32571393],"complete":[3735553,28901377,28966913,29032449,29097985,29163522,32571393],"completed":[3735553,28246017,28311553,28770306,28835842,29032449,29097985,29229057,32571393],"canceled":[3735556,28246017,28311553,28377090,28442626,28508162,28573698,28639233,28704769,29229058,29294593,29425665,29491201,32571396,36765697,36831234],"cloneoptions":[6160388,6225924,6291460,6356996,17104900,17170436,32964610,46858244],"copying":[6160385,8388609,12386305,16842753,18022401,46858241],"const":[6160386,6225922,6291458,6356994,6488066,6553602,6619138,6684674,6750210,6815746,6881282,7012354,7077890,7143426,7208962,7274498,7340034],"cloning":[6225921,6356993],"casing":[6488065,48300033],"causes":[6619137,6750209,6815745,6881281,48300036],"condition":[7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8388609,8519681,8650753,9043969,9895937,10027009,10092545,12058625,12124161,12386305,12517377,13041665,13107201,13369345,13565953,13631489,13697025,13762561,14483457,14548993,14745601,15007745,15728641,15859713,16056321,16121857,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18153473,18219009,20250625,20316161,20381697,20447233,20512769,20709377,20774913,20840449,20905985,21102593,21626881,22020097,22151169,22347777,22413313,22478849,22740993,22806529,22872065,23134209,23330817,23461889,23592961,23920641,23986177,24051713,24313857,24379393,24444929,24576001,24641537,24707073,24838145,24903681,25165825,25296897,25493505,25624577,25690113,25755649,25952257,26017793,27066369,27131905,27197441,27328513,27459585,27525121,27590657,27656193,27721729,27787265,28049409,28114945,28639233,28704769,28770305,28901377,28966913,29032449,29097985,29163521,29229057,29360129,29491201,37486593,37552129,41091073],"ctype":[10813441,10878977],"codebases":[12910593,12976129],"concatenated":[13172737],"concurrentdictionary":[13238276,13303812],"clas":[17104897,17170433,17235969,17301505],"cover":[17104897,17170433],"calling":[17367041,17432577,17498113,17563649,20512769,22478849,23855105,23920641,23986177,24051713,24117249],"correct":[17367041,17432577,17498113,17563649],"canreadindexedrestrictedis":[17694721],"canwriteindexedrestricted":[17825793],"case":[17956865,18153473,20250625,20316161,20381697,20447233,20512769,22020097,22151169,22347777,22413313,22478849,24641537,24707073,24838145,24903681,26738689,26804225,41091073],"context":[18546692],"creationfunction":[20447237,22413317,24838149],"careful":[24248321,24510465,24772609,25886721],"culture":[26673156,26804228],"comparisons":[26673153,26804225],"calculate":[27000833],"caching":[27852801],"contents":[28180481],"completing":[28901377,28966913],"completion":[29229057],"compound":[32636929,44892161],"callbacks":[32833537,46006273],"cach":[32964609,47054849],"complex":[33030145,47448065],"cancel":[33030146,47513601,47579137],"custom":[33030146,48562177,48758785],"calls":[33030145,48627713],"client":[33095683,47775745,47841281,47906817],"conversions":[33161217],"classing":[37289985],"com":[40566785],"content":[41418753,41549825,41746433,41877505,42205185],"components":[45744129]} \ No newline at end of file +{"constructors":[65537,131073,262145,327681,458753,851969,983041,1048577,1507329,1572865,1638401,1703937,1900545,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3604481,38273027,43712513],"class":[65544,131077,327683,393217,458754,524289,589825,851969,983043,1048577,1114113,1507329,1572866,1638401,1703937,1769473,1835009,1900548,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424834,2490371,2555906,2621442,2686977,2752514,2818050,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342338,3407874,3473411,3538949,3604483,3670017,3735553,3801089,3866625,3932161,3997698,4063233,4128769,4194305,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980738,5046273,5308417,5373954,5439489,5505026,5570561,5636097,5701634,5767169,5832705,5898241,5963777,6029313,6094850,6422529,6946817,7405569,7471105,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847362,8912898,8978434,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,11141123,11206657,11272193,11337729,11403265,11468801,11534338,11599873,11665409,11730945,11796481,11862018,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13959169,14352386,14417922,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15532033,15597569,15663105,15728642,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070978,19136514,19202050,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102594,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542083,26607619,26673154,26738690,26804226,26869762,26935297,27000834,27066370,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29884418,29949953,30015489,30081025,30146561,30408705,30474241,30539777,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899077,32964610,33030147,33095681,33161220,33292296,33357825,33423361,33488897,33554433,33619972,33685505,33751041,34144257,34209793,34275329,34340865,34406401,34537475,34603009,34668545,34734081,34799617,34865153,34930689,34996227,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044805,36110339,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355522,37748737,37814273,37879809,37945345,38076417,38141953,38207490,38273026,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797314,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926082,42991617,43057153,43122689,43319297,43384833,43450369,43515905,43646977,43712516,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088770,45154305,45219843,45285379,45481987,45547523,45613059,45678595,45744131,46006275,46137347,46202884,46268419,46465025,46661636,46727172,46792708,46858244,46923780,47054851,47120387,47251460,47316996,47382531,47448067,47513603,47579139,47644675,47710211,47775747,47841283,47906819,47972355,48037891,48103428,48168964,48234500,48300035,48365571,48431107,48496643,48562179,48693251,48758787,48824323,48889859,49086467,49152003,49217540,49348611,49414147],"clear":[65537,524289,8192003,12255235,29622273,30081025],"containskey":[65538,8257540,8323076,29622274,33423363],"contains":[65538,131074,262146,524289,2031622,2228226,8257538,8323074,8716289,8781825,8912897,8978433,10158084,12320771,13172737,16646149,16711686,16777222,17956868,18022405,24707073,24772609,24903681,24969217,29622274,29818882,30081025,31260678,31457282,33423362,33619970,34603015,34865155],"copyto":[65537,262146,524289,2031617,2228225,8388611,10223620,10289156,12386307,16842755,18087939,29622273,29818882,30081025,31260673,31457281,33882115],"copies":[65537,262146,524289,2031617,2228225,8388609,10223617,10289153,12386305,16842753,18087937,29622273,29818882,30081025,31260673,31457281,33882114],"collection":[65537,131083,196610,262145,327683,524293,589832,720898,917508,983041,2031618,2228226,2359300,2424849,2555908,2621456,2686979,2752516,2818063,2883587,2949123,3276804,3342353,3801089,3866625,3932161,4128769,4259841,4325377,4390913,4521985,4653057,4980739,5046273,5111810,5177345,5308417,5373956,5439489,5505028,5570561,5636097,5701636,6029313,6094852,8454146,8978436,9240577,9306113,9371650,9437185,9502721,9895939,9961473,10420226,10878984,11534338,12124161,12189697,12255233,12320769,12386305,12517377,12582913,12648449,12713985,12779522,13238273,13303809,13434881,13500417,14090241,14155777,14221313,14483457,17039362,17104898,18087937,18153473,18808833,18874373,18939905,19005442,19791873,19857413,19922945,20185090,20905985,21299201,21364737,21430273,21561346,21626882,21954565,22151169,22282241,22347777,22675458,22740994,22872065,23134209,23592962,23920641,24182786,25821185,26345473,26411009,26476549,29622273,29687814,29753345,29884418,30081029,30146568,30343171,30408705,31260674,31457282,31522819,31588361,31653891,31719433,31784962,31850499,31916041,31981571,32047107,32309251,32374793,32702465,32833537,32964609,33030145,33095682,33226753,33619969,34013185,34340868,34471938,34930690,35061762,35258370,35323905,35389442,35979267,37355521,37486593,41811969,43122689,43188225,44171266,44367873,44564481,44957697,45285377,45481985,45678594,45744129,46137345,47513601,47710209,47906817],"comparer":[65538,3211265,6946817,7471105,7733252,7864324,7929860,13565953,13631493,13697029,13762561,32702466,36962309,43057154,45547521,45613057],"count":[65537,262147,524290,589825,2031617,2228225,3604482,9895937,10092549,10551297,11075588,11534337,13500420,13697028,27197450,27852810,29818881,30146561,32505858,33947649,36175873,36503553,37027843,37421061,37879813,39190532,41287683,43057153,43253762,43450370,43843585,43974657],"contained":[65537,131073,327681,1310721,2031617,2424833,2621441,2818049,3342337,3866625,4128769,4456449,4980737,5046273,5242881,5373953,5505025,5701633,6094849,12517377,37027842,39190529,43057153,43843585],"containing":[65538,524289,12451841,30081025,37224450,37289986,43057154],"collections":[65537,131073,196609,262145,327682,393217,458753,524289,917505,2031617,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4980737,5046273,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551299,10616834,10682370,10747908,10813442,10878978,10944516,11010050,11075586,11141126,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,13172737,14024705,16646146,17039361,21233665,22020097,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30343169,31260673,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785,32702466,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34603009,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,43057153,43122689,43188225,43253761,43319297,43384833,43450369,45219842,45285378,45350916,45416450,45481986,45547522,45613058,45678594,47710209,47906817,48234498,48824321],"copied":[131074,8388609,8912897,8978433,12386305,16842753,18808833,18874369,19791873,19857409,21889025,21954561,23724033,24576001,25952257,26411009,26476545,33619970],"clearitems":[131073,2424833,2621441,2818049,3342337,3932161,4325377,9306115,9437185,9502721,29687809,31588353,31719425,31916033,32374785],"conditions":[131073,2424833,2621441,2818049,3342337,9633794,29687809,31588353,31719425,31916033,32374785],"changes":[131073,327683,1310721,2359299,2424834,2555909,2621445,2686977,2752513,2818049,2949121,3276801,3342337,3866625,4128769,4194305,4456449,4587521,4980737,5046274,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,6029313,6094849,7012353,7077889,7143425,11534337,18677761,19005441,19398657,19529729,19660801,20054017,20119553,20185089,20840449,23724033,24051713,24576001,24838145,25690113,25952257,29884417,31522817,31588353,31653891,31719427,32047105,33095682,41680897,42008577,42139649,44105729,44302337,44367873,47644673,47841281,48955395],"cast":[131073,589826,2424833,2621441,2818049,3342337,3997697,4980737,5373953,5505025,5701633,6094849,12910593,12976129,13238273,13303809,30146562],"current":[196610,1900545,2883585,2949122,10485761,16580610,23592961,23986177,24182785,31195137,31981569,32047106,37486596,43188226,49020929],"code":[262145,393217,458753,3211265,10682370,11796483,11993091,26214402,29818881,29949953,30015489,32243713,33161219,48103425,48168961,48234497],"conversion":[262146,10813443,10878979,33226754,34013187],"collectionchanged":[327682,4063235,5046273,11337729,20905989,22872069,25821189,29884417,32899075,46399489,46530561,46596097],"called":[327681,524289,2359299,2424833,2555905,2621441,2949123,11534337,12451841,18350081,18612225,18677761,19005441,19660801,20185089,23986177,24051713,24117249,29884417,30081025,31522818,31588353,31653889,31719425,32047107,33095681,47644673],"change":[327681,2883585,2949121,3080193,4390913,4521985,4653057,11534337,23068673,23855105,24248321,26148865,26214401,29884417,32899073,33095682,33161219,46465025,47710209,47906817,48300033,48365569,48496641],"comparison":[458753,589825,3211265,11862017,13762568,26148865,30146561,32243713,34406401,37814274,43384833],"cleanup":[524289,12189699,30081025,37879809],"collectionutilities":[589827,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,30146563,32964609,34340867,34406403,45744132],"casts":[589826,12910593,12976129,30146562],"concat":[589825,13172739,30146561],"concatenates":[589825,13172737,30146561],"componentmodel":[655361,720897,786433,851969,917505,2555907,2621443,4259842,4325378,4390914,5111809,5177345,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,19398657,19529730,20054017,20119554,30212097,30277633,30343169,31653891,31719427,32768001,34471937,37945346,38010882,41746433,41877505,42074113,42205185,42532865,43515905,43581441,45809666,45875202,45940738,46006274,46071810,48889857,49086465],"changedproperties":[786433,2359297,2555905,2883585,2949121,13893635,18481155,19464195,23199747,30277633,31522817,31653889,31981569,32047105],"changed":[786433,917505,2162689,2293763,2359303,2424837,2555910,2621444,2686981,2752513,2818052,2883594,2949130,3080201,3145737,3276805,3342340,4390913,4521985,4653057,4718593,4784129,4849665,4915201,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767172,5832708,5898244,5963780,6029313,6094849,6619137,9568257,13893633,18284546,18350081,18481153,19464193,20316161,20381697,20447233,20512769,20774914,20840450,20905986,20971522,22085633,22216705,22413313,22478849,22806530,22872066,22937601,23461889,23658497,24510465,24707073,24772609,24903681,24969217,25690113,25755650,25821186,25886721,26017793,26083329,30277633,31522821,31588355,31653893,31719427,31784964,31916035,31981574,32047110,32112645,32178181,32309252,32374787,32768001,33095682,35192836,35520515,35586053,35651589,35913733,39649281,41549825,41615361,41746433,41811969,41877505,42074113,42205185,42532865,43909121,44040194,44171265,45940737,47579137,47644673,48627713],"create":[851969,1703937,1769474,11141121,13959169,16056321,16121860,17170433,17235969,23658497,24510465,25886721,31064066],"clearerrors":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14024707,21233667,22020099,30343169,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"clears":[917505,2359298,2424834,2555906,2621442,2686977,2752513,2818049,3276801,3342337,14024705,18415617,18939905,19267585,19922945,21233665,22020097,30343169,31522818,31588354,31653890,31719426,31784961,31850497,31916033,32309249,32374785],"completely":[917505,2359297,2424833,2555905,2621441,2686977,2752513,2818049,3276801,3342337,14286849,21037057,21757953,23003137,30343169,31522817,31588353,31653889,31719425,31784961,31850497,31916033,32309249,32374785],"collectionchangedeventmanager":[1048581,1507329,1638401,14548996,14614530,14680066,15532033,15859713,30474243,32899073,46202885],"creates":[1048577,1507329,1638401,2162692,2424835,2621443,2686977,2818051,2949121,3276801,3342339,3735560,14548993,15532033,15859713,17432577,17498113,17563649,17629185,18743297,18808833,18874369,19726337,19791873,19857409,20250625,21823489,21889025,21954561,23986177,26279937,26345473,26411009,26476545,28442625,28508161,28573697,28639233,28835841,28901377,28966913,29032449,31391748,32047105,32636936,34930691,35061763,35323907,35979267,36569092,36700162,36765698],"callback":[1179649,15073281,30605313],"classmetadata":[1900547,16449540,16515076,16580610,17301506,17367042,31195139,33030145,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,42729474,43712515,47120388],"columnsfor":[1900545,38207491,43712513],"columns":[1900545,2162689,2490369,38207489,40239105,41943041,43712513,43909121,44236801],"csharpfullname":[1900545,38338563,43712513],"constructormetadata":[1966083,2031618,16646148,16842755,16908290,16973826,17039362,17104899,31260673,33030146,34603009,38993922,39059458,39124994,39256066,39452676,43778051,43843585,47251461],"constructorinfo":[1966081,38993925,43778049],"constructor":[1966081,2031620,7536641,7602177,7667713,7733249,7798785,7864321,7929857,8847361,8912897,8978433,10027009,10092545,11141121,11862017,13959169,14352385,14417921,14548993,15532033,15728641,15859713,16056321,16908289,16973825,18284545,18350081,18743298,18808834,18874370,19070977,19136513,19202049,19726338,19791874,19857410,20250626,20447234,21102593,21823490,21889025,21954561,22413314,23068673,23855105,24248321,24641537,24969218,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,31260674,33292289,33619969,33816577,34537473,34668546,34930689,34996225,35061761,35323905,35979265,36044801,36110337,38993922,39256065,39321602,43778049,43843586],"constructormetadatacollection":[2031619,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,31260675,33030146,34603011,34668547,38273026,39190530,39256066,39321602,39387138,39452674,43843587,47316997],"clone":[2097153,6225921,6356994,17170437,17235970,31326209,47185922],"clones":[2097154,17170433,17235969,31326210],"cloneinto":[2097153,17235971,31326209],"createdelegategetter":[2162690,17432580,17498116,31391746],"createdelegatesetter":[2162690,17563652,17629188,31391746],"calculated":[2162690,2293761,18284545,33095681,39518209,39649281,43909122,47579137],"complete":[2162689,3735553,28966913,29032449,29097985,29163521,29229058,32636929,39583745,43909121],"calculatedfields":[2162689,39649283,43909121],"canread":[2162689,17432577,17694721,39714819,43909121],"canreadindexed":[2162689,17498113,17760257,39780355,43909121],"canreadindexedandrestricted":[2162689,39845891,43909121],"canreadrestricted":[2162689,17694721,39911427,43909121],"canwrite":[2162689,17563649,17825793,39976963,43909121],"canwriteindexed":[2162689,17629185,17891329,40042499,43909121],"canwriteindexedandrestricted":[2162689,40108035,43909121],"canwriterestricted":[2162689,17825793,40173571,43909121],"child":[2162689,2359297,2555905,2621441,7077889,32899073,33095681,40239105,41680897,42008577,42139649,43909121,44105729,44302337,44367873,46465025,47775745,48955393],"column":[2162689,38207489,40697857,43909121,47775745],"columnattribute":[2162689,40697857,43909121],"cached":[2162691,2883585,2949121,3080193,3145729,33030145,40894465,40960001,41091073,42729473,43909123,44630017,44695553,44761089,44826625,47120385],"copy":[2228225,7602177,7667713,7864321,17170433,17235969,17301505,17367041,41484289,43974657],"calculatedfieldattribute":[2293764,18284547,33095681,41549826,41615362,44040195,47579140],"classes":[2293761,2883585,2949121,6160385,18284545,32702465,32768001,32833537,32899073,32964610,33030145,33095682,33161217,42598401,44630017,44695553,45744129,46071809,47185921,47579137],"comma":[2293761,18284545,41615361,44040193],"changetrackingmodelbase":[2359300,5308419,18350083,18415618,18481154,18546690,18612226,18677762,31522819,33095682,41680898,41746434,44105731,47644677,47841281],"checkpoint":[2359297,2424833,2949125,18350081,23986178,24051713,24117250,32047109,41877505,44171265],"creating":[2359298,2424834,2555906,2621442,2686978,2818050,2883586,2949122,3080194,3145730,3276802,3342338,20447233,20512769,22413313,22478849,24903681,24969217,31522818,31588354,31653890,31719426,31784962,31916034,31981570,32047106,32112642,32178178,32309250,32374786,35127298,35454978,35717122],"call":[2359298,2424833,2555908,2621444,2883585,2949121,14090241,14155777,14221313,18415617,18677761,18939905,19005441,19267585,19398657,19529729,19660801,19922945,20054017,20119553,20185089,21299201,21364737,21430273,22151169,22282241,22347777,23986177,24051713,24117249,31653890,31719426,37879809,38010881,41680897,41746434,41877506,42008577,42074114,42139649,42205186,42336257,42401793,42532866,44105730,44171265,44302338,44367874,44630017,44695553],"changetrackingmodelcollection":[2424838,5373955,18743300,18808836,18874372,18939906,19005442,31588355,33095681,34930694,41811970,41877506,44171267,47710213],"constructing":[2424835,2621443,2686977,2818051,18743297,18808833,18874369,19726337,19791873,19857409,20250625,21823489,21889025,21954561,34930691,35061763,35323907],"checks":[2424833,41877505,44171265],"canceledit":[2555905,2621441,2949123,19398659,20054019,23986177,24051717,31653889,31719425,32047107],"changetrackingpropertybag":[2883588,2949129,5767171,23068675,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,31981571,32047111,33161217,35586051,42532866,42598402,44630019,44695554,47644675,47710211,48300037,48365571],"capabilities":[2883585,2949121,23068673,23855105,33161218,48300033,48365569],"created":[2883585,2949121,3080193,3145729,20774913,20840449,20905985,20971521,22806529,22872065,22937601,23527425,24444929,25165825,25690113,25755649,25821185,26017793,26083329,31981569,32047105,32112641,32178177],"care":[2883585,2949121,20578305,22544385,42598401,44630017,44695553],"corresponding":[2883585,2949121,3080193,3145729,4849665,5767169,5832705,5898241,5963777],"currently":[2949121,42663937,44695553],"cultureinfo":[3538946,26738692,26869764,36044802],"compare":[3538945,10485761,11730946,11927554,26148866,26935301,32440321,33161217,48693249],"compares":[3538945,26935297,32440321],"choose":[3604484,27131909,27197445,32505860,36175877],"capacity":[3670017,7798788,7929860,27918341,32571393],"consists":[3670018,27983873,28049409,32571394],"characters":[3670018,27983873,28049409,32571394],"cache":[3670018,17301505,17367041,28246017,32571393,33030145,42991617,45154305,47448065],"cancellationtoken":[3735562,28311559,28377095,28704772,28770308,28966920,29032456,29360135,29491207,32636938,36634626,36765700,36831233,36896769],"cancellation":[3735554,28311554,28377090,28966913,29032449,29360129,29491201,32636930],"cancels":[3735558,24182785,28442625,28508161,28573697,28639233,28704769,28770305,32636934,36569092,36634626],"completes":[3735556,28835841,28901377,28966913,29032449,32636932,36700162,36765698],"cancellable":[3735554,28966913,29032449,32636930,36765698],"concurrent":[3735553,29229057,32636929],"completed":[3735553,28311553,28377089,28835842,28901378,29097985,29163521,29294593,32636929],"canceled":[3735556,28311553,28377089,28442626,28508162,28573698,28639234,28704769,28770305,29294594,29360129,29491201,29556737,32636932,36831233,36896770],"cloneoptions":[6160388,6225924,6291460,6356996,17170436,17235972,33030146,47185924],"copying":[6160385,8388609,12386305,16842753,18087937,47185921],"const":[6160386,6225922,6291458,6356994,6488066,6553602,6619138,6684674,6750210,6815746,6881282,7012354,7077890,7143426,7208962,7274498,7340034],"cloning":[6225921,6356993],"casing":[6488065,48627713],"causes":[6619137,6750209,6815745,6881281,48627716],"condition":[7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8388609,8519681,8650753,9043969,9895937,10027009,10092545,12058625,12124161,12386305,12517377,13041665,13107201,13369345,13565953,13631489,13697025,13762561,14483457,14548993,14745601,15007745,15728641,15859713,16056321,16121857,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18219009,18284545,20316161,20381697,20447233,20512769,20578305,20774913,20840449,20905985,20971521,21168129,21692417,22085633,22216705,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23527425,23658497,23986177,24051713,24117249,24379393,24444929,24510465,24641537,24707073,24772609,24903681,24969217,25231361,25362433,25559041,25690113,25755649,25821185,26017793,26083329,27131905,27197441,27262977,27394049,27525121,27590657,27656193,27721729,27787265,27852801,28114945,28180481,28704769,28770305,28835841,28966913,29032449,29097985,29163521,29229057,29294593,29425665,29556737,37552129,37617665,41418753],"ctype":[10813441,10878977],"codebases":[12910593,12976129],"concatenated":[13172737],"concurrentdictionary":[13238276,13303812],"clas":[17170433,17235969,17301505,17367041],"cover":[17170433,17235969],"calling":[17432577,17498113,17563649,17629185,20578305,22544385,23920641,23986177,24051713,24117249,24182785],"correct":[17432577,17498113,17563649,17629185],"canreadindexedrestrictedis":[17760257],"canwriteindexedrestricted":[17891329],"case":[18022401,18219009,20316161,20381697,20447233,20512769,20578305,22085633,22216705,22413313,22478849,22544385,24707073,24772609,24903681,24969217,26804225,26869761,41418753],"context":[18612228],"creationfunction":[20512773,22478853,24903685],"careful":[23724033,24576001,24838145,25952257],"culture":[26738692,26869764],"comparisons":[26738689,26869761],"calculate":[27066369],"caching":[27918337],"contents":[28246017],"completing":[28966913,29032449],"completion":[29294593],"compound":[32702465,45219841],"callbacks":[32899073,46333953],"cach":[33030145,47382529],"complex":[33095681,47775745],"cancel":[33095682,47841281,47906817],"custom":[33095682,48889857,49086465],"calls":[33095681,48955393],"client":[33161219,48103425,48168961,48234497],"conversions":[33226753],"classing":[37355521],"com":[40828929],"content":[41746433,41877505,42074113,42205185,42532865],"components":[46071809]} \ No newline at end of file diff --git a/docs/API/fti/FTI_Files.json b/docs/API/fti/FTI_Files.json index be154618..a8fe623a 100644 --- a/docs/API/fti/FTI_Files.json +++ b/docs/API/fti/FTI_Files.json @@ -1 +1 @@ -["Generic topic title\u0000.htm\u000019","Dictionary(TKey1, TKey2, TValue) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.Dictionary-3.htm\u00001517","ObservableCollectionExtended(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000732","ReadOnlyListSegment(T).Enumerator Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.htm\u0000177","ReadOnlyListSegment(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000683","ReadOnlyObservableCollectionExtended(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000393","ReversibleEqualityComparer(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.htm\u0000112","ReversibleStringEqualityComparer Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.htm\u000068","WeakReferenceCollection(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.WeakReferenceCollection-1.htm\u0000184","CollectionUtilities Members\u0000AllMembers.T-Tortuga.Anchor.CollectionUtilities.htm\u00001118","IDetailedPropertyChangeTracking Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.htm\u000038","INotifyCollectionChanged Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.htm\u0000114","IPropertyChangeTracking Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.htm\u000034","ItemEventArgs(T) Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.htm\u0000138","IValidatable Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u0000117","ValidationResultCollection Members\u0000AllMembers.T-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.htm\u000097","CollectionChangedEventManager Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.CollectionChangedEventManager.htm\u0000180","EventManager(T) Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.EventManager-1.htm\u0000150","IListener Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.IListener-1.htm\u000080","INotifyCollectionChangedWeak Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.htm\u000046","INotifyItemPropertyChanged Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.INotifyItemPropertyChanged.htm\u000056","INotifyItemPropertyChangedWeak Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.htm\u000046","INotifyPropertyChangedWeak Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.htm\u000046","ItemPropertyChangedEventManager Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.htm\u0000180","Listener(T) Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.Listener-1.htm\u0000141","PropertyChangedEventManager Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.PropertyChangedEventManager.htm\u0000180","RelayedEventArgs(T) Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.RelayedEventArgs-1.htm\u0000142","RelayedEventArgs Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.RelayedEventArgs.htm\u000060","LockUtilities Members\u0000AllMembers.T-Tortuga.Anchor.LockUtilities.htm\u000087","ClassMetadata Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.ClassMetadata.htm\u0000160","ConstructorMetadata Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.ConstructorMetadata.htm\u000045","ConstructorMetadataCollection Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm\u0000280","MetadataCache Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.MetadataCache.htm\u0000141","PropertyMetadata Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm\u0000701","PropertyMetadataCollection Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.PropertyMetadataCollection.htm\u0000171","CalculatedFieldAttribute Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.htm\u000088","ChangeTrackingModelBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u00001256","ChangeTrackingModelCollection(TModelType) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u00002472","DecomposeAttribute Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.DecomposeAttribute.htm\u000099","EditableObjectModelBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u00001287","EditableObjectModelCollection(TModelType) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u00002532","AbstractModelBase(TPropertyTracking) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000805","AbstractModelBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u0000213","AbstractModelCollection(T, TPropertyTracking) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u00001830","ChangeTrackingPropertyBag Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u00001000","EditableObjectPropertyBag Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u00001119","NotSet Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.NotSet.htm\u000037","PropertyBag Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u0000887","PropertyBagBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u0000785","ValidationResultEqualityComparer Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.htm\u000066","ModelBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ModelBase.htm\u00001144","ModelCollection(T) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u00002388","TableAndViewAttribute Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.TableAndViewAttribute.htm\u000064","ViewAttribute Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ViewAttribute.htm\u000079","NaturalSortComparer Members\u0000AllMembers.T-Tortuga.Anchor.NaturalSortComparer.htm\u0000118","RandomExtended Members\u0000AllMembers.T-Tortuga.Anchor.RandomExtended.htm\u0000427","StringUtilities Members\u0000AllMembers.T-Tortuga.Anchor.StringUtilities.htm\u0000208","TaskUtilities Members\u0000AllMembers.T-Tortuga.Anchor.TaskUtilities.htm\u0000682","ItemAdded Event\u0000E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemAdded.htm\u0000153","ItemPropertyChanged Event\u0000E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemPropertyChanged.htm\u0000139","ItemRemoved Event\u0000E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemRemoved.htm\u0000156","PropertyChanged Event\u0000E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.PropertyChanged.htm\u0000133","CollectionChanged Event\u0000E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.CollectionChanged.htm\u0000121","ItemPropertyChanged Event\u0000E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.ItemPropertyChanged.htm\u0000148","PropertyChanged Event\u0000E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.PropertyChanged.htm\u0000119","ItemAdded Event\u0000E-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.ItemAdded.htm\u0000142","ItemRemoved Event\u0000E-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.ItemRemoved.htm\u0000145","ErrorsChanged Event\u0000E-Tortuga.Anchor.ComponentModel.IValidatable.ErrorsChanged.htm\u000096","ItemPropertyChanged Event\u0000E-Tortuga.Anchor.Eventing.INotifyItemPropertyChanged.ItemPropertyChanged.htm\u000093","ErrorsChanged Event\u0000E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.ErrorsChanged.htm\u0000100","PropertyChanged Event\u0000E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.PropertyChanged.htm\u000077","ErrorsChanged Event\u0000E-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.ErrorsChanged.htm\u0000150","PropertyChanged Event\u0000E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanged.htm\u000077","PropertyChanging Event\u0000E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanging.htm\u000079","RevalidateObject Event\u0000E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateObject.htm\u000089","RevalidateProperty Event\u0000E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateProperty.htm\u000081","ObservableCollectionExtended(T) Events\u0000Events.T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000186","ReadOnlyObservableCollectionExtended(T) Events\u0000Events.T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000140","INotifyCollectionChanged Events\u0000Events.T-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.htm\u0000114","IValidatable Events\u0000Events.T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u000037","INotifyItemPropertyChanged Events\u0000Events.T-Tortuga.Anchor.Eventing.INotifyItemPropertyChanged.htm\u000056","ChangeTrackingModelBase Events\u0000Events.T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u000059","ChangeTrackingModelCollection(TModelType) Events\u0000Events.T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u0000343","EditableObjectModelBase Events\u0000Events.T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u000059","EditableObjectModelCollection(TModelType) Events\u0000Events.T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u0000343","AbstractModelBase(TPropertyTracking) Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000126","AbstractModelBase Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u000046","AbstractModelCollection(T, TPropertyTracking) Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u0000320","ChangeTrackingPropertyBag Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u0000107","EditableObjectPropertyBag Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u0000107","PropertyBag Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u0000107","PropertyBagBase Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u000079","ModelBase Events\u0000Events.T-Tortuga.Anchor.Modeling.ModelBase.htm\u000059","ModelCollection(T) Events\u0000Events.T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u0000343","BypassProperties Field\u0000F-Tortuga.Anchor.Metadata.CloneOptions.BypassProperties.htm\u000095","DeepClone Field\u0000F-Tortuga.Anchor.Metadata.CloneOptions.DeepClone.htm\u000073","None Field\u0000F-Tortuga.Anchor.Metadata.CloneOptions.None.htm\u000061","UseIClonable Field\u0000F-Tortuga.Anchor.Metadata.CloneOptions.UseIClonable.htm\u000085","Value Field\u0000F-Tortuga.Anchor.Modeling.Internals.NotSet.Value.htm\u000066","FixCasing Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.FixCasing.htm\u000074","None Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.None.htm\u000065","RaiseChangedEvent Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.RaiseChangedEvent.htm\u000068","SetAsOriginal Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.SetAsOriginal.htm\u000084","UpdateIsChangedProperty Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.UpdateIsChangedProperty.htm\u000069","ValidateObject Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.ValidateObject.htm\u000074","ValidateProperty Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.ValidateProperty.htm\u000068","Default Field\u0000F-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.Default.htm\u000067","AcceptChanges Field\u0000F-Tortuga.Anchor.Modeling.UpdateMode.AcceptChanges.htm\u000062","AcceptLocalChanges Field\u0000F-Tortuga.Anchor.Modeling.UpdateMode.AcceptLocalChanges.htm\u000067","None Field\u0000F-Tortuga.Anchor.Modeling.UpdateMode.None.htm\u000063","DiscardEmptyAndNull Field\u0000F-Tortuga.Anchor.StringJoinOption.DiscardEmptyAndNull.htm\u000073","DiscardNulls Field\u0000F-Tortuga.Anchor.StringJoinOption.DiscardNulls.htm\u000070","None Field\u0000F-Tortuga.Anchor.StringJoinOption.None.htm\u000062","NotSet Fields\u0000Fields.T-Tortuga.Anchor.Modeling.Internals.NotSet.htm\u000037","ValidationResultEqualityComparer Fields\u0000Fields.T-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.htm\u000038","Dictionary(TKey1, TKey2, TValue) Constructor\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor.htm\u0000161","Dictionary(TKey1, TKey2, TValue) Constructor (IDictionary(ValueTuple(TKey1, TKey2), TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_1.htm\u0000318","Dictionary(TKey1, TKey2, TValue) Constructor (Dictionary(ValueTuple(TKey1, TKey2), TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_2.htm\u0000318","Dictionary(TKey1, TKey2, TValue) Constructor (IEqualityComparer(ValueTuple(TKey1, TKey2)))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_3.htm\u0000306","Dictionary(TKey1, TKey2, TValue) Constructor (Int32)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_4.htm\u0000190","Dictionary(TKey1, TKey2, TValue) Constructor (IDictionary(ValueTuple(TKey1, TKey2), TValue), IEqualityComparer(ValueTuple(TKey1, TKey2)))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_5.htm\u0000452","Dictionary(TKey1, TKey2, TValue) Constructor (Int32, IEqualityComparer(ValueTuple(TKey1, TKey2)))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_6.htm\u0000328","Add Method (ValueTuple(TKey1, TKey2), TValue)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Add.htm\u0000288","Add Method (TKey1, TKey2, TValue)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Add_1.htm\u0000231","Add Method (KeyValuePair(ValueTuple(TKey1, TKey2), TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Add_2.htm\u0000284","Clear Method\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Clear.htm\u0000123","ContainsKey Method (ValueTuple(TKey1, TKey2))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey.htm\u0000251","ContainsKey Method (TKey1, TKey2)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey_1.htm\u0000200","CopyTo Method\u0000M-Tortuga.Anchor.Collections.Dictionary-3.CopyTo.htm\u0000369","GetEnumerator Method\u0000M-Tortuga.Anchor.Collections.Dictionary-3.GetEnumerator.htm\u0000174","Remove Method (ValueTuple(TKey1, TKey2))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Remove.htm\u0000282","Remove Method (TKey1, TKey2)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Remove_1.htm\u0000214","Remove Method (KeyValuePair(ValueTuple(TKey1, TKey2), TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Remove_2.htm\u0000348","TryGetValue Method (ValueTuple(TKey1, TKey2), Nullable(TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue.htm\u0000357","TryGetValue Method (TKey1, TKey2, Nullable(TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue_1.htm\u0000313","ObservableCollectionExtended(T) Constructor\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.-ctor.htm\u0000121","ObservableCollectionExtended(T) Constructor (List(T))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.-ctor_1.htm\u0000202","ObservableCollectionExtended(T) Constructor (IEnumerable(T))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.-ctor_2.htm\u0000202","AddHandler Method (IListener(NotifyCollectionChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddHandler.htm\u0000209","AddHandler Method (IListener(PropertyChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddHandler_1.htm\u0000198","AddHandler Method (IListener(RelayedEventArgs(PropertyChangedEventArgs)))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddHandler_2.htm\u0000251","AddRange Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddRange.htm\u0000156","ClearItems Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ClearItems.htm\u0000108","InsertItem Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.InsertItem.htm\u0000184","OnItemAdded Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnItemAdded.htm\u0000147","OnItemRemoved Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnItemRemoved.htm\u0000147","OnPropertyChanged Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnPropertyChanged.htm\u0000138","RemoveAll Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveAll.htm\u0000187","RemoveHandler Method (IListener(NotifyCollectionChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveHandler.htm\u0000198","RemoveHandler Method (IListener(PropertyChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveHandler_1.htm\u0000198","RemoveHandler Method (IListener(RelayedEventArgs(PropertyChangedEventArgs)))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveHandler_2.htm\u0000251","RemoveItem Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveItem.htm\u0000198","SetItem Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.SetItem.htm\u0000186","ReadOnlyListSegment(T) Constructor (IReadOnlyList(T))\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor.htm\u0000230","ReadOnlyListSegment(T) Constructor (IReadOnlyList(T), Int32, Int32)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor_1.htm\u0000269","Contains Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Contains.htm\u0000139","CopyTo Method (T[])\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo.htm\u0000173","CopyTo Method (T[], Int32)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo_1.htm\u0000193","Dispose Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.Dispose.htm\u0000106","MoveNext Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.MoveNext.htm\u0000150","Equals Method (Nullable(Object))\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals.htm\u0000225","Equals Method (ReadOnlyListSegment(T))\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals_1.htm\u0000219","GetEnumerator Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.GetEnumerator.htm\u0000179","GetHashCode Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.GetHashCode.htm\u0000134","Equality Operator\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Equality.htm\u0000247","Implicit Conversion (List to ReadOnlyListSegment)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Implicit.htm\u0000213","Implicit Conversion (Collection to ReadOnlyListSegment)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Implicit_1.htm\u0000213","Inequality Operator\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Inequality.htm\u0000248","Slice Method (Int32)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice.htm\u0000148","Slice Method (Int32, Int32)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice_1.htm\u0000167","ReadOnlyObservableCollectionExtended(T) Constructor\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.-ctor.htm\u0000189","AddHandler Method (IListener(NotifyCollectionChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.AddHandler.htm\u0000198","AddHandler Method (IListener(PropertyChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.AddHandler_1.htm\u0000198","OnCollectionChanged Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnCollectionChanged.htm\u0000136","OnPropertyChanged Method (String)\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged.htm\u0000139","OnPropertyChanged Method (PropertyChangedEventArgs)\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged_1.htm\u0000139","OnSourcePropertyChanged Method (String)\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnSourcePropertyChanged.htm\u0000175","RemoveHandler Method (IListener(NotifyCollectionChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.RemoveHandler.htm\u0000198","RemoveHandler Method (IListener(PropertyChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.RemoveHandler_1.htm\u0000198","Equals Method\u0000M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.Equals.htm\u0000266","GetHashCode Method\u0000M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.GetHashCode.htm\u0000200","ReversibleStringEqualityComparer Constructor\u0000M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.-ctor.htm\u000074","Equals Method\u0000M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.Equals.htm\u0000232","GetHashCode Method\u0000M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.GetHashCode.htm\u0000161","Add Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Add.htm\u0000146","AddRange Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.AddRange.htm\u0000170","CleanUp Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.CleanUp.htm\u0000108","Clear Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Clear.htm\u0000107","Contains Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Contains.htm\u0000132","CopyTo Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.CopyTo.htm\u0000226","GetEnumerator Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.GetEnumerator.htm\u0000128","Remove Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Remove.htm\u0000174","AddRange(T) Method (ICollection(T), List(T))\u0000M-Tortuga.Anchor.CollectionUtilities.AddRange--1.htm\u0000242","AddRange(T) Method (ICollection(T), IEnumerable(T))\u0000M-Tortuga.Anchor.CollectionUtilities.AddRange--1_1.htm\u0000242","AddRange(T) Method (ICollection(T), T[])\u0000M-Tortuga.Anchor.CollectionUtilities.AddRange--1_2.htm\u0000228","AddRange(T) Method (ICollection(T), IEnumerable(Task(T)))\u0000M-Tortuga.Anchor.CollectionUtilities.AddRange--1_3.htm\u0000312","AsList(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.AsList--1.htm\u0000267","AsReadOnlyCollection(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyCollection--1.htm\u0000258","AsReadOnlyList(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyList--1.htm\u0000260","BatchAsLists(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.BatchAsLists--1.htm\u0000208","BatchAsSegments(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.BatchAsSegments--1.htm\u0000209","Concat(TSource) Method\u0000M-Tortuga.Anchor.CollectionUtilities.Concat--1.htm\u0000208","GetKeys(TKey, TValue) Method\u0000M-Tortuga.Anchor.CollectionUtilities.GetKeys--2.htm\u0000202","GetValues(TKey, TValue) Method\u0000M-Tortuga.Anchor.CollectionUtilities.GetValues--2.htm\u0000202","IndexOf(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.IndexOf--1.htm\u0000177","InsertRange(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.InsertRange--1.htm\u0000222","RemoveRange(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.RemoveRange--1.htm\u0000188","Sort(T) Method (IList(T))\u0000M-Tortuga.Anchor.CollectionUtilities.Sort--1.htm\u0000215","Sort(T) Method (IList(T), IComparer(T))\u0000M-Tortuga.Anchor.CollectionUtilities.Sort--1_1.htm\u0000284","Sort(T) Method (IList(T), Int32, Int32, IComparer(T))\u0000M-Tortuga.Anchor.CollectionUtilities.Sort--1_2.htm\u0000323","Sort(T) Method (IList(T), Comparison(T))\u0000M-Tortuga.Anchor.CollectionUtilities.Sort--1_3.htm\u0000285","GetPreviousValue Method\u0000M-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.GetPreviousValue.htm\u0000104","ChangedProperties Method\u0000M-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.ChangedProperties.htm\u000073","ItemEventArgs(T) Constructor\u0000M-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.-ctor.htm\u0000116","ClearErrors Method\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.ClearErrors.htm\u000063","GetAllErrors Method\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.GetAllErrors.htm\u000093","GetErrors Method\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors.htm\u000090","GetErrors Method (String)\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors_1.htm\u0000120","Validate Method\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.Validate.htm\u000075","ValidationResultCollection Constructor\u0000M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.-ctor.htm\u000055","ValidationResultCollection Constructor (IList(ValidationResult))\u0000M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.-ctor_1.htm\u0000134","Add Method\u0000M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.Add.htm\u0000172","CollectionChangedEventManager Constructor\u0000M-Tortuga.Anchor.Eventing.CollectionChangedEventManager.-ctor.htm\u000076","AttachToEvent Method\u0000M-Tortuga.Anchor.Eventing.CollectionChangedEventManager.AttachToEvent.htm\u000072","DetachFromEvent Method\u0000M-Tortuga.Anchor.Eventing.CollectionChangedEventManager.DetachFromEvent.htm\u000072","AddHandler Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.AddHandler.htm\u0000179","AttachToEvent Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.AttachToEvent.htm\u0000116","DetachFromEvent Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.DetachFromEvent.htm\u0000116","EventFired Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.EventFired.htm\u0000173","RemoveHandler Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.RemoveHandler.htm\u0000179","Invoke Method\u0000M-Tortuga.Anchor.Eventing.IListener-1.Invoke.htm\u0000169","AddHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.AddHandler.htm\u0000127","RemoveHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.RemoveHandler.htm\u0000127","AddHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.AddHandler.htm\u0000158","RemoveHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.RemoveHandler.htm\u0000158","AddHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.AddHandler.htm\u0000127","RemoveHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.RemoveHandler.htm\u0000127","ItemPropertyChangedEventManager Constructor\u0000M-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.-ctor.htm\u000080","AttachToEvent Method\u0000M-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.AttachToEvent.htm\u000072","DetachFromEvent Method\u0000M-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.DetachFromEvent.htm\u000072","Listener(T) Constructor\u0000M-Tortuga.Anchor.Eventing.Listener-1.-ctor.htm\u0000203","Invoke Method\u0000M-Tortuga.Anchor.Eventing.Listener-1.Invoke.htm\u0000168","PropertyChangedEventManager Constructor\u0000M-Tortuga.Anchor.Eventing.PropertyChangedEventManager.-ctor.htm\u000076","AttachToEvent Method\u0000M-Tortuga.Anchor.Eventing.PropertyChangedEventManager.AttachToEvent.htm\u000072","DetachFromEvent Method\u0000M-Tortuga.Anchor.Eventing.PropertyChangedEventManager.DetachFromEvent.htm\u000072","RelayedEventArgs(T) Constructor\u0000M-Tortuga.Anchor.Eventing.RelayedEventArgs-1.-ctor.htm\u0000175","Create(T) Method\u0000M-Tortuga.Anchor.Eventing.RelayedEventArgs.Create--1.htm\u0000202","Acquire Method\u0000M-Tortuga.Anchor.LockUtilities.Acquire.htm\u0000102","AcquireAsync Method\u0000M-Tortuga.Anchor.LockUtilities.AcquireAsync.htm\u0000115","Read Method\u0000M-Tortuga.Anchor.LockUtilities.Read.htm\u0000114","Write Method\u0000M-Tortuga.Anchor.LockUtilities.Write.htm\u0000114","MakeNonNullable Method\u0000M-Tortuga.Anchor.Metadata.ClassMetadata.MakeNonNullable.htm\u000088","MakeNullable Method\u0000M-Tortuga.Anchor.Metadata.ClassMetadata.MakeNullable.htm\u000087","ToString Method\u0000M-Tortuga.Anchor.Metadata.ClassMetadata.ToString.htm\u000078","Contains Method (ConstructorMetadata)\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm\u0000147","Contains Method (IReadOnlyList(Type))\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_1.htm\u0000169","Contains Method (Type[])\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_2.htm\u0000155","CopyTo Method\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.CopyTo.htm\u0000180","Find Method (IReadOnlyList(Type))\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm\u0000175","Find Method (Type[])\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find_1.htm\u0000152","GetEnumerator Method\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.GetEnumerator.htm\u0000100","Clone(T) Method\u0000M-Tortuga.Anchor.Metadata.MetadataCache.Clone--1.htm\u0000245","CloneInto(T) Method\u0000M-Tortuga.Anchor.Metadata.MetadataCache.CloneInto--1.htm\u0000262","GetMetadata(T) Method\u0000M-Tortuga.Anchor.Metadata.MetadataCache.GetMetadata--1.htm\u0000140","GetMetadata Method (Type)\u0000M-Tortuga.Anchor.Metadata.MetadataCache.GetMetadata.htm\u0000128","CreateDelegateGetter(TTarget, TProperty) Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.CreateDelegateGetter--2.htm\u0000174","CreateDelegateGetter(TTarget, TIndex, TProperty) Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.CreateDelegateGetter--3.htm\u0000197","CreateDelegateSetter(TTarget, TProperty) Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.CreateDelegateSetter--2.htm\u0000174","CreateDelegateSetter(TTarget, TIndex, TProperty) Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.CreateDelegateSetter--3.htm\u0000197","InvokeGet Method (Object)\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet.htm\u0000136","InvokeGet Method (Object, Nullable(Object))\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet_1.htm\u0000212","InvokeSet Method (Object, Nullable(Object))\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet.htm\u0000197","InvokeSet Method (Object, Nullable(Object), Nullable(Object))\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet_1.htm\u0000273","Contains Method (PropertyMetadata)\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains.htm\u0000154","Contains Method (String)\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains_1.htm\u0000114","CopyTo Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.CopyTo.htm\u0000151","GetEnumerator Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.GetEnumerator.htm\u000081","TryGetValue Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.TryGetValue.htm\u0000165","CalculatedFieldAttribute Constructor\u0000M-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.-ctor.htm\u0000117","ChangeTrackingModelBase Constructor\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.-ctor.htm\u000061","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.AcceptChanges.htm\u000078","ChangedProperties Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.ChangedProperties.htm\u000075","GetPreviousValue Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.GetPreviousValue.htm\u0000101","OnDeserialized Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.OnDeserialized.htm\u000084","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.RejectChanges.htm\u000084","ChangeTrackingModelCollection(TModelType) Constructor\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.-ctor.htm\u0000136","ChangeTrackingModelCollection(TModelType) Constructor (List(TModelType))\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.-ctor_1.htm\u0000224","ChangeTrackingModelCollection(TModelType) Constructor (IEnumerable(TModelType))\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.-ctor_2.htm\u0000224","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.AcceptChanges.htm\u0000125","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.RejectChanges.htm\u0000135","DecomposeAttribute Constructor\u0000M-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor.htm\u000055","DecomposeAttribute Constructor (Nullable(String))\u0000M-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor_1.htm\u0000134","EditableObjectModelBase Constructor\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.-ctor.htm\u000053","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.AcceptChanges.htm\u000078","BeginEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.BeginEdit.htm\u000066","CancelEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.CancelEdit.htm\u000072","ChangedProperties Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.ChangedProperties.htm\u000075","EndEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.EndEdit.htm\u000083","GetPreviousValue Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.GetPreviousValue.htm\u0000101","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.RejectChanges.htm\u000084","EditableObjectModelCollection(TModelType) Constructor\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.-ctor.htm\u0000136","EditableObjectModelCollection(TModelType) Constructor (List(TModelType))\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.-ctor_1.htm\u0000224","EditableObjectModelCollection(TModelType) Constructor (IEnumerable(TModelType))\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.-ctor_2.htm\u0000224","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.AcceptChanges.htm\u0000125","BeginEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.BeginEdit.htm\u0000110","CancelEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.CancelEdit.htm\u0000116","EndEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.EndEdit.htm\u0000127","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.RejectChanges.htm\u0000135","AbstractModelBase(TPropertyTracking) Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.-ctor.htm\u0000114","Get(T) Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Get--1.htm\u0000209","GetDefault(T) Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetDefault--1.htm\u0000227","GetNew(T) Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1.htm\u0000216","GetNew(T) Method (Func(T), String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1_1.htm\u0000296","GetNew Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew.htm\u0000198","OnPropertyChanged Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanged.htm\u0000130","OnPropertyChanging Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanging.htm\u0000130","Set(T) Method (T, PropertyChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1.htm\u0000306","Set(T) Method (T, ValueChanged(T), String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_1.htm\u0000360","Set(T) Method (T, NotifyCollectionChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_2.htm\u0000306","Set Method (Nullable(Object), String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set.htm\u0000270","Validate Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Validate.htm\u0000123","AbstractModelBase Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.-ctor.htm\u000055","AddHandler Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.AddHandler.htm\u0000140","ClearErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.ClearErrors.htm\u000067","GetAllErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetAllErrors.htm\u000097","GetErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors.htm\u000094","GetErrors Method (Nullable(String))\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors_1.htm\u0000180","OnErrorsChanged Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnErrorsChanged.htm\u000094","OnValidateObject Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnValidateObject.htm\u0000122","OnValidateProperty Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnValidateProperty.htm\u0000144","RemoveHandler Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.RemoveHandler.htm\u0000140","Validate Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.Validate.htm\u000079","AbstractModelCollection(T, TPropertyTracking) Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.-ctor.htm\u0000145","AbstractModelCollection(T, TPropertyTracking) Constructor (List(T))\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.-ctor_1.htm\u0000222","AbstractModelCollection(T, TPropertyTracking) Constructor (IEnumerable(T))\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.-ctor_2.htm\u0000222","ClearErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.ClearErrors.htm\u0000116","Get(TValue) Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Get--1.htm\u0000214","GetAllErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetAllErrors.htm\u0000146","GetDefault(TValue) Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetDefault--1.htm\u0000232","GetErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors.htm\u0000143","GetErrors Method (Nullable(String))\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors_1.htm\u0000229","GetNew(TValue) Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1.htm\u0000221","GetNew(TValue) Method (Func(TValue), String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1_1.htm\u0000301","GetNew Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew.htm\u0000203","OnErrorsChanged Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnErrorsChanged.htm\u0000143","OnValidateObject Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnValidateObject.htm\u0000171","OnValidateProperty Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnValidateProperty.htm\u0000193","Set(TValue) Method (TValue, PropertyChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1.htm\u0000311","Set(TValue) Method (TValue, NotifyCollectionChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1_1.htm\u0000311","Set Method (Object, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set.htm\u0000211","Validate Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Validate.htm\u0000128","ChangeTrackingPropertyBag Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.-ctor.htm\u000078","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.AcceptChanges.htm\u0000100","ChangedProperties Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.ChangedProperties.htm\u0000116","GetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetInternalValues.htm\u000078","GetPreviousValue Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetPreviousValue.htm\u0000103","GetValue Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetValue.htm\u0000128","IsChangedGraph Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedGraph.htm\u000074","IsDefined Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsDefined.htm\u0000110","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.RejectChanges.htm\u000097","Set Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Set.htm\u0000300","SetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.SetInternalValues.htm\u0000131","UpdateIsChangedLocal Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.UpdateIsChangedLocal.htm\u000070","EditableObjectPropertyBag Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.-ctor.htm\u000079","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.AcceptChanges.htm\u0000106","BeginEdit Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.BeginEdit.htm\u0000101","CancelEdit Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.CancelEdit.htm\u0000105","EndEdit Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.EndEdit.htm\u0000106","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.RejectChanges.htm\u0000103","PropertyBag Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.-ctor.htm\u000085","GetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetInternalValues.htm\u0000102","GetValue Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetValue.htm\u0000140","IsDefined Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.IsDefined.htm\u0000110","Set Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.Set.htm\u0000303","SetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.SetInternalValues.htm\u0000162","PropertyBagBase Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.-ctor.htm\u000091","Get(T) Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Get--1.htm\u0000175","GetDefault(T) Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetDefault--1.htm\u0000193","GetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetInternalValues.htm\u0000102","GetNew(T) Method (Func(T), String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1.htm\u0000263","GetNew(T) Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1_1.htm\u0000182","GetPropertyIndex Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetPropertyIndex.htm\u000090","GetValue Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetValue.htm\u0000122","IsDefined Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.IsDefined.htm\u000097","OnPropertyChanged Method (PropertyMetadata)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged.htm\u0000116","OnPropertyChanged Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged_1.htm\u000093","OnPropertyChanging Method (PropertyMetadata)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging.htm\u0000116","OnPropertyChanging Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging_1.htm\u000093","OnRevalidateObject Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnRevalidateObject.htm\u000066","OnRevalidateProperty Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnRevalidateProperty.htm\u0000109","RevalidateAll Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateAll.htm\u000079","Set(T) Method (T, ValueChanged(T), String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1.htm\u0000315","Set(T) Method (T, PropertyChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_1.htm\u0000262","Set(T) Method (T, NotifyCollectionChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_2.htm\u0000262","Set Method (Nullable(Object), PropertySetModes, String, Nullable(Object))\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set.htm\u0000341","SetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.SetInternalValues.htm\u0000162","Set Method (Nullable(Object), PropertySetModes, String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_1.htm\u0000255","Set Method (Nullable(Object), String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_2.htm\u0000217","Equals Method\u0000M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.Equals.htm\u0000219","GetHashCode Method\u0000M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.GetHashCode.htm\u0000135","ModelBase Constructor\u0000M-Tortuga.Anchor.Modeling.ModelBase.-ctor.htm\u000055","ModelCollection(T) Constructor\u0000M-Tortuga.Anchor.Modeling.ModelCollection-1.-ctor.htm\u0000124","ModelCollection(T) Constructor (List(T))\u0000M-Tortuga.Anchor.Modeling.ModelCollection-1.-ctor_1.htm\u0000206","ModelCollection(T) Constructor (IEnumerable(T))\u0000M-Tortuga.Anchor.Modeling.ModelCollection-1.-ctor_2.htm\u0000206","TableAndViewAttribute Constructor\u0000M-Tortuga.Anchor.Modeling.TableAndViewAttribute.-ctor.htm\u000088","ViewAttribute Constructor\u0000M-Tortuga.Anchor.Modeling.ViewAttribute.-ctor.htm\u000088","NaturalSortComparer Constructor\u0000M-Tortuga.Anchor.NaturalSortComparer.-ctor.htm\u000055","NaturalSortComparer Constructor (CultureInfo)\u0000M-Tortuga.Anchor.NaturalSortComparer.-ctor_1.htm\u000082","NaturalSortComparer Constructor (Boolean)\u0000M-Tortuga.Anchor.NaturalSortComparer.-ctor_2.htm\u000082","NaturalSortComparer Constructor (Boolean, CultureInfo)\u0000M-Tortuga.Anchor.NaturalSortComparer.-ctor_3.htm\u0000105","Compare Method\u0000M-Tortuga.Anchor.NaturalSortComparer.Compare.htm\u0000239","RandomExtended Constructor\u0000M-Tortuga.Anchor.RandomExtended.-ctor.htm\u000053","RandomExtended Constructor (Int32)\u0000M-Tortuga.Anchor.RandomExtended.-ctor_1.htm\u0000104","Choose(T) Method (IReadOnlyList(T))\u0000M-Tortuga.Anchor.RandomExtended.Choose--1.htm\u0000193","Choose(T) Method (IReadOnlyList(T), Int32, Boolean)\u0000M-Tortuga.Anchor.RandomExtended.Choose--1_1.htm\u0000278","NextDateTime Method (DateTime, DateTime)\u0000M-Tortuga.Anchor.RandomExtended.NextDateTime.htm\u0000137","NextDateTimeOffset Method (DateTimeOffset, TimeSpan)\u0000M-Tortuga.Anchor.RandomExtended.NextDateTimeOffset.htm\u0000120","NextDateTimeOffset Method (DateTimeOffset, DateTimeOffset)\u0000M-Tortuga.Anchor.RandomExtended.NextDateTimeOffset_1.htm\u0000136","NextDateTime Method (DateTime, TimeSpan)\u0000M-Tortuga.Anchor.RandomExtended.NextDateTime_1.htm\u0000120","NextDecimal Method (Decimal)\u0000M-Tortuga.Anchor.RandomExtended.NextDecimal.htm\u0000112","NextDecimal Method (Decimal, Decimal)\u0000M-Tortuga.Anchor.RandomExtended.NextDecimal_1.htm\u0000134","NextInt64 Method (Int64, Int64)\u0000M-Tortuga.Anchor.RandomExtended.NextInt64.htm\u0000134","NextInt64 Method (Int64)\u0000M-Tortuga.Anchor.RandomExtended.NextInt64_1.htm\u0000112","Pick(T) Method (IList(T))\u0000M-Tortuga.Anchor.RandomExtended.Pick--1.htm\u0000198","Pick(T) Method (IList(T), Int32)\u0000M-Tortuga.Anchor.RandomExtended.Pick--1_1.htm\u0000249","AcquireStringBuilder Method\u0000M-Tortuga.Anchor.StringUtilities.AcquireStringBuilder.htm\u0000150","IsNullOrEmpty Method\u0000M-Tortuga.Anchor.StringUtilities.IsNullOrEmpty.htm\u0000131","IsNullOrWhiteSpace Method\u0000M-Tortuga.Anchor.StringUtilities.IsNullOrWhiteSpace.htm\u0000131","Join(T) Method (IEnumerable(T), String, StringJoinOption)\u0000M-Tortuga.Anchor.StringUtilities.Join--1.htm\u0000243","Join Method (IEnumerable(String), String, StringJoinOption)\u0000M-Tortuga.Anchor.StringUtilities.Join.htm\u0000214","Release Method\u0000M-Tortuga.Anchor.StringUtilities.Release.htm\u0000135","AsTask(T) Method (CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.AsTask--1.htm\u0000150","AsTask Method (CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.AsTask.htm\u0000110","AutoCancelingTask(T) Method (TimeSpan)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask--1.htm\u0000150","AutoCancelingTask(T) Method (Int32)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask--1_1.htm\u0000164","AutoCancelingTask Method (TimeSpan)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask.htm\u0000108","AutoCancelingTask Method (Int32)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask_1.htm\u0000112","AutoCancelingToken Method (TimeSpan)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingToken.htm\u0000111","AutoCancelingToken Method (Int32)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingToken_1.htm\u0000115","AutoCompletingTask(T) Method (T, TimeSpan)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCompletingTask--1.htm\u0000183","AutoCompletingTask(T) Method (T, Int32)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCompletingTask--1_1.htm\u0000190","DelaySafe Method (TimeSpan, CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.DelaySafe.htm\u0000182","DelaySafe Method (Int32, CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.DelaySafe_1.htm\u0000181","ForEachAsync(T) Method (IReadOnlyCollection(T), Func(T, Task))\u0000M-Tortuga.Anchor.TaskUtilities.ForEachAsync--1.htm\u0000306","ForEachAsync Method (IReadOnlyCollection(Func(Task)))\u0000M-Tortuga.Anchor.TaskUtilities.ForEachAsync.htm\u0000222","RunConcurrently Method\u0000M-Tortuga.Anchor.TaskUtilities.RunConcurrently.htm\u0000130","WaitForCompleteOrCancel Method\u0000M-Tortuga.Anchor.TaskUtilities.WaitForCompleteOrCancel.htm\u0000118","WhenAll Method (IEnumerable(Task), CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.WhenAll.htm\u0000172","WhenAll Method (IEnumerable(Task))\u0000M-Tortuga.Anchor.TaskUtilities.WhenAll_1.htm\u0000161","WhenAny Method (IEnumerable(Task), CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.WhenAny.htm\u0000172","WhenAny Method (IEnumerable(Task))\u0000M-Tortuga.Anchor.TaskUtilities.WhenAny_1.htm\u0000164","Dictionary(TKey1, TKey2, TValue) Methods\u0000Methods.T-Tortuga.Anchor.Collections.Dictionary-3.htm\u0000607","ObservableCollectionExtended(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000445","ReadOnlyListSegment(T).Enumerator Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.htm\u0000159","ReadOnlyListSegment(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000285","ReadOnlyObservableCollectionExtended(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000288","ReversibleEqualityComparer(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.htm\u0000112","ReversibleStringEqualityComparer Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.htm\u000046","WeakReferenceCollection(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.WeakReferenceCollection-1.htm\u0000173","CollectionUtilities Methods\u0000Methods.T-Tortuga.Anchor.CollectionUtilities.htm\u00001118","IDetailedPropertyChangeTracking Methods\u0000Methods.T-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.htm\u000038","IPropertyChangeTracking Methods\u0000Methods.T-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.htm\u000034","IValidatable Methods\u0000Methods.T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u000093","ValidationResultCollection Methods\u0000Methods.T-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.htm\u000037","CollectionChangedEventManager Methods\u0000Methods.T-Tortuga.Anchor.Eventing.CollectionChangedEventManager.htm\u0000171","EventManager(T) Methods\u0000Methods.T-Tortuga.Anchor.Eventing.EventManager-1.htm\u0000150","IListener Methods\u0000Methods.T-Tortuga.Anchor.Eventing.IListener-1.htm\u000080","INotifyCollectionChangedWeak Methods\u0000Methods.T-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.htm\u000046","INotifyItemPropertyChangedWeak Methods\u0000Methods.T-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.htm\u000046","INotifyPropertyChangedWeak Methods\u0000Methods.T-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.htm\u000046","ItemPropertyChangedEventManager Methods\u0000Methods.T-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.htm\u0000171","Listener(T) Methods\u0000Methods.T-Tortuga.Anchor.Eventing.Listener-1.htm\u000099","PropertyChangedEventManager Methods\u0000Methods.T-Tortuga.Anchor.Eventing.PropertyChangedEventManager.htm\u0000171","RelayedEventArgs Methods\u0000Methods.T-Tortuga.Anchor.Eventing.RelayedEventArgs.htm\u000060","LockUtilities Methods\u0000Methods.T-Tortuga.Anchor.LockUtilities.htm\u000087","ClassMetadata Methods\u0000Methods.T-Tortuga.Anchor.Metadata.ClassMetadata.htm\u000059","ConstructorMetadataCollection Methods\u0000Methods.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm\u0000232","MetadataCache Methods\u0000Methods.T-Tortuga.Anchor.Metadata.MetadataCache.htm\u0000141","PropertyMetadata Methods\u0000Methods.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm\u0000344","PropertyMetadataCollection Methods\u0000Methods.T-Tortuga.Anchor.Metadata.PropertyMetadataCollection.htm\u000087","ChangeTrackingModelBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u00001095","ChangeTrackingModelCollection(TModelType) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u00001875","EditableObjectModelBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u00001134","EditableObjectModelCollection(TModelType) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u00001922","AbstractModelBase(TPropertyTracking) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000707","AbstractModelBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u0000168","AbstractModelCollection(T, TPropertyTracking) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u00001359","ChangeTrackingPropertyBag Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u0000837","EditableObjectPropertyBag Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u0000938","PropertyBag Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u0000766","PropertyBagBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u0000707","ValidationResultEqualityComparer Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.htm\u000054","ModelBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.ModelBase.htm\u00001041","ModelCollection(T) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u00001845","NaturalSortComparer Methods\u0000Methods.T-Tortuga.Anchor.NaturalSortComparer.htm\u000051","RandomExtended Methods\u0000Methods.T-Tortuga.Anchor.RandomExtended.htm\u0000390","StringUtilities Methods\u0000Methods.T-Tortuga.Anchor.StringUtilities.htm\u0000193","TaskUtilities Methods\u0000Methods.T-Tortuga.Anchor.TaskUtilities.htm\u0000682","Tortuga.Anchor.Collections Namespace\u0000N-Tortuga.Anchor.Collections.htm\u0000317","Tortuga.Anchor.ComponentModel Namespace\u0000N-Tortuga.Anchor.ComponentModel.htm\u0000119","Tortuga.Anchor.DataAnnotations Namespace\u0000N-Tortuga.Anchor.DataAnnotations.htm\u000019","Tortuga.Anchor.Eventing Namespace\u0000N-Tortuga.Anchor.Eventing.htm\u0000358","Tortuga.Anchor Namespace\u0000N-Tortuga.Anchor.htm\u000067","Tortuga.Anchor.Metadata Namespace\u0000N-Tortuga.Anchor.Metadata.htm\u000060","Tortuga.Anchor.Modeling Namespace\u0000N-Tortuga.Anchor.Modeling.htm\u0000368","Tortuga.Anchor.Modeling.Internals Namespace\u0000N-Tortuga.Anchor.Modeling.Internals.htm\u0000210","ReadOnlyListSegment(T) Operators and Type Conversions\u0000Operators.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000295","Dictionary(TKey1, TKey2, TValue) Constructor\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.-ctor.htm\u0000862","Add Method\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.Add.htm\u0000255","ContainsKey Method\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey.htm\u0000182","Remove Method\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.Remove.htm\u0000252","TryGetValue Method\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue.htm\u0000220","ObservableCollectionExtended(T) Constructor\u0000Overload-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.-ctor.htm\u0000265","AddHandler Method\u0000Overload-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddHandler.htm\u0000216","RemoveHandler Method\u0000Overload-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveHandler.htm\u0000216","ReadOnlyListSegment(T) Constructor\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor.htm\u0000253","CopyTo Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo.htm\u0000163","Equals Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals.htm\u0000185","Implicit Conversion Operators\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Implicit.htm\u0000277","Slice Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice.htm\u0000121","AddHandler Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.AddHandler.htm\u0000163","OnPropertyChanged Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged.htm\u0000125","RemoveHandler Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.RemoveHandler.htm\u0000163","AddRange Method\u0000Overload-Tortuga.Anchor.CollectionUtilities.AddRange-.htm\u0000390","Sort Method\u0000Overload-Tortuga.Anchor.CollectionUtilities.Sort-.htm\u0000355","GetErrors Method\u0000Overload-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors.htm\u000067","ValidationResultCollection Constructor\u0000Overload-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.-ctor.htm\u000080","Contains Method\u0000Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm\u0000123","Find Method\u0000Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm\u0000112","InvokeGet Method\u0000Overload-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet.htm\u000082","InvokeSet Method\u0000Overload-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet.htm\u0000132","Contains Method\u0000Overload-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains.htm\u000055","ChangeTrackingModelCollection(TModelType) Constructor\u0000Overload-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.-ctor.htm\u0000273","DecomposeAttribute Constructor\u0000Overload-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor.htm\u000080","EditableObjectModelCollection(TModelType) Constructor\u0000Overload-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.-ctor.htm\u0000273","GetNew Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew-.htm\u0000217","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set-.htm\u0000367","GetErrors Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors.htm\u000091","AbstractModelCollection(T, TPropertyTracking) Constructor\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.-ctor.htm\u0000287","GetErrors Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors.htm\u0000164","GetNew Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew-.htm\u0000224","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set.htm\u0000267","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Set.htm\u0000465","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBag.Set.htm\u0000465","GetNew Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew-.htm\u0000135","OnPropertyChanged Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged.htm\u000052","OnPropertyChanging Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging.htm\u000052","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set.htm\u0000430","ModelCollection(T) Constructor\u0000Overload-Tortuga.Anchor.Modeling.ModelCollection-1.-ctor.htm\u0000258","NaturalSortComparer Constructor\u0000Overload-Tortuga.Anchor.NaturalSortComparer.-ctor.htm\u000086","RandomExtended Constructor\u0000Overload-Tortuga.Anchor.RandomExtended.-ctor.htm\u000056","Choose Method\u0000Overload-Tortuga.Anchor.RandomExtended.Choose-.htm\u0000162","NextDateTime Method\u0000Overload-Tortuga.Anchor.RandomExtended.NextDateTime.htm\u000070","NextDateTimeOffset Method\u0000Overload-Tortuga.Anchor.RandomExtended.NextDateTimeOffset.htm\u000069","NextDecimal Method\u0000Overload-Tortuga.Anchor.RandomExtended.NextDecimal.htm\u000061","NextInt64 Method\u0000Overload-Tortuga.Anchor.RandomExtended.NextInt64.htm\u000061","Pick Method\u0000Overload-Tortuga.Anchor.RandomExtended.Pick-.htm\u0000152","AutoCancelingTask Method\u0000Overload-Tortuga.Anchor.TaskUtilities.AutoCancelingTask-.htm\u0000136","AutoCancelingToken Method\u0000Overload-Tortuga.Anchor.TaskUtilities.AutoCancelingToken.htm\u000064","AutoCompletingTask Method\u0000Overload-Tortuga.Anchor.TaskUtilities.AutoCompletingTask-.htm\u0000112","DelaySafe Method\u0000Overload-Tortuga.Anchor.TaskUtilities.DelaySafe.htm\u000097","WhenAll Method\u0000Overload-Tortuga.Anchor.TaskUtilities.WhenAll.htm\u0000105","WhenAny Method\u0000Overload-Tortuga.Anchor.TaskUtilities.WhenAny.htm\u0000108","Comparer Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Comparer.htm\u0000149","Count Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Count.htm\u0000150","Item Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Item--0,-1-.htm\u0000178","Item Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Item-ValueTuple--0, -1--.htm\u0000197","Keys Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Keys.htm\u0000184","Values Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Values.htm\u0000171","ReadOnlyWrapper Property\u0000P-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ReadOnlyWrapper.htm\u0000150","Count Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Count.htm\u0000118","Current Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.Current.htm\u0000113","Item Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Item-System.Int32-.htm\u0000156","List Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.List.htm\u0000138","Offset Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Offset.htm\u0000118","SourceList Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.SourceList.htm\u0000122","StringComparison Property\u0000P-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.StringComparison.htm\u000076","Count Property\u0000P-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Count.htm\u0000129","Item Property\u0000P-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.Item.htm\u0000118","HasErrors Property\u0000P-Tortuga.Anchor.ComponentModel.IValidatable.HasErrors.htm\u000093","EventArgs Property\u0000P-Tortuga.Anchor.Eventing.RelayedEventArgs-1.EventArgs.htm\u0000113","OriginalSender Property\u0000P-Tortuga.Anchor.Eventing.RelayedEventArgs-1.OriginalSender.htm\u0000127","ColumnsFor Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.ColumnsFor.htm\u000096","Constructors Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.Constructors.htm\u000070","CSharpFullName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.CSharpFullName.htm\u000075","FSharpFullName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.FSharpFullName.htm\u000075","IsNullable Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.IsNullable.htm\u000094","MappedSchemaName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.MappedSchemaName.htm\u000082","MappedTableName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.MappedTableName.htm\u000082","MappedViewName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewName.htm\u000091","MappedViewSchemaName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewSchemaName.htm\u000091","Properties Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.Properties.htm\u000073","TypeInfo Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.TypeInfo.htm\u000070","VisualBasicFullName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.VisualBasicFullName.htm\u000074","ConstructorInfo Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadata.ConstructorInfo.htm\u000076","ParameterNames Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadata.ParameterNames.htm\u000087","Signature Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadata.Signature.htm\u000085","Count Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Count.htm\u000085","HasDefaultConstructor Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.HasDefaultConstructor.htm\u000093","IsReadOnly Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IsReadOnly.htm\u000095","AffectsCalculatedFields Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.AffectsCalculatedFields.htm\u000077","CalculatedFields Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CalculatedFields.htm\u000097","CanRead Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanRead.htm\u000081","CanReadIndexed Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexed.htm\u000080","CanReadIndexedAndRestricted Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexedAndRestricted.htm\u000086","CanReadRestricted Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadRestricted.htm\u000087","CanWrite Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWrite.htm\u000081","CanWriteIndexed Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexed.htm\u000079","CanWriteIndexedAndRestricted Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexedAndRestricted.htm\u000087","CanWriteRestricted Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteRestricted.htm\u000087","Decompose Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.Decompose.htm\u000081","DecompositionPrefix Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.DecompositionPrefix.htm\u000087","IgnoreOnInsert Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnInsert.htm\u000078","IgnoreOnUpdate Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnUpdate.htm\u000078","IsIndexed Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IsIndexed.htm\u000073","IsKey Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IsKey.htm\u000071","IsReferenceNullable Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IsReferenceNullable.htm\u0000103","MappedColumnName Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.MappedColumnName.htm\u000097","Name Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.Name.htm\u000070","NullabilityFlags Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.NullabilityFlags.htm\u0000111","PropertyChangedEventArgs Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangedEventArgs.htm\u000099","PropertyChangingEventArgs Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangingEventArgs.htm\u000099","PropertyIndex Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyIndex.htm\u000099","PropertyType Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyType.htm\u000072","Validators Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.Validators.htm\u000084","Count Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Count.htm\u000071","Item Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.Int32-.htm\u0000101","Item Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.String-.htm\u0000158","PropertyNames Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.PropertyNames.htm\u000087","SourceProperties Property\u0000P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.SourceProperties.htm\u000087","Sources Property\u0000P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.Sources.htm\u000078","IsChanged Property\u0000P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChanged.htm\u000095","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChangedLocal.htm\u0000114","IsChanged Property\u0000P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChanged.htm\u0000126","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChangedLocal.htm\u0000158","Prefix Property\u0000P-Tortuga.Anchor.Modeling.DecomposeAttribute.Prefix.htm\u000091","IsChanged Property\u0000P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChanged.htm\u000095","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChangedLocal.htm\u0000114","IsChanged Property\u0000P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChanged.htm\u0000139","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChangedLocal.htm\u0000158","Properties Property\u0000P-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Properties.htm\u0000119","HasErrors Property\u0000P-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.HasErrors.htm\u000097","HasErrors Property\u0000P-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.HasErrors.htm\u0000147","Properties Property\u0000P-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Properties.htm\u0000130","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedLocal.htm\u0000119","Values Property\u0000P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Values.htm\u0000115","IsEditing Property\u0000P-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.IsEditing.htm\u000088","Metadata Property\u0000P-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Metadata.htm\u000083","ViewName Property\u0000P-Tortuga.Anchor.Modeling.TableAndViewAttribute.ViewName.htm\u0000102","Name Property\u0000P-Tortuga.Anchor.Modeling.ViewAttribute.Name.htm\u000088","Schema Property\u0000P-Tortuga.Anchor.Modeling.ViewAttribute.Schema.htm\u000093","MaxSize Property\u0000P-Tortuga.Anchor.StringUtilities.MaxSize.htm\u000097","Dictionary(TKey1, TKey2, TValue) Properties\u0000Properties.T-Tortuga.Anchor.Collections.Dictionary-3.htm\u0000253","ObservableCollectionExtended(T) Properties\u0000Properties.T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000104","ReadOnlyListSegment(T).Enumerator Properties\u0000Properties.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.htm\u0000146","ReadOnlyListSegment(T) Properties\u0000Properties.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000121","ReadOnlyObservableCollectionExtended(T) Properties\u0000Properties.T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000100","ReversibleStringEqualityComparer Properties\u0000Properties.T-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.htm\u000034","WeakReferenceCollection(T) Properties\u0000Properties.T-Tortuga.Anchor.Collections.WeakReferenceCollection-1.htm\u0000102","ItemEventArgs(T) Properties\u0000Properties.T-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.htm\u0000101","IValidatable Properties\u0000Properties.T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u000037","RelayedEventArgs(T) Properties\u0000Properties.T-Tortuga.Anchor.Eventing.RelayedEventArgs-1.htm\u0000107","ClassMetadata Properties\u0000Properties.T-Tortuga.Anchor.Metadata.ClassMetadata.htm\u0000126","ConstructorMetadata Properties\u0000Properties.T-Tortuga.Anchor.Metadata.ConstructorMetadata.htm\u000045","ConstructorMetadataCollection Properties\u0000Properties.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm\u000073","PropertyMetadata Properties\u0000Properties.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm\u0000374","PropertyMetadataCollection Properties\u0000Properties.T-Tortuga.Anchor.Metadata.PropertyMetadataCollection.htm\u0000109","CalculatedFieldAttribute Properties\u0000Properties.T-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.htm\u000054","ChangeTrackingModelBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u0000131","ChangeTrackingModelCollection(TModelType) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u0000249","DecomposeAttribute Properties\u0000Properties.T-Tortuga.Anchor.Modeling.DecomposeAttribute.htm\u000039","EditableObjectModelBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u0000131","EditableObjectModelCollection(TModelType) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u0000262","AbstractModelBase(TPropertyTracking) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000117","AbstractModelBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u000038","AbstractModelCollection(T, TPropertyTracking) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u0000156","ChangeTrackingPropertyBag Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u000096","EditableObjectPropertyBag Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u0000113","PropertyBag Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u000044","PropertyBagBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u000037","ModelBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ModelBase.htm\u000079","ModelCollection(T) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u0000210","TableAndViewAttribute Properties\u0000Properties.T-Tortuga.Anchor.Modeling.TableAndViewAttribute.htm\u000044","ViewAttribute Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ViewAttribute.htm\u000059","StringUtilities Properties\u0000Properties.T-Tortuga.Anchor.StringUtilities.htm\u000039","Dictionary(TKey1, TKey2, TValue) Class\u0000T-Tortuga.Anchor.Collections.Dictionary-3.htm\u0000175","ObservableCollectionExtended(T) Class\u0000T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000162","ReadOnlyListSegment(T).Enumerator Structure\u0000T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.htm\u0000132","ReadOnlyListSegment(T) Structure\u0000T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000105","ReadOnlyObservableCollectionExtended(T) Class\u0000T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000132","ReversibleEqualityComparer(T) Class\u0000T-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.htm\u0000154","ReversibleStringEqualityComparer Class\u0000T-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.htm\u000084","WeakReferenceCollection(T) Class\u0000T-Tortuga.Anchor.Collections.WeakReferenceCollection-1.htm\u0000115","CollectionUtilities Class\u0000T-Tortuga.Anchor.CollectionUtilities.htm\u000048","IDetailedPropertyChangeTracking Interface\u0000T-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.htm\u000059","INotifyCollectionChanged(T) Interface\u0000T-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.htm\u000083","IPropertyChangeTracking Interface\u0000T-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.htm\u000053","ItemEventArgs(T) Class\u0000T-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.htm\u0000112","IValidatable Interface\u0000T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u000075","ValidationResultCollection Class\u0000T-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.htm\u000046","CollectionChangedEventManager Class\u0000T-Tortuga.Anchor.Eventing.CollectionChangedEventManager.htm\u0000141","EventManager(T) Class\u0000T-Tortuga.Anchor.Eventing.EventManager-1.htm\u0000128","IListener(T) Interface\u0000T-Tortuga.Anchor.Eventing.IListener-1.htm\u000088","INotifyCollectionChangedWeak Interface\u0000T-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.htm\u000056","INotifyItemPropertyChanged Interface\u0000T-Tortuga.Anchor.Eventing.INotifyItemPropertyChanged.htm\u000055","INotifyItemPropertyChangedWeak Interface\u0000T-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.htm\u000062","INotifyPropertyChangedWeak Interface\u0000T-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.htm\u000056","ItemPropertyChangedEventManager Class\u0000T-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.htm\u0000172","Listener(T) Class\u0000T-Tortuga.Anchor.Eventing.Listener-1.htm\u0000197","PropertyChangedEventManager Class\u0000T-Tortuga.Anchor.Eventing.PropertyChangedEventManager.htm\u0000139","RelayedEventArgs(T) Class\u0000T-Tortuga.Anchor.Eventing.RelayedEventArgs-1.htm\u0000162","RelayedEventArgs Class\u0000T-Tortuga.Anchor.Eventing.RelayedEventArgs.htm\u000063","RelayedEventHandler(T) Delegate\u0000T-Tortuga.Anchor.Eventing.RelayedEventHandler-1.htm\u0000181","LockUtilities Class\u0000T-Tortuga.Anchor.LockUtilities.htm\u000052","ClassMetadata Class\u0000T-Tortuga.Anchor.Metadata.ClassMetadata.htm\u000049","CloneOptions Enumeration\u0000T-Tortuga.Anchor.Metadata.CloneOptions.htm\u000093","ConstructorMetadata Class\u0000T-Tortuga.Anchor.Metadata.ConstructorMetadata.htm\u000047","ConstructorMetadataCollection Class\u0000T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm\u000052","MetadataCache Class\u0000T-Tortuga.Anchor.Metadata.MetadataCache.htm\u000050","PropertyMetadata Class\u0000T-Tortuga.Anchor.Metadata.PropertyMetadata.htm\u000053","PropertyMetadataCollection Class\u0000T-Tortuga.Anchor.Metadata.PropertyMetadataCollection.htm\u000048","CalculatedFieldAttribute Class\u0000T-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.htm\u000074","ChangeTrackingModelBase Class\u0000T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u0000168","ChangeTrackingModelCollection(TModelType) Class\u0000T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u0000242","DecomposeAttribute Class\u0000T-Tortuga.Anchor.Modeling.DecomposeAttribute.htm\u000085","EditableObjectModelBase Class\u0000T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u0000165","EditableObjectModelCollection(TModelType) Class\u0000T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u0000254","IgnoreOnInsertAttribute Class\u0000T-Tortuga.Anchor.Modeling.IgnoreOnInsertAttribute.htm\u000057","IgnoreOnUpdateAttribute Class\u0000T-Tortuga.Anchor.Modeling.IgnoreOnUpdateAttribute.htm\u000057","AbstractModelBase(TPropertyTracking) Class\u0000T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000204","AbstractModelBase Class\u0000T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u000081","AbstractModelCollection(T, TPropertyTracking) Class\u0000T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u0000258","ChangeTrackingPropertyBag Class\u0000T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u000092","EditableObjectPropertyBag Class\u0000T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u0000109","NotSet Class\u0000T-Tortuga.Anchor.Modeling.Internals.NotSet.htm\u000053","PropertyBag Class\u0000T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u0000102","PropertyBagBase Class\u0000T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u000056","PropertySetModes Enumeration\u0000T-Tortuga.Anchor.Modeling.Internals.PropertySetModes.htm\u0000157","ValidationResultEqualityComparer Class\u0000T-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.htm\u000057","ModelBase Class\u0000T-Tortuga.Anchor.Modeling.ModelBase.htm\u0000138","ModelCollection(T) Class\u0000T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u0000242","TableAndViewAttribute Class\u0000T-Tortuga.Anchor.Modeling.TableAndViewAttribute.htm\u000071","UpdateMode Enumeration\u0000T-Tortuga.Anchor.Modeling.UpdateMode.htm\u000080","ValueChanged(T) Delegate\u0000T-Tortuga.Anchor.Modeling.ValueChanged-1.htm\u0000133","ViewAttribute Class\u0000T-Tortuga.Anchor.Modeling.ViewAttribute.htm\u000081","NaturalSortComparer Class\u0000T-Tortuga.Anchor.NaturalSortComparer.htm\u000046","RandomExtended Class\u0000T-Tortuga.Anchor.RandomExtended.htm\u000048","StringJoinOption Enumeration\u0000T-Tortuga.Anchor.StringJoinOption.htm\u000088","StringUtilities Class\u0000T-Tortuga.Anchor.StringUtilities.htm\u000047","TaskUtilities Class\u0000T-Tortuga.Anchor.TaskUtilities.htm\u000048"] \ No newline at end of file +["Generic topic title\u0000.htm\u000019","Dictionary(TKey1, TKey2, TValue) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.Dictionary-3.htm\u00001517","ObservableCollectionExtended(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000732","ReadOnlyListSegment(T).Enumerator Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.htm\u0000177","ReadOnlyListSegment(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000683","ReadOnlyObservableCollectionExtended(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000393","ReversibleEqualityComparer(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.htm\u0000112","ReversibleStringEqualityComparer Members\u0000AllMembers.T-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.htm\u000068","WeakReferenceCollection(T) Members\u0000AllMembers.T-Tortuga.Anchor.Collections.WeakReferenceCollection-1.htm\u0000184","CollectionUtilities Members\u0000AllMembers.T-Tortuga.Anchor.CollectionUtilities.htm\u00001118","IDetailedPropertyChangeTracking Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.htm\u000038","INotifyCollectionChanged Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.htm\u0000114","IPropertyChangeTracking Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.htm\u000034","ItemEventArgs(T) Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.htm\u0000138","IValidatable Members\u0000AllMembers.T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u0000117","ValidationResultCollection Members\u0000AllMembers.T-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.htm\u000097","CollectionChangedEventManager Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.CollectionChangedEventManager.htm\u0000180","EventManager(T) Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.EventManager-1.htm\u0000150","IListener Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.IListener-1.htm\u000080","INotifyCollectionChangedWeak Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.htm\u000046","INotifyItemPropertyChanged Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.INotifyItemPropertyChanged.htm\u000056","INotifyItemPropertyChangedWeak Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.htm\u000046","INotifyPropertyChangedWeak Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.htm\u000046","ItemPropertyChangedEventManager Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.htm\u0000180","Listener(T) Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.Listener-1.htm\u0000141","PropertyChangedEventManager Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.PropertyChangedEventManager.htm\u0000180","RelayedEventArgs(T) Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.RelayedEventArgs-1.htm\u0000142","RelayedEventArgs Members\u0000AllMembers.T-Tortuga.Anchor.Eventing.RelayedEventArgs.htm\u000060","LockUtilities Members\u0000AllMembers.T-Tortuga.Anchor.LockUtilities.htm\u000087","ClassMetadata Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.ClassMetadata.htm\u0000160","ConstructorMetadata Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.ConstructorMetadata.htm\u000045","ConstructorMetadataCollection Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm\u0000318","MetadataCache Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.MetadataCache.htm\u0000141","PropertyMetadata Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm\u0000718","PropertyMetadataCollection Members\u0000AllMembers.T-Tortuga.Anchor.Metadata.PropertyMetadataCollection.htm\u0000171","CalculatedFieldAttribute Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.htm\u000088","ChangeTrackingModelBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u00001256","ChangeTrackingModelCollection(TModelType) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u00002472","DecomposeAttribute Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.DecomposeAttribute.htm\u000099","EditableObjectModelBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u00001287","EditableObjectModelCollection(TModelType) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u00002532","AbstractModelBase(TPropertyTracking) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000805","AbstractModelBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u0000213","AbstractModelCollection(T, TPropertyTracking) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u00001830","ChangeTrackingPropertyBag Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u00001006","EditableObjectPropertyBag Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u00001119","NotSet Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.NotSet.htm\u000037","PropertyBag Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u0000881","PropertyBagBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u0000785","ValidationResultEqualityComparer Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.htm\u000066","ModelBase Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ModelBase.htm\u00001144","ModelCollection(T) Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u00002388","TableAndViewAttribute Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.TableAndViewAttribute.htm\u000064","ViewAttribute Members\u0000AllMembers.T-Tortuga.Anchor.Modeling.ViewAttribute.htm\u000079","NaturalSortComparer Members\u0000AllMembers.T-Tortuga.Anchor.NaturalSortComparer.htm\u0000118","RandomExtended Members\u0000AllMembers.T-Tortuga.Anchor.RandomExtended.htm\u0000427","StringUtilities Members\u0000AllMembers.T-Tortuga.Anchor.StringUtilities.htm\u0000208","TaskUtilities Members\u0000AllMembers.T-Tortuga.Anchor.TaskUtilities.htm\u0000682","ItemAdded Event\u0000E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemAdded.htm\u0000153","ItemPropertyChanged Event\u0000E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemPropertyChanged.htm\u0000139","ItemRemoved Event\u0000E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemRemoved.htm\u0000156","PropertyChanged Event\u0000E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.PropertyChanged.htm\u0000133","CollectionChanged Event\u0000E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.CollectionChanged.htm\u0000121","ItemPropertyChanged Event\u0000E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.ItemPropertyChanged.htm\u0000148","PropertyChanged Event\u0000E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.PropertyChanged.htm\u0000119","ItemAdded Event\u0000E-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.ItemAdded.htm\u0000142","ItemRemoved Event\u0000E-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.ItemRemoved.htm\u0000145","ErrorsChanged Event\u0000E-Tortuga.Anchor.ComponentModel.IValidatable.ErrorsChanged.htm\u000096","ItemPropertyChanged Event\u0000E-Tortuga.Anchor.Eventing.INotifyItemPropertyChanged.ItemPropertyChanged.htm\u000093","ErrorsChanged Event\u0000E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.ErrorsChanged.htm\u0000100","PropertyChanged Event\u0000E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.PropertyChanged.htm\u000077","ErrorsChanged Event\u0000E-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.ErrorsChanged.htm\u0000150","PropertyChanged Event\u0000E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanged.htm\u000077","PropertyChanging Event\u0000E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanging.htm\u000079","RevalidateObject Event\u0000E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateObject.htm\u000089","RevalidateProperty Event\u0000E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateProperty.htm\u000081","ObservableCollectionExtended(T) Events\u0000Events.T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000186","ReadOnlyObservableCollectionExtended(T) Events\u0000Events.T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000140","INotifyCollectionChanged Events\u0000Events.T-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.htm\u0000114","IValidatable Events\u0000Events.T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u000037","INotifyItemPropertyChanged Events\u0000Events.T-Tortuga.Anchor.Eventing.INotifyItemPropertyChanged.htm\u000056","ChangeTrackingModelBase Events\u0000Events.T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u000059","ChangeTrackingModelCollection(TModelType) Events\u0000Events.T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u0000343","EditableObjectModelBase Events\u0000Events.T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u000059","EditableObjectModelCollection(TModelType) Events\u0000Events.T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u0000343","AbstractModelBase(TPropertyTracking) Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000126","AbstractModelBase Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u000046","AbstractModelCollection(T, TPropertyTracking) Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u0000320","ChangeTrackingPropertyBag Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u0000107","EditableObjectPropertyBag Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u0000107","PropertyBag Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u0000107","PropertyBagBase Events\u0000Events.T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u000079","ModelBase Events\u0000Events.T-Tortuga.Anchor.Modeling.ModelBase.htm\u000059","ModelCollection(T) Events\u0000Events.T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u0000343","BypassProperties Field\u0000F-Tortuga.Anchor.Metadata.CloneOptions.BypassProperties.htm\u000095","DeepClone Field\u0000F-Tortuga.Anchor.Metadata.CloneOptions.DeepClone.htm\u000073","None Field\u0000F-Tortuga.Anchor.Metadata.CloneOptions.None.htm\u000061","UseIClonable Field\u0000F-Tortuga.Anchor.Metadata.CloneOptions.UseIClonable.htm\u000085","Value Field\u0000F-Tortuga.Anchor.Modeling.Internals.NotSet.Value.htm\u000066","FixCasing Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.FixCasing.htm\u000074","None Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.None.htm\u000065","RaiseChangedEvent Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.RaiseChangedEvent.htm\u000068","SetAsOriginal Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.SetAsOriginal.htm\u000084","UpdateIsChangedProperty Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.UpdateIsChangedProperty.htm\u000069","ValidateObject Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.ValidateObject.htm\u000074","ValidateProperty Field\u0000F-Tortuga.Anchor.Modeling.Internals.PropertySetModes.ValidateProperty.htm\u000068","Default Field\u0000F-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.Default.htm\u000067","AcceptChanges Field\u0000F-Tortuga.Anchor.Modeling.UpdateMode.AcceptChanges.htm\u000062","AcceptLocalChanges Field\u0000F-Tortuga.Anchor.Modeling.UpdateMode.AcceptLocalChanges.htm\u000067","None Field\u0000F-Tortuga.Anchor.Modeling.UpdateMode.None.htm\u000063","DiscardEmptyAndNull Field\u0000F-Tortuga.Anchor.StringJoinOption.DiscardEmptyAndNull.htm\u000073","DiscardNulls Field\u0000F-Tortuga.Anchor.StringJoinOption.DiscardNulls.htm\u000070","None Field\u0000F-Tortuga.Anchor.StringJoinOption.None.htm\u000062","NotSet Fields\u0000Fields.T-Tortuga.Anchor.Modeling.Internals.NotSet.htm\u000037","ValidationResultEqualityComparer Fields\u0000Fields.T-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.htm\u000038","Dictionary(TKey1, TKey2, TValue) Constructor\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor.htm\u0000161","Dictionary(TKey1, TKey2, TValue) Constructor (IDictionary(ValueTuple(TKey1, TKey2), TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_1.htm\u0000318","Dictionary(TKey1, TKey2, TValue) Constructor (Dictionary(ValueTuple(TKey1, TKey2), TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_2.htm\u0000318","Dictionary(TKey1, TKey2, TValue) Constructor (IEqualityComparer(ValueTuple(TKey1, TKey2)))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_3.htm\u0000306","Dictionary(TKey1, TKey2, TValue) Constructor (Int32)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_4.htm\u0000190","Dictionary(TKey1, TKey2, TValue) Constructor (IDictionary(ValueTuple(TKey1, TKey2), TValue), IEqualityComparer(ValueTuple(TKey1, TKey2)))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_5.htm\u0000452","Dictionary(TKey1, TKey2, TValue) Constructor (Int32, IEqualityComparer(ValueTuple(TKey1, TKey2)))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_6.htm\u0000328","Add Method (ValueTuple(TKey1, TKey2), TValue)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Add.htm\u0000288","Add Method (TKey1, TKey2, TValue)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Add_1.htm\u0000231","Add Method (KeyValuePair(ValueTuple(TKey1, TKey2), TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Add_2.htm\u0000284","Clear Method\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Clear.htm\u0000123","ContainsKey Method (ValueTuple(TKey1, TKey2))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey.htm\u0000251","ContainsKey Method (TKey1, TKey2)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey_1.htm\u0000200","CopyTo Method\u0000M-Tortuga.Anchor.Collections.Dictionary-3.CopyTo.htm\u0000369","GetEnumerator Method\u0000M-Tortuga.Anchor.Collections.Dictionary-3.GetEnumerator.htm\u0000174","Remove Method (ValueTuple(TKey1, TKey2))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Remove.htm\u0000282","Remove Method (TKey1, TKey2)\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Remove_1.htm\u0000214","Remove Method (KeyValuePair(ValueTuple(TKey1, TKey2), TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.Remove_2.htm\u0000348","TryGetValue Method (ValueTuple(TKey1, TKey2), Nullable(TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue.htm\u0000357","TryGetValue Method (TKey1, TKey2, Nullable(TValue))\u0000M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue_1.htm\u0000313","ObservableCollectionExtended(T) Constructor\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.-ctor.htm\u0000121","ObservableCollectionExtended(T) Constructor (List(T))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.-ctor_1.htm\u0000202","ObservableCollectionExtended(T) Constructor (IEnumerable(T))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.-ctor_2.htm\u0000202","AddHandler Method (IListener(NotifyCollectionChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddHandler.htm\u0000209","AddHandler Method (IListener(PropertyChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddHandler_1.htm\u0000198","AddHandler Method (IListener(RelayedEventArgs(PropertyChangedEventArgs)))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddHandler_2.htm\u0000251","AddRange Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddRange.htm\u0000156","ClearItems Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ClearItems.htm\u0000108","InsertItem Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.InsertItem.htm\u0000184","OnItemAdded Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnItemAdded.htm\u0000147","OnItemRemoved Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnItemRemoved.htm\u0000147","OnPropertyChanged Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnPropertyChanged.htm\u0000138","RemoveAll Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveAll.htm\u0000187","RemoveHandler Method (IListener(NotifyCollectionChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveHandler.htm\u0000198","RemoveHandler Method (IListener(PropertyChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveHandler_1.htm\u0000198","RemoveHandler Method (IListener(RelayedEventArgs(PropertyChangedEventArgs)))\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveHandler_2.htm\u0000251","RemoveItem Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveItem.htm\u0000198","SetItem Method\u0000M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.SetItem.htm\u0000186","ReadOnlyListSegment(T) Constructor (IReadOnlyList(T))\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor.htm\u0000230","ReadOnlyListSegment(T) Constructor (IReadOnlyList(T), Int32, Int32)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor_1.htm\u0000269","Contains Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Contains.htm\u0000139","CopyTo Method (T[])\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo.htm\u0000173","CopyTo Method (T[], Int32)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo_1.htm\u0000193","Dispose Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.Dispose.htm\u0000106","MoveNext Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.MoveNext.htm\u0000150","Equals Method (Nullable(Object))\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals.htm\u0000225","Equals Method (ReadOnlyListSegment(T))\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals_1.htm\u0000219","GetEnumerator Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.GetEnumerator.htm\u0000179","GetHashCode Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.GetHashCode.htm\u0000134","Equality Operator\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Equality.htm\u0000247","Implicit Conversion (List to ReadOnlyListSegment)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Implicit.htm\u0000213","Implicit Conversion (Collection to ReadOnlyListSegment)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Implicit_1.htm\u0000213","Inequality Operator\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Inequality.htm\u0000248","Slice Method (Int32)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice.htm\u0000148","Slice Method (Int32, Int32)\u0000M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice_1.htm\u0000167","ReadOnlyObservableCollectionExtended(T) Constructor\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.-ctor.htm\u0000189","AddHandler Method (IListener(NotifyCollectionChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.AddHandler.htm\u0000198","AddHandler Method (IListener(PropertyChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.AddHandler_1.htm\u0000198","OnCollectionChanged Method\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnCollectionChanged.htm\u0000136","OnPropertyChanged Method (String)\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged.htm\u0000139","OnPropertyChanged Method (PropertyChangedEventArgs)\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged_1.htm\u0000139","OnSourcePropertyChanged Method (String)\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnSourcePropertyChanged.htm\u0000175","RemoveHandler Method (IListener(NotifyCollectionChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.RemoveHandler.htm\u0000198","RemoveHandler Method (IListener(PropertyChangedEventArgs))\u0000M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.RemoveHandler_1.htm\u0000198","Equals Method\u0000M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.Equals.htm\u0000266","GetHashCode Method\u0000M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.GetHashCode.htm\u0000200","ReversibleStringEqualityComparer Constructor\u0000M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.-ctor.htm\u000074","Equals Method\u0000M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.Equals.htm\u0000232","GetHashCode Method\u0000M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.GetHashCode.htm\u0000161","Add Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Add.htm\u0000146","AddRange Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.AddRange.htm\u0000170","CleanUp Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.CleanUp.htm\u0000108","Clear Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Clear.htm\u0000107","Contains Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Contains.htm\u0000132","CopyTo Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.CopyTo.htm\u0000226","GetEnumerator Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.GetEnumerator.htm\u0000128","Remove Method\u0000M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Remove.htm\u0000174","AddRange(T) Method (ICollection(T), List(T))\u0000M-Tortuga.Anchor.CollectionUtilities.AddRange--1.htm\u0000242","AddRange(T) Method (ICollection(T), IEnumerable(T))\u0000M-Tortuga.Anchor.CollectionUtilities.AddRange--1_1.htm\u0000242","AddRange(T) Method (ICollection(T), T[])\u0000M-Tortuga.Anchor.CollectionUtilities.AddRange--1_2.htm\u0000228","AddRange(T) Method (ICollection(T), IEnumerable(Task(T)))\u0000M-Tortuga.Anchor.CollectionUtilities.AddRange--1_3.htm\u0000312","AsList(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.AsList--1.htm\u0000267","AsReadOnlyCollection(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyCollection--1.htm\u0000258","AsReadOnlyList(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyList--1.htm\u0000260","BatchAsLists(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.BatchAsLists--1.htm\u0000208","BatchAsSegments(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.BatchAsSegments--1.htm\u0000209","Concat(TSource) Method\u0000M-Tortuga.Anchor.CollectionUtilities.Concat--1.htm\u0000208","GetKeys(TKey, TValue) Method\u0000M-Tortuga.Anchor.CollectionUtilities.GetKeys--2.htm\u0000202","GetValues(TKey, TValue) Method\u0000M-Tortuga.Anchor.CollectionUtilities.GetValues--2.htm\u0000202","IndexOf(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.IndexOf--1.htm\u0000177","InsertRange(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.InsertRange--1.htm\u0000222","RemoveRange(T) Method\u0000M-Tortuga.Anchor.CollectionUtilities.RemoveRange--1.htm\u0000188","Sort(T) Method (IList(T))\u0000M-Tortuga.Anchor.CollectionUtilities.Sort--1.htm\u0000215","Sort(T) Method (IList(T), IComparer(T))\u0000M-Tortuga.Anchor.CollectionUtilities.Sort--1_1.htm\u0000284","Sort(T) Method (IList(T), Int32, Int32, IComparer(T))\u0000M-Tortuga.Anchor.CollectionUtilities.Sort--1_2.htm\u0000323","Sort(T) Method (IList(T), Comparison(T))\u0000M-Tortuga.Anchor.CollectionUtilities.Sort--1_3.htm\u0000285","GetPreviousValue Method\u0000M-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.GetPreviousValue.htm\u0000104","ChangedProperties Method\u0000M-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.ChangedProperties.htm\u000073","ItemEventArgs(T) Constructor\u0000M-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.-ctor.htm\u0000116","ClearErrors Method\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.ClearErrors.htm\u000063","GetAllErrors Method\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.GetAllErrors.htm\u000093","GetErrors Method\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors.htm\u000090","GetErrors Method (String)\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors_1.htm\u0000120","Validate Method\u0000M-Tortuga.Anchor.ComponentModel.IValidatable.Validate.htm\u000075","ValidationResultCollection Constructor\u0000M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.-ctor.htm\u000055","ValidationResultCollection Constructor (IList(ValidationResult))\u0000M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.-ctor_1.htm\u0000134","Add Method\u0000M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.Add.htm\u0000172","CollectionChangedEventManager Constructor\u0000M-Tortuga.Anchor.Eventing.CollectionChangedEventManager.-ctor.htm\u000076","AttachToEvent Method\u0000M-Tortuga.Anchor.Eventing.CollectionChangedEventManager.AttachToEvent.htm\u000072","DetachFromEvent Method\u0000M-Tortuga.Anchor.Eventing.CollectionChangedEventManager.DetachFromEvent.htm\u000072","AddHandler Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.AddHandler.htm\u0000179","AttachToEvent Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.AttachToEvent.htm\u0000116","DetachFromEvent Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.DetachFromEvent.htm\u0000116","EventFired Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.EventFired.htm\u0000173","RemoveHandler Method\u0000M-Tortuga.Anchor.Eventing.EventManager-1.RemoveHandler.htm\u0000179","Invoke Method\u0000M-Tortuga.Anchor.Eventing.IListener-1.Invoke.htm\u0000169","AddHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.AddHandler.htm\u0000127","RemoveHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.RemoveHandler.htm\u0000127","AddHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.AddHandler.htm\u0000158","RemoveHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.RemoveHandler.htm\u0000158","AddHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.AddHandler.htm\u0000127","RemoveHandler Method\u0000M-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.RemoveHandler.htm\u0000127","ItemPropertyChangedEventManager Constructor\u0000M-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.-ctor.htm\u000080","AttachToEvent Method\u0000M-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.AttachToEvent.htm\u000072","DetachFromEvent Method\u0000M-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.DetachFromEvent.htm\u000072","Listener(T) Constructor\u0000M-Tortuga.Anchor.Eventing.Listener-1.-ctor.htm\u0000203","Invoke Method\u0000M-Tortuga.Anchor.Eventing.Listener-1.Invoke.htm\u0000168","PropertyChangedEventManager Constructor\u0000M-Tortuga.Anchor.Eventing.PropertyChangedEventManager.-ctor.htm\u000076","AttachToEvent Method\u0000M-Tortuga.Anchor.Eventing.PropertyChangedEventManager.AttachToEvent.htm\u000072","DetachFromEvent Method\u0000M-Tortuga.Anchor.Eventing.PropertyChangedEventManager.DetachFromEvent.htm\u000072","RelayedEventArgs(T) Constructor\u0000M-Tortuga.Anchor.Eventing.RelayedEventArgs-1.-ctor.htm\u0000175","Create(T) Method\u0000M-Tortuga.Anchor.Eventing.RelayedEventArgs.Create--1.htm\u0000202","Acquire Method\u0000M-Tortuga.Anchor.LockUtilities.Acquire.htm\u0000102","AcquireAsync Method\u0000M-Tortuga.Anchor.LockUtilities.AcquireAsync.htm\u0000115","Read Method\u0000M-Tortuga.Anchor.LockUtilities.Read.htm\u0000114","Write Method\u0000M-Tortuga.Anchor.LockUtilities.Write.htm\u0000114","MakeNonNullable Method\u0000M-Tortuga.Anchor.Metadata.ClassMetadata.MakeNonNullable.htm\u000088","MakeNullable Method\u0000M-Tortuga.Anchor.Metadata.ClassMetadata.MakeNullable.htm\u000087","ToString Method\u0000M-Tortuga.Anchor.Metadata.ClassMetadata.ToString.htm\u000078","Contains Method (ConstructorMetadata)\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm\u0000147","Contains Method (IReadOnlyList(Type))\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_1.htm\u0000169","Contains Method (Type[])\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_2.htm\u0000155","CopyTo Method\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.CopyTo.htm\u0000180","Find Method (IReadOnlyList(Type))\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm\u0000175","Find Method (Type[])\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find_1.htm\u0000152","GetEnumerator Method\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.GetEnumerator.htm\u0000100","IndexOf Method\u0000M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IndexOf.htm\u0000133","Clone(T) Method\u0000M-Tortuga.Anchor.Metadata.MetadataCache.Clone--1.htm\u0000245","CloneInto(T) Method\u0000M-Tortuga.Anchor.Metadata.MetadataCache.CloneInto--1.htm\u0000262","GetMetadata(T) Method\u0000M-Tortuga.Anchor.Metadata.MetadataCache.GetMetadata--1.htm\u0000140","GetMetadata Method (Type)\u0000M-Tortuga.Anchor.Metadata.MetadataCache.GetMetadata.htm\u0000128","CreateDelegateGetter(TTarget, TProperty) Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.CreateDelegateGetter--2.htm\u0000174","CreateDelegateGetter(TTarget, TIndex, TProperty) Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.CreateDelegateGetter--3.htm\u0000197","CreateDelegateSetter(TTarget, TProperty) Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.CreateDelegateSetter--2.htm\u0000174","CreateDelegateSetter(TTarget, TIndex, TProperty) Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.CreateDelegateSetter--3.htm\u0000197","InvokeGet Method (Object)\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet.htm\u0000136","InvokeGet Method (Object, Nullable(Object))\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet_1.htm\u0000212","InvokeSet Method (Object, Nullable(Object))\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet.htm\u0000197","InvokeSet Method (Object, Nullable(Object), Nullable(Object))\u0000M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet_1.htm\u0000273","Contains Method (PropertyMetadata)\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains.htm\u0000154","Contains Method (String)\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains_1.htm\u0000114","CopyTo Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.CopyTo.htm\u0000151","GetEnumerator Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.GetEnumerator.htm\u000081","TryGetValue Method\u0000M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.TryGetValue.htm\u0000165","CalculatedFieldAttribute Constructor\u0000M-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.-ctor.htm\u0000117","ChangeTrackingModelBase Constructor\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.-ctor.htm\u000061","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.AcceptChanges.htm\u000078","ChangedProperties Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.ChangedProperties.htm\u000075","GetPreviousValue Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.GetPreviousValue.htm\u0000101","OnDeserialized Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.OnDeserialized.htm\u000084","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.RejectChanges.htm\u000084","ChangeTrackingModelCollection(TModelType) Constructor\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.-ctor.htm\u0000136","ChangeTrackingModelCollection(TModelType) Constructor (List(TModelType))\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.-ctor_1.htm\u0000224","ChangeTrackingModelCollection(TModelType) Constructor (IEnumerable(TModelType))\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.-ctor_2.htm\u0000224","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.AcceptChanges.htm\u0000125","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.RejectChanges.htm\u0000135","DecomposeAttribute Constructor\u0000M-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor.htm\u000055","DecomposeAttribute Constructor (Nullable(String))\u0000M-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor_1.htm\u0000134","EditableObjectModelBase Constructor\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.-ctor.htm\u000053","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.AcceptChanges.htm\u000078","BeginEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.BeginEdit.htm\u000066","CancelEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.CancelEdit.htm\u000072","ChangedProperties Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.ChangedProperties.htm\u000075","EndEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.EndEdit.htm\u000083","GetPreviousValue Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.GetPreviousValue.htm\u0000101","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelBase.RejectChanges.htm\u000084","EditableObjectModelCollection(TModelType) Constructor\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.-ctor.htm\u0000136","EditableObjectModelCollection(TModelType) Constructor (List(TModelType))\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.-ctor_1.htm\u0000224","EditableObjectModelCollection(TModelType) Constructor (IEnumerable(TModelType))\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.-ctor_2.htm\u0000224","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.AcceptChanges.htm\u0000125","BeginEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.BeginEdit.htm\u0000110","CancelEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.CancelEdit.htm\u0000116","EndEdit Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.EndEdit.htm\u0000127","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.RejectChanges.htm\u0000135","AbstractModelBase(TPropertyTracking) Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.-ctor.htm\u0000114","Get(T) Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Get--1.htm\u0000209","GetDefault(T) Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetDefault--1.htm\u0000227","GetNew(T) Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1.htm\u0000216","GetNew(T) Method (Func(T), String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1_1.htm\u0000296","GetNew Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew.htm\u0000198","OnPropertyChanged Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanged.htm\u0000130","OnPropertyChanging Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanging.htm\u0000130","Set(T) Method (T, PropertyChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1.htm\u0000306","Set(T) Method (T, ValueChanged(T), String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_1.htm\u0000360","Set(T) Method (T, NotifyCollectionChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_2.htm\u0000306","Set Method (Nullable(Object), String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set.htm\u0000270","Validate Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Validate.htm\u0000123","AbstractModelBase Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.-ctor.htm\u000055","AddHandler Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.AddHandler.htm\u0000140","ClearErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.ClearErrors.htm\u000067","GetAllErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetAllErrors.htm\u000097","GetErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors.htm\u000094","GetErrors Method (Nullable(String))\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors_1.htm\u0000180","OnErrorsChanged Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnErrorsChanged.htm\u000094","OnValidateObject Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnValidateObject.htm\u0000122","OnValidateProperty Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnValidateProperty.htm\u0000144","RemoveHandler Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.RemoveHandler.htm\u0000140","Validate Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.Validate.htm\u000079","AbstractModelCollection(T, TPropertyTracking) Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.-ctor.htm\u0000145","AbstractModelCollection(T, TPropertyTracking) Constructor (List(T))\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.-ctor_1.htm\u0000222","AbstractModelCollection(T, TPropertyTracking) Constructor (IEnumerable(T))\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.-ctor_2.htm\u0000222","ClearErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.ClearErrors.htm\u0000116","Get(TValue) Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Get--1.htm\u0000214","GetAllErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetAllErrors.htm\u0000146","GetDefault(TValue) Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetDefault--1.htm\u0000232","GetErrors Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors.htm\u0000143","GetErrors Method (Nullable(String))\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors_1.htm\u0000229","GetNew(TValue) Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1.htm\u0000221","GetNew(TValue) Method (Func(TValue), String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1_1.htm\u0000301","GetNew Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew.htm\u0000203","OnErrorsChanged Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnErrorsChanged.htm\u0000143","OnValidateObject Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnValidateObject.htm\u0000171","OnValidateProperty Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnValidateProperty.htm\u0000193","Set(TValue) Method (TValue, PropertyChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1.htm\u0000311","Set(TValue) Method (TValue, NotifyCollectionChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1_1.htm\u0000311","Set Method (Object, String)\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set.htm\u0000211","Validate Method\u0000M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Validate.htm\u0000128","ChangeTrackingPropertyBag Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.-ctor.htm\u000078","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.AcceptChanges.htm\u0000100","ChangedProperties Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.ChangedProperties.htm\u0000116","GetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetInternalValues.htm\u000078","GetPreviousValue Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetPreviousValue.htm\u0000103","GetValue Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetValue.htm\u0000128","IsChangedGraph Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedGraph.htm\u000074","IsDefined Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsDefined.htm\u0000110","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.RejectChanges.htm\u000097","Set Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Set.htm\u0000300","SetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.SetInternalValues.htm\u0000162","UpdateIsChangedLocal Method\u0000M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.UpdateIsChangedLocal.htm\u000070","EditableObjectPropertyBag Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.-ctor.htm\u000079","AcceptChanges Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.AcceptChanges.htm\u0000106","BeginEdit Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.BeginEdit.htm\u0000101","CancelEdit Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.CancelEdit.htm\u0000105","EndEdit Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.EndEdit.htm\u0000106","RejectChanges Method\u0000M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.RejectChanges.htm\u0000103","PropertyBag Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.-ctor.htm\u000085","GetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetInternalValues.htm\u000078","GetValue Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetValue.htm\u0000140","IsDefined Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.IsDefined.htm\u0000110","Set Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.Set.htm\u0000303","SetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBag.SetInternalValues.htm\u0000162","PropertyBagBase Constructor\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.-ctor.htm\u000091","Get(T) Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Get--1.htm\u0000175","GetDefault(T) Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetDefault--1.htm\u0000193","GetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetInternalValues.htm\u0000102","GetNew(T) Method (Func(T), String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1.htm\u0000263","GetNew(T) Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1_1.htm\u0000182","GetPropertyIndex Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetPropertyIndex.htm\u000090","GetValue Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetValue.htm\u0000122","IsDefined Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.IsDefined.htm\u000097","OnPropertyChanged Method (PropertyMetadata)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged.htm\u0000116","OnPropertyChanged Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged_1.htm\u000093","OnPropertyChanging Method (PropertyMetadata)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging.htm\u0000116","OnPropertyChanging Method (String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging_1.htm\u000093","OnRevalidateObject Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnRevalidateObject.htm\u000066","OnRevalidateProperty Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnRevalidateProperty.htm\u0000109","RevalidateAll Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateAll.htm\u000079","Set(T) Method (T, ValueChanged(T), String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1.htm\u0000315","Set(T) Method (T, PropertyChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_1.htm\u0000262","Set(T) Method (T, NotifyCollectionChangedEventHandler, String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_2.htm\u0000262","Set Method (Nullable(Object), PropertySetModes, String, Nullable(Object))\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set.htm\u0000341","SetInternalValues Method\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.SetInternalValues.htm\u0000162","Set Method (Nullable(Object), PropertySetModes, String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_1.htm\u0000255","Set Method (Nullable(Object), String)\u0000M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_2.htm\u0000217","Equals Method\u0000M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.Equals.htm\u0000219","GetHashCode Method\u0000M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.GetHashCode.htm\u0000135","ModelBase Constructor\u0000M-Tortuga.Anchor.Modeling.ModelBase.-ctor.htm\u000055","ModelCollection(T) Constructor\u0000M-Tortuga.Anchor.Modeling.ModelCollection-1.-ctor.htm\u0000124","ModelCollection(T) Constructor (List(T))\u0000M-Tortuga.Anchor.Modeling.ModelCollection-1.-ctor_1.htm\u0000206","ModelCollection(T) Constructor (IEnumerable(T))\u0000M-Tortuga.Anchor.Modeling.ModelCollection-1.-ctor_2.htm\u0000206","TableAndViewAttribute Constructor\u0000M-Tortuga.Anchor.Modeling.TableAndViewAttribute.-ctor.htm\u000088","ViewAttribute Constructor\u0000M-Tortuga.Anchor.Modeling.ViewAttribute.-ctor.htm\u000088","NaturalSortComparer Constructor\u0000M-Tortuga.Anchor.NaturalSortComparer.-ctor.htm\u000055","NaturalSortComparer Constructor (CultureInfo)\u0000M-Tortuga.Anchor.NaturalSortComparer.-ctor_1.htm\u000082","NaturalSortComparer Constructor (Boolean)\u0000M-Tortuga.Anchor.NaturalSortComparer.-ctor_2.htm\u000082","NaturalSortComparer Constructor (Boolean, CultureInfo)\u0000M-Tortuga.Anchor.NaturalSortComparer.-ctor_3.htm\u0000105","Compare Method\u0000M-Tortuga.Anchor.NaturalSortComparer.Compare.htm\u0000239","RandomExtended Constructor\u0000M-Tortuga.Anchor.RandomExtended.-ctor.htm\u000053","RandomExtended Constructor (Int32)\u0000M-Tortuga.Anchor.RandomExtended.-ctor_1.htm\u0000104","Choose(T) Method (IReadOnlyList(T))\u0000M-Tortuga.Anchor.RandomExtended.Choose--1.htm\u0000193","Choose(T) Method (IReadOnlyList(T), Int32, Boolean)\u0000M-Tortuga.Anchor.RandomExtended.Choose--1_1.htm\u0000278","NextDateTime Method (DateTime, DateTime)\u0000M-Tortuga.Anchor.RandomExtended.NextDateTime.htm\u0000137","NextDateTimeOffset Method (DateTimeOffset, TimeSpan)\u0000M-Tortuga.Anchor.RandomExtended.NextDateTimeOffset.htm\u0000120","NextDateTimeOffset Method (DateTimeOffset, DateTimeOffset)\u0000M-Tortuga.Anchor.RandomExtended.NextDateTimeOffset_1.htm\u0000136","NextDateTime Method (DateTime, TimeSpan)\u0000M-Tortuga.Anchor.RandomExtended.NextDateTime_1.htm\u0000120","NextDecimal Method (Decimal)\u0000M-Tortuga.Anchor.RandomExtended.NextDecimal.htm\u0000112","NextDecimal Method (Decimal, Decimal)\u0000M-Tortuga.Anchor.RandomExtended.NextDecimal_1.htm\u0000134","NextInt64 Method (Int64, Int64)\u0000M-Tortuga.Anchor.RandomExtended.NextInt64.htm\u0000134","NextInt64 Method (Int64)\u0000M-Tortuga.Anchor.RandomExtended.NextInt64_1.htm\u0000112","Pick(T) Method (IList(T))\u0000M-Tortuga.Anchor.RandomExtended.Pick--1.htm\u0000198","Pick(T) Method (IList(T), Int32)\u0000M-Tortuga.Anchor.RandomExtended.Pick--1_1.htm\u0000249","AcquireStringBuilder Method\u0000M-Tortuga.Anchor.StringUtilities.AcquireStringBuilder.htm\u0000150","IsNullOrEmpty Method\u0000M-Tortuga.Anchor.StringUtilities.IsNullOrEmpty.htm\u0000131","IsNullOrWhiteSpace Method\u0000M-Tortuga.Anchor.StringUtilities.IsNullOrWhiteSpace.htm\u0000131","Join(T) Method (IEnumerable(T), String, StringJoinOption)\u0000M-Tortuga.Anchor.StringUtilities.Join--1.htm\u0000243","Join Method (IEnumerable(String), String, StringJoinOption)\u0000M-Tortuga.Anchor.StringUtilities.Join.htm\u0000214","Release Method\u0000M-Tortuga.Anchor.StringUtilities.Release.htm\u0000135","AsTask(T) Method (CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.AsTask--1.htm\u0000150","AsTask Method (CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.AsTask.htm\u0000110","AutoCancelingTask(T) Method (TimeSpan)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask--1.htm\u0000150","AutoCancelingTask(T) Method (Int32)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask--1_1.htm\u0000164","AutoCancelingTask Method (TimeSpan)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask.htm\u0000108","AutoCancelingTask Method (Int32)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask_1.htm\u0000112","AutoCancelingToken Method (TimeSpan)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingToken.htm\u0000111","AutoCancelingToken Method (Int32)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCancelingToken_1.htm\u0000115","AutoCompletingTask(T) Method (T, TimeSpan)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCompletingTask--1.htm\u0000183","AutoCompletingTask(T) Method (T, Int32)\u0000M-Tortuga.Anchor.TaskUtilities.AutoCompletingTask--1_1.htm\u0000190","DelaySafe Method (TimeSpan, CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.DelaySafe.htm\u0000182","DelaySafe Method (Int32, CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.DelaySafe_1.htm\u0000181","ForEachAsync(T) Method (IReadOnlyCollection(T), Func(T, Task))\u0000M-Tortuga.Anchor.TaskUtilities.ForEachAsync--1.htm\u0000306","ForEachAsync Method (IReadOnlyCollection(Func(Task)))\u0000M-Tortuga.Anchor.TaskUtilities.ForEachAsync.htm\u0000222","RunConcurrently Method\u0000M-Tortuga.Anchor.TaskUtilities.RunConcurrently.htm\u0000130","WaitForCompleteOrCancel Method\u0000M-Tortuga.Anchor.TaskUtilities.WaitForCompleteOrCancel.htm\u0000118","WhenAll Method (IEnumerable(Task), CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.WhenAll.htm\u0000172","WhenAll Method (IEnumerable(Task))\u0000M-Tortuga.Anchor.TaskUtilities.WhenAll_1.htm\u0000161","WhenAny Method (IEnumerable(Task), CancellationToken)\u0000M-Tortuga.Anchor.TaskUtilities.WhenAny.htm\u0000172","WhenAny Method (IEnumerable(Task))\u0000M-Tortuga.Anchor.TaskUtilities.WhenAny_1.htm\u0000164","Dictionary(TKey1, TKey2, TValue) Methods\u0000Methods.T-Tortuga.Anchor.Collections.Dictionary-3.htm\u0000607","ObservableCollectionExtended(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000445","ReadOnlyListSegment(T).Enumerator Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.htm\u0000159","ReadOnlyListSegment(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000285","ReadOnlyObservableCollectionExtended(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000288","ReversibleEqualityComparer(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.htm\u0000112","ReversibleStringEqualityComparer Methods\u0000Methods.T-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.htm\u000046","WeakReferenceCollection(T) Methods\u0000Methods.T-Tortuga.Anchor.Collections.WeakReferenceCollection-1.htm\u0000173","CollectionUtilities Methods\u0000Methods.T-Tortuga.Anchor.CollectionUtilities.htm\u00001118","IDetailedPropertyChangeTracking Methods\u0000Methods.T-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.htm\u000038","IPropertyChangeTracking Methods\u0000Methods.T-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.htm\u000034","IValidatable Methods\u0000Methods.T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u000093","ValidationResultCollection Methods\u0000Methods.T-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.htm\u000037","CollectionChangedEventManager Methods\u0000Methods.T-Tortuga.Anchor.Eventing.CollectionChangedEventManager.htm\u0000171","EventManager(T) Methods\u0000Methods.T-Tortuga.Anchor.Eventing.EventManager-1.htm\u0000150","IListener Methods\u0000Methods.T-Tortuga.Anchor.Eventing.IListener-1.htm\u000080","INotifyCollectionChangedWeak Methods\u0000Methods.T-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.htm\u000046","INotifyItemPropertyChangedWeak Methods\u0000Methods.T-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.htm\u000046","INotifyPropertyChangedWeak Methods\u0000Methods.T-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.htm\u000046","ItemPropertyChangedEventManager Methods\u0000Methods.T-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.htm\u0000171","Listener(T) Methods\u0000Methods.T-Tortuga.Anchor.Eventing.Listener-1.htm\u000099","PropertyChangedEventManager Methods\u0000Methods.T-Tortuga.Anchor.Eventing.PropertyChangedEventManager.htm\u0000171","RelayedEventArgs Methods\u0000Methods.T-Tortuga.Anchor.Eventing.RelayedEventArgs.htm\u000060","LockUtilities Methods\u0000Methods.T-Tortuga.Anchor.LockUtilities.htm\u000087","ClassMetadata Methods\u0000Methods.T-Tortuga.Anchor.Metadata.ClassMetadata.htm\u000059","ConstructorMetadataCollection Methods\u0000Methods.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm\u0000248","MetadataCache Methods\u0000Methods.T-Tortuga.Anchor.Metadata.MetadataCache.htm\u0000141","PropertyMetadata Methods\u0000Methods.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm\u0000344","PropertyMetadataCollection Methods\u0000Methods.T-Tortuga.Anchor.Metadata.PropertyMetadataCollection.htm\u000087","ChangeTrackingModelBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u00001095","ChangeTrackingModelCollection(TModelType) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u00001875","EditableObjectModelBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u00001134","EditableObjectModelCollection(TModelType) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u00001922","AbstractModelBase(TPropertyTracking) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000707","AbstractModelBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u0000168","AbstractModelCollection(T, TPropertyTracking) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u00001359","ChangeTrackingPropertyBag Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u0000843","EditableObjectPropertyBag Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u0000938","PropertyBag Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u0000760","PropertyBagBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u0000707","ValidationResultEqualityComparer Methods\u0000Methods.T-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.htm\u000054","ModelBase Methods\u0000Methods.T-Tortuga.Anchor.Modeling.ModelBase.htm\u00001041","ModelCollection(T) Methods\u0000Methods.T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u00001845","NaturalSortComparer Methods\u0000Methods.T-Tortuga.Anchor.NaturalSortComparer.htm\u000051","RandomExtended Methods\u0000Methods.T-Tortuga.Anchor.RandomExtended.htm\u0000390","StringUtilities Methods\u0000Methods.T-Tortuga.Anchor.StringUtilities.htm\u0000193","TaskUtilities Methods\u0000Methods.T-Tortuga.Anchor.TaskUtilities.htm\u0000682","Tortuga.Anchor.Collections Namespace\u0000N-Tortuga.Anchor.Collections.htm\u0000317","Tortuga.Anchor.ComponentModel Namespace\u0000N-Tortuga.Anchor.ComponentModel.htm\u0000119","Tortuga.Anchor.DataAnnotations Namespace\u0000N-Tortuga.Anchor.DataAnnotations.htm\u000019","Tortuga.Anchor.Eventing Namespace\u0000N-Tortuga.Anchor.Eventing.htm\u0000358","Tortuga.Anchor Namespace\u0000N-Tortuga.Anchor.htm\u000067","Tortuga.Anchor.Metadata Namespace\u0000N-Tortuga.Anchor.Metadata.htm\u000060","Tortuga.Anchor.Modeling Namespace\u0000N-Tortuga.Anchor.Modeling.htm\u0000368","Tortuga.Anchor.Modeling.Internals Namespace\u0000N-Tortuga.Anchor.Modeling.Internals.htm\u0000210","ReadOnlyListSegment(T) Operators and Type Conversions\u0000Operators.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000295","Dictionary(TKey1, TKey2, TValue) Constructor\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.-ctor.htm\u0000862","Add Method\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.Add.htm\u0000255","ContainsKey Method\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey.htm\u0000182","Remove Method\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.Remove.htm\u0000252","TryGetValue Method\u0000Overload-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue.htm\u0000220","ObservableCollectionExtended(T) Constructor\u0000Overload-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.-ctor.htm\u0000265","AddHandler Method\u0000Overload-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.AddHandler.htm\u0000216","RemoveHandler Method\u0000Overload-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveHandler.htm\u0000216","ReadOnlyListSegment(T) Constructor\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor.htm\u0000253","CopyTo Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo.htm\u0000163","Equals Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals.htm\u0000185","Implicit Conversion Operators\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Implicit.htm\u0000277","Slice Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice.htm\u0000121","AddHandler Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.AddHandler.htm\u0000163","OnPropertyChanged Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged.htm\u0000125","RemoveHandler Method\u0000Overload-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.RemoveHandler.htm\u0000163","AddRange Method\u0000Overload-Tortuga.Anchor.CollectionUtilities.AddRange-.htm\u0000390","Sort Method\u0000Overload-Tortuga.Anchor.CollectionUtilities.Sort-.htm\u0000355","GetErrors Method\u0000Overload-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors.htm\u000067","ValidationResultCollection Constructor\u0000Overload-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.-ctor.htm\u000080","Contains Method\u0000Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm\u0000123","Find Method\u0000Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm\u0000112","InvokeGet Method\u0000Overload-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet.htm\u000082","InvokeSet Method\u0000Overload-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet.htm\u0000132","Contains Method\u0000Overload-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains.htm\u000055","ChangeTrackingModelCollection(TModelType) Constructor\u0000Overload-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.-ctor.htm\u0000273","DecomposeAttribute Constructor\u0000Overload-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor.htm\u000080","EditableObjectModelCollection(TModelType) Constructor\u0000Overload-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.-ctor.htm\u0000273","GetNew Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew-.htm\u0000217","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set-.htm\u0000367","GetErrors Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors.htm\u000091","AbstractModelCollection(T, TPropertyTracking) Constructor\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.-ctor.htm\u0000287","GetErrors Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors.htm\u0000164","GetNew Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew-.htm\u0000224","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set.htm\u0000267","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Set.htm\u0000465","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBag.Set.htm\u0000465","GetNew Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew-.htm\u0000135","OnPropertyChanged Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged.htm\u000052","OnPropertyChanging Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging.htm\u000052","Set Method\u0000Overload-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set.htm\u0000430","ModelCollection(T) Constructor\u0000Overload-Tortuga.Anchor.Modeling.ModelCollection-1.-ctor.htm\u0000258","NaturalSortComparer Constructor\u0000Overload-Tortuga.Anchor.NaturalSortComparer.-ctor.htm\u000086","RandomExtended Constructor\u0000Overload-Tortuga.Anchor.RandomExtended.-ctor.htm\u000056","Choose Method\u0000Overload-Tortuga.Anchor.RandomExtended.Choose-.htm\u0000162","NextDateTime Method\u0000Overload-Tortuga.Anchor.RandomExtended.NextDateTime.htm\u000070","NextDateTimeOffset Method\u0000Overload-Tortuga.Anchor.RandomExtended.NextDateTimeOffset.htm\u000069","NextDecimal Method\u0000Overload-Tortuga.Anchor.RandomExtended.NextDecimal.htm\u000061","NextInt64 Method\u0000Overload-Tortuga.Anchor.RandomExtended.NextInt64.htm\u000061","Pick Method\u0000Overload-Tortuga.Anchor.RandomExtended.Pick-.htm\u0000152","AutoCancelingTask Method\u0000Overload-Tortuga.Anchor.TaskUtilities.AutoCancelingTask-.htm\u0000136","AutoCancelingToken Method\u0000Overload-Tortuga.Anchor.TaskUtilities.AutoCancelingToken.htm\u000064","AutoCompletingTask Method\u0000Overload-Tortuga.Anchor.TaskUtilities.AutoCompletingTask-.htm\u0000112","DelaySafe Method\u0000Overload-Tortuga.Anchor.TaskUtilities.DelaySafe.htm\u000097","WhenAll Method\u0000Overload-Tortuga.Anchor.TaskUtilities.WhenAll.htm\u0000105","WhenAny Method\u0000Overload-Tortuga.Anchor.TaskUtilities.WhenAny.htm\u0000108","Comparer Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Comparer.htm\u0000149","Count Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Count.htm\u0000150","Item Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Item--0,-1-.htm\u0000178","Item Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Item-ValueTuple--0, -1--.htm\u0000197","Keys Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Keys.htm\u0000184","Values Property\u0000P-Tortuga.Anchor.Collections.Dictionary-3.Values.htm\u0000171","ReadOnlyWrapper Property\u0000P-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ReadOnlyWrapper.htm\u0000150","Count Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Count.htm\u0000118","Current Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.Current.htm\u0000113","Item Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Item-System.Int32-.htm\u0000156","List Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.List.htm\u0000138","Offset Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Offset.htm\u0000118","SourceList Property\u0000P-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.SourceList.htm\u0000122","StringComparison Property\u0000P-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.StringComparison.htm\u000076","Count Property\u0000P-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Count.htm\u0000129","Item Property\u0000P-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.Item.htm\u0000118","HasErrors Property\u0000P-Tortuga.Anchor.ComponentModel.IValidatable.HasErrors.htm\u000093","EventArgs Property\u0000P-Tortuga.Anchor.Eventing.RelayedEventArgs-1.EventArgs.htm\u0000113","OriginalSender Property\u0000P-Tortuga.Anchor.Eventing.RelayedEventArgs-1.OriginalSender.htm\u0000127","ColumnsFor Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.ColumnsFor.htm\u000096","Constructors Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.Constructors.htm\u000070","CSharpFullName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.CSharpFullName.htm\u000075","FSharpFullName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.FSharpFullName.htm\u000075","IsNullable Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.IsNullable.htm\u000094","MappedSchemaName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.MappedSchemaName.htm\u000082","MappedTableName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.MappedTableName.htm\u000082","MappedViewName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewName.htm\u000091","MappedViewSchemaName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewSchemaName.htm\u000091","Properties Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.Properties.htm\u000073","TypeInfo Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.TypeInfo.htm\u000070","VisualBasicFullName Property\u0000P-Tortuga.Anchor.Metadata.ClassMetadata.VisualBasicFullName.htm\u000074","ConstructorInfo Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadata.ConstructorInfo.htm\u000076","ParameterNames Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadata.ParameterNames.htm\u000087","Signature Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadata.Signature.htm\u000085","Count Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Count.htm\u000085","DefaultConstructor Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.DefaultConstructor.htm\u000088","HasDefaultConstructor Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.HasDefaultConstructor.htm\u000093","IsReadOnly Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IsReadOnly.htm\u000095","Item Property\u0000P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Item-System.Int32-.htm\u0000101","AffectsCalculatedFields Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.AffectsCalculatedFields.htm\u000077","Attributes Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.Attributes.htm\u000085","CalculatedFields Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CalculatedFields.htm\u000097","CanRead Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanRead.htm\u000081","CanReadIndexed Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexed.htm\u000080","CanReadIndexedAndRestricted Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexedAndRestricted.htm\u000086","CanReadRestricted Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadRestricted.htm\u000087","CanWrite Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWrite.htm\u000081","CanWriteIndexed Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexed.htm\u000079","CanWriteIndexedAndRestricted Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexedAndRestricted.htm\u000087","CanWriteRestricted Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteRestricted.htm\u000087","Decompose Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.Decompose.htm\u000081","DecompositionPrefix Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.DecompositionPrefix.htm\u000087","IgnoreOnInsert Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnInsert.htm\u000078","IgnoreOnUpdate Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnUpdate.htm\u000078","IsIndexed Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IsIndexed.htm\u000073","IsKey Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IsKey.htm\u000071","IsReferenceNullable Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.IsReferenceNullable.htm\u0000103","MappedColumnName Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.MappedColumnName.htm\u000097","Name Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.Name.htm\u000070","NullabilityFlags Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.NullabilityFlags.htm\u0000111","PropertyChangedEventArgs Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangedEventArgs.htm\u000099","PropertyChangingEventArgs Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangingEventArgs.htm\u000099","PropertyIndex Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyIndex.htm\u000099","PropertyInfo Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyInfo.htm\u000071","PropertyType Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyType.htm\u000072","Validators Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadata.Validators.htm\u000084","Count Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Count.htm\u000071","Item Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.Int32-.htm\u0000101","Item Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.String-.htm\u0000158","PropertyNames Property\u0000P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.PropertyNames.htm\u000087","SourceProperties Property\u0000P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.SourceProperties.htm\u000087","Sources Property\u0000P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.Sources.htm\u000078","IsChanged Property\u0000P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChanged.htm\u000095","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChangedLocal.htm\u0000114","IsChanged Property\u0000P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChanged.htm\u0000126","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChangedLocal.htm\u0000158","Prefix Property\u0000P-Tortuga.Anchor.Modeling.DecomposeAttribute.Prefix.htm\u000091","IsChanged Property\u0000P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChanged.htm\u000095","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChangedLocal.htm\u0000114","IsChanged Property\u0000P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChanged.htm\u0000139","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChangedLocal.htm\u0000158","Properties Property\u0000P-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Properties.htm\u0000119","HasErrors Property\u0000P-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.HasErrors.htm\u000097","HasErrors Property\u0000P-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.HasErrors.htm\u0000147","Properties Property\u0000P-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Properties.htm\u0000130","IsChangedLocal Property\u0000P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedLocal.htm\u0000119","Values Property\u0000P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Values.htm\u0000115","IsEditing Property\u0000P-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.IsEditing.htm\u000088","Metadata Property\u0000P-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Metadata.htm\u000083","ViewName Property\u0000P-Tortuga.Anchor.Modeling.TableAndViewAttribute.ViewName.htm\u0000102","Name Property\u0000P-Tortuga.Anchor.Modeling.ViewAttribute.Name.htm\u000088","Schema Property\u0000P-Tortuga.Anchor.Modeling.ViewAttribute.Schema.htm\u000093","MaxSize Property\u0000P-Tortuga.Anchor.StringUtilities.MaxSize.htm\u000097","Dictionary(TKey1, TKey2, TValue) Properties\u0000Properties.T-Tortuga.Anchor.Collections.Dictionary-3.htm\u0000253","ObservableCollectionExtended(T) Properties\u0000Properties.T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000104","ReadOnlyListSegment(T).Enumerator Properties\u0000Properties.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.htm\u0000146","ReadOnlyListSegment(T) Properties\u0000Properties.T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000121","ReadOnlyObservableCollectionExtended(T) Properties\u0000Properties.T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000100","ReversibleStringEqualityComparer Properties\u0000Properties.T-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.htm\u000034","WeakReferenceCollection(T) Properties\u0000Properties.T-Tortuga.Anchor.Collections.WeakReferenceCollection-1.htm\u0000102","ItemEventArgs(T) Properties\u0000Properties.T-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.htm\u0000101","IValidatable Properties\u0000Properties.T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u000037","RelayedEventArgs(T) Properties\u0000Properties.T-Tortuga.Anchor.Eventing.RelayedEventArgs-1.htm\u0000107","ClassMetadata Properties\u0000Properties.T-Tortuga.Anchor.Metadata.ClassMetadata.htm\u0000126","ConstructorMetadata Properties\u0000Properties.T-Tortuga.Anchor.Metadata.ConstructorMetadata.htm\u000045","ConstructorMetadataCollection Properties\u0000Properties.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm\u000095","PropertyMetadata Properties\u0000Properties.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm\u0000391","PropertyMetadataCollection Properties\u0000Properties.T-Tortuga.Anchor.Metadata.PropertyMetadataCollection.htm\u0000109","CalculatedFieldAttribute Properties\u0000Properties.T-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.htm\u000054","ChangeTrackingModelBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u0000131","ChangeTrackingModelCollection(TModelType) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u0000249","DecomposeAttribute Properties\u0000Properties.T-Tortuga.Anchor.Modeling.DecomposeAttribute.htm\u000039","EditableObjectModelBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u0000131","EditableObjectModelCollection(TModelType) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u0000262","AbstractModelBase(TPropertyTracking) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000117","AbstractModelBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u000038","AbstractModelCollection(T, TPropertyTracking) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u0000156","ChangeTrackingPropertyBag Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u000096","EditableObjectPropertyBag Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u0000113","PropertyBag Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u000044","PropertyBagBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u000037","ModelBase Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ModelBase.htm\u000079","ModelCollection(T) Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u0000210","TableAndViewAttribute Properties\u0000Properties.T-Tortuga.Anchor.Modeling.TableAndViewAttribute.htm\u000044","ViewAttribute Properties\u0000Properties.T-Tortuga.Anchor.Modeling.ViewAttribute.htm\u000059","StringUtilities Properties\u0000Properties.T-Tortuga.Anchor.StringUtilities.htm\u000039","Dictionary(TKey1, TKey2, TValue) Class\u0000T-Tortuga.Anchor.Collections.Dictionary-3.htm\u0000175","ObservableCollectionExtended(T) Class\u0000T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm\u0000162","ReadOnlyListSegment(T).Enumerator Structure\u0000T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.htm\u0000132","ReadOnlyListSegment(T) Structure\u0000T-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.htm\u0000105","ReadOnlyObservableCollectionExtended(T) Class\u0000T-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.htm\u0000132","ReversibleEqualityComparer(T) Class\u0000T-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.htm\u0000154","ReversibleStringEqualityComparer Class\u0000T-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.htm\u000084","WeakReferenceCollection(T) Class\u0000T-Tortuga.Anchor.Collections.WeakReferenceCollection-1.htm\u0000115","CollectionUtilities Class\u0000T-Tortuga.Anchor.CollectionUtilities.htm\u000048","IDetailedPropertyChangeTracking Interface\u0000T-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.htm\u000059","INotifyCollectionChanged(T) Interface\u0000T-Tortuga.Anchor.ComponentModel.INotifyCollectionChanged-1.htm\u000083","IPropertyChangeTracking Interface\u0000T-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.htm\u000053","ItemEventArgs(T) Class\u0000T-Tortuga.Anchor.ComponentModel.ItemEventArgs-1.htm\u0000112","IValidatable Interface\u0000T-Tortuga.Anchor.ComponentModel.IValidatable.htm\u000075","ValidationResultCollection Class\u0000T-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.htm\u000046","CollectionChangedEventManager Class\u0000T-Tortuga.Anchor.Eventing.CollectionChangedEventManager.htm\u0000141","EventManager(T) Class\u0000T-Tortuga.Anchor.Eventing.EventManager-1.htm\u0000128","IListener(T) Interface\u0000T-Tortuga.Anchor.Eventing.IListener-1.htm\u000088","INotifyCollectionChangedWeak Interface\u0000T-Tortuga.Anchor.Eventing.INotifyCollectionChangedWeak.htm\u000056","INotifyItemPropertyChanged Interface\u0000T-Tortuga.Anchor.Eventing.INotifyItemPropertyChanged.htm\u000055","INotifyItemPropertyChangedWeak Interface\u0000T-Tortuga.Anchor.Eventing.INotifyItemPropertyChangedWeak.htm\u000062","INotifyPropertyChangedWeak Interface\u0000T-Tortuga.Anchor.Eventing.INotifyPropertyChangedWeak.htm\u000056","ItemPropertyChangedEventManager Class\u0000T-Tortuga.Anchor.Eventing.ItemPropertyChangedEventManager.htm\u0000172","Listener(T) Class\u0000T-Tortuga.Anchor.Eventing.Listener-1.htm\u0000197","PropertyChangedEventManager Class\u0000T-Tortuga.Anchor.Eventing.PropertyChangedEventManager.htm\u0000139","RelayedEventArgs(T) Class\u0000T-Tortuga.Anchor.Eventing.RelayedEventArgs-1.htm\u0000162","RelayedEventArgs Class\u0000T-Tortuga.Anchor.Eventing.RelayedEventArgs.htm\u000063","RelayedEventHandler(T) Delegate\u0000T-Tortuga.Anchor.Eventing.RelayedEventHandler-1.htm\u0000181","LockUtilities Class\u0000T-Tortuga.Anchor.LockUtilities.htm\u000052","ClassMetadata Class\u0000T-Tortuga.Anchor.Metadata.ClassMetadata.htm\u000049","CloneOptions Enumeration\u0000T-Tortuga.Anchor.Metadata.CloneOptions.htm\u000093","ConstructorMetadata Class\u0000T-Tortuga.Anchor.Metadata.ConstructorMetadata.htm\u000047","ConstructorMetadataCollection Class\u0000T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm\u000052","MetadataCache Class\u0000T-Tortuga.Anchor.Metadata.MetadataCache.htm\u000050","PropertyMetadata Class\u0000T-Tortuga.Anchor.Metadata.PropertyMetadata.htm\u000053","PropertyMetadataCollection Class\u0000T-Tortuga.Anchor.Metadata.PropertyMetadataCollection.htm\u000048","CalculatedFieldAttribute Class\u0000T-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.htm\u000074","ChangeTrackingModelBase Class\u0000T-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.htm\u0000168","ChangeTrackingModelCollection(TModelType) Class\u0000T-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.htm\u0000242","DecomposeAttribute Class\u0000T-Tortuga.Anchor.Modeling.DecomposeAttribute.htm\u000085","EditableObjectModelBase Class\u0000T-Tortuga.Anchor.Modeling.EditableObjectModelBase.htm\u0000165","EditableObjectModelCollection(TModelType) Class\u0000T-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.htm\u0000254","IgnoreOnInsertAttribute Class\u0000T-Tortuga.Anchor.Modeling.IgnoreOnInsertAttribute.htm\u000057","IgnoreOnUpdateAttribute Class\u0000T-Tortuga.Anchor.Modeling.IgnoreOnUpdateAttribute.htm\u000057","AbstractModelBase(TPropertyTracking) Class\u0000T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm\u0000204","AbstractModelBase Class\u0000T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm\u000081","AbstractModelCollection(T, TPropertyTracking) Class\u0000T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm\u0000258","ChangeTrackingPropertyBag Class\u0000T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm\u000092","EditableObjectPropertyBag Class\u0000T-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.htm\u0000109","NotSet Class\u0000T-Tortuga.Anchor.Modeling.Internals.NotSet.htm\u000053","PropertyBag Class\u0000T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm\u0000102","PropertyBagBase Class\u0000T-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.htm\u000056","PropertySetModes Enumeration\u0000T-Tortuga.Anchor.Modeling.Internals.PropertySetModes.htm\u0000157","ValidationResultEqualityComparer Class\u0000T-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.htm\u000057","ModelBase Class\u0000T-Tortuga.Anchor.Modeling.ModelBase.htm\u0000138","ModelCollection(T) Class\u0000T-Tortuga.Anchor.Modeling.ModelCollection-1.htm\u0000242","TableAndViewAttribute Class\u0000T-Tortuga.Anchor.Modeling.TableAndViewAttribute.htm\u000071","UpdateMode Enumeration\u0000T-Tortuga.Anchor.Modeling.UpdateMode.htm\u000080","ValueChanged(T) Delegate\u0000T-Tortuga.Anchor.Modeling.ValueChanged-1.htm\u0000133","ViewAttribute Class\u0000T-Tortuga.Anchor.Modeling.ViewAttribute.htm\u000081","NaturalSortComparer Class\u0000T-Tortuga.Anchor.NaturalSortComparer.htm\u000046","RandomExtended Class\u0000T-Tortuga.Anchor.RandomExtended.htm\u000048","StringJoinOption Enumeration\u0000T-Tortuga.Anchor.StringJoinOption.htm\u000088","StringUtilities Class\u0000T-Tortuga.Anchor.StringUtilities.htm\u000047","TaskUtilities Class\u0000T-Tortuga.Anchor.TaskUtilities.htm\u000048"] \ No newline at end of file diff --git a/docs/API/html/AllMembers.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm b/docs/API/html/AllMembers.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm index b6377343..b7f73c5b 100644 --- a/docs/API/html/AllMembers.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm +++ b/docs/API/html/AllMembers.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm @@ -567,6 +567,19 @@

Methods

Returns an enumerator that iterates through the collection. +
+ + + + + Public method + + + IndexOf + + +
+ Determines the index of a specific item in the collection. />.
@@ -600,6 +613,19 @@

Properties

Gets the number of elements contained in the [ICollection{T}]. +
+ + + + + Public property + + + DefaultConstructor + + +
+ Gets a the default constructor, if it has one..
@@ -626,6 +652,19 @@

Properties

Gets a value indicating whether the [ICollection{T}] is read-only. +
+ + + + + Public property + + + Item + + +
+ Gets the ConstructorMetadata at the specified index.
diff --git a/docs/API/html/AllMembers.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm b/docs/API/html/AllMembers.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm index 7dce7338..b0c9146b 100644 --- a/docs/API/html/AllMembers.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm +++ b/docs/API/html/AllMembers.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm @@ -605,6 +605,19 @@

Properties

Returns true of this property needs to trigger updates to calculated fields +
+ + + + + Public property + + + Attributes + + +
+ Complete list of attributes that apply to the property
@@ -891,6 +904,19 @@

Properties

Gets or sets the index of the property. +
+ + + + + Public property + + + PropertyInfo + + +
+ Cached PropertyInfo for the property.
diff --git a/docs/API/html/AllMembers.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm b/docs/API/html/AllMembers.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm index 6ee6cff4..10716328 100644 --- a/docs/API/html/AllMembers.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm +++ b/docs/API/html/AllMembers.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm @@ -795,7 +795,11 @@

Methods

SetInternalValues - + +
+Replaces the internal values array. +
+ diff --git a/docs/API/html/AllMembers.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm b/docs/API/html/AllMembers.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm index 7ce3400f..eab34ec5 100644 --- a/docs/API/html/AllMembers.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm +++ b/docs/API/html/AllMembers.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm @@ -547,11 +547,7 @@

Methods

GetInternalValues - -
-Returns the internal values array. -
- + diff --git a/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemAdded.htm b/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemAdded.htm index 0950239e..3046496b 100644 --- a/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemAdded.htm +++ b/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemAdded.htm @@ -494,7 +494,7 @@

ObservableCollectionExtendedNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler<ItemEventArgs<T>>> ItemAdded
Public Event ItemAdded As Nullable(Of EventHandler(Of ItemEventArgs(Of T)))

Remarks


Triggered by InsertItem and SetItem
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler<ItemEventArgs<T>>> ItemAdded
Public Event ItemAdded As Nullable(Of EventHandler(Of ItemEventArgs(Of T)))

Remarks


Triggered by InsertItem and SetItem
diff --git a/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemRemoved.htm b/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemRemoved.htm index 23d7ddae..6024f458 100644 --- a/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemRemoved.htm +++ b/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.ItemRemoved.htm @@ -494,7 +494,7 @@

ObservableCollectionExtendedNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler<ItemEventArgs<T>>> ItemRemoved
Public Event ItemRemoved As Nullable(Of EventHandler(Of ItemEventArgs(Of T)))

Remarks


Triggered by SetItem, RemoveItem, and ClearItems
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler<ItemEventArgs<T>>> ItemRemoved
Public Event ItemRemoved As Nullable(Of EventHandler(Of ItemEventArgs(Of T)))

Remarks


Triggered by SetItem, RemoveItem, and ClearItems
diff --git a/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.PropertyChanged.htm b/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.PropertyChanged.htm index ea005fd9..d3576665 100644 --- a/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.PropertyChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.PropertyChanged.htm @@ -494,7 +494,7 @@

ObservableCollectionExtendedNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> PropertyChanged
Public Event PropertyChanged As Nullable(Of PropertyChangedEventHandler)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> PropertyChanged
Public Event PropertyChanged As Nullable(Of PropertyChangedEventHandler)
diff --git a/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.CollectionChanged.htm b/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.CollectionChanged.htm index 7309645f..47785c11 100644 --- a/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.CollectionChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.CollectionChanged.htm @@ -489,7 +489,7 @@

ReadOnlyObservableCollectionExtendedTortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<NotifyCollectionChangedEventHandler> CollectionChanged
Public Event CollectionChanged As Nullable(Of NotifyCollectionChangedEventHandler)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<NotifyCollectionChangedEventHandler> CollectionChanged
Public Event CollectionChanged As Nullable(Of NotifyCollectionChangedEventHandler)
diff --git a/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.ItemPropertyChanged.htm b/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.ItemPropertyChanged.htm index f81bef71..f33ca0ea 100644 --- a/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.ItemPropertyChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.ItemPropertyChanged.htm @@ -489,7 +489,7 @@

ReadOnlyObservableCollectionExtendedTortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<RelayedEventHandler<PropertyChangedEventArgs>> ItemPropertyChanged
Public Event ItemPropertyChanged As Nullable(Of RelayedEventHandler(Of PropertyChangedEventArgs))
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<RelayedEventHandler<PropertyChangedEventArgs>> ItemPropertyChanged
Public Event ItemPropertyChanged As Nullable(Of RelayedEventHandler(Of PropertyChangedEventArgs))
diff --git a/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.PropertyChanged.htm b/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.PropertyChanged.htm index 78715430..cfc770c9 100644 --- a/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.PropertyChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.PropertyChanged.htm @@ -489,7 +489,7 @@

ReadOnlyObservableCollectionExtendedTortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> PropertyChanged
Public Event PropertyChanged As Nullable(Of PropertyChangedEventHandler)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> PropertyChanged
Public Event PropertyChanged As Nullable(Of PropertyChangedEventHandler)
diff --git a/docs/API/html/E-Tortuga.Anchor.ComponentModel.IValidatable.ErrorsChanged.htm b/docs/API/html/E-Tortuga.Anchor.ComponentModel.IValidatable.ErrorsChanged.htm index 44bcb18a..fcfe1217 100644 --- a/docs/API/html/E-Tortuga.Anchor.ComponentModel.IValidatable.ErrorsChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.ComponentModel.IValidatable.ErrorsChanged.htm @@ -479,7 +479,7 @@

IValidatableTortuga.Anchor.ComponentModel
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


event Nullable<EventHandler<DataErrorsChangedEventArgs>> ErrorsChanged
Event ErrorsChanged As Nullable(Of EventHandler(Of DataErrorsChangedEventArgs))

Remarks


+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


event Nullable<EventHandler<DataErrorsChangedEventArgs>> ErrorsChanged
Event ErrorsChanged As Nullable(Of EventHandler(Of DataErrorsChangedEventArgs))

Remarks


This may be fired even when no actual change has occurred.
diff --git a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.ErrorsChanged.htm b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.ErrorsChanged.htm index 868fc5d2..2f91575f 100644 --- a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.ErrorsChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.ErrorsChanged.htm @@ -485,7 +485,7 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler<DataErrorsChangedEventArgs>> ErrorsChanged
Public Event ErrorsChanged As Nullable(Of EventHandler(Of DataErrorsChangedEventArgs))

Remarks


+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler<DataErrorsChangedEventArgs>> ErrorsChanged
Public Event ErrorsChanged As Nullable(Of EventHandler(Of DataErrorsChangedEventArgs))

Remarks


This may be fired even when no actual change has occurred.
diff --git a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.PropertyChanged.htm b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.PropertyChanged.htm index 42a88395..191db49b 100644 --- a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.PropertyChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.PropertyChanged.htm @@ -485,7 +485,7 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> PropertyChanged
Public Event PropertyChanged As Nullable(Of PropertyChangedEventHandler)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> PropertyChanged
Public Event PropertyChanged As Nullable(Of PropertyChangedEventHandler)

diff --git a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.ErrorsChanged.htm b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.ErrorsChanged.htm index 38beed8f..bf0c8397 100644 --- a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.ErrorsChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.ErrorsChanged.htm @@ -485,7 +485,7 @@

AbstractModelCollectionNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler<DataErrorsChangedEventArgs>> ErrorsChanged
Public Event ErrorsChanged As Nullable(Of EventHandler(Of DataErrorsChangedEventArgs))

Remarks


+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler<DataErrorsChangedEventArgs>> ErrorsChanged
Public Event ErrorsChanged As Nullable(Of EventHandler(Of DataErrorsChangedEventArgs))

Remarks


This may be fired even when no actual change has occurred.
diff --git a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanged.htm b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanged.htm index 15c87e91..31fd6f72 100644 --- a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanged.htm +++ b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanged.htm @@ -491,7 +491,7 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> PropertyChanged
Public Event PropertyChanged As Nullable(Of PropertyChangedEventHandler)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> PropertyChanged
Public Event PropertyChanged As Nullable(Of PropertyChangedEventHandler)

diff --git a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanging.htm b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanging.htm index 35d22b7b..79cbecca 100644 --- a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanging.htm +++ b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.PropertyChanging.htm @@ -491,7 +491,7 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangingEventHandler> PropertyChanging
Public Event PropertyChanging As Nullable(Of PropertyChangingEventHandler)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangingEventHandler> PropertyChanging
Public Event PropertyChanging As Nullable(Of PropertyChangingEventHandler)
diff --git a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateObject.htm b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateObject.htm index da8c555c..16891587 100644 --- a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateObject.htm +++ b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateObject.htm @@ -491,7 +491,7 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler> RevalidateObject
Public Event RevalidateObject As Nullable(Of EventHandler)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<EventHandler> RevalidateObject
Public Event RevalidateObject As Nullable(Of EventHandler)
diff --git a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateProperty.htm b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateProperty.htm index db628df7..952856a5 100644 --- a/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateProperty.htm +++ b/docs/API/html/E-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.RevalidateProperty.htm @@ -491,7 +491,7 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> RevalidateProperty
Public Event RevalidateProperty As Nullable(Of PropertyChangedEventHandler)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public event Nullable<PropertyChangedEventHandler> RevalidateProperty
Public Event RevalidateProperty As Nullable(Of PropertyChangedEventHandler)
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsList--1.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsList--1.htm index a9d0204d..973d587a 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsList--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsList--1.htm @@ -510,14 +510,14 @@

CollectionUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


[NotNullIfNotNullAttribute]
-public static Nullable<IList<T>> AsList<T>(
-	Nullable<IEnumerable<T>> source
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


[NotNullIfNotNullAttribute]
+public static Nullable<IList<T>> AsList<T>(
+	Nullable<IEnumerable<T>> source
 )
-
<NotNullIfNotNullAttribute> _
 Public Shared Function AsList(Of T) ( _
-	source As Nullable(Of IEnumerable(Of T)) _
-) As Nullable(Of IList(Of T))

Type Parameters

T

Parameters

source
Type: Nullable<(Of <(<'IEnumerable<(Of <(<'T>)>)>>)>)>
The source. If the source is null, the result will be null.

Return Value

Returns an IList.

Remarks


+ source As Nullable(Of IEnumerable(Of T)) _ +) As Nullable(Of IList(Of T))

Type Parameters

T

Parameters

source
Type: Nullable<(Of <(<'IEnumerable<(Of <(<'T>)>)>>)>)>
The source. If the source is null, the result will be null.

Return Value

Returns an IList.

Remarks


This is primarily meant to be used with poorly designed interfaces that return lists disguised as IEnumerable.
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyCollection--1.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyCollection--1.htm index 412100e3..ab0bda47 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyCollection--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyCollection--1.htm @@ -510,14 +510,14 @@

CollectionUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


[NotNullIfNotNullAttribute]
-public static Nullable<IReadOnlyCollection<T>> AsReadOnlyCollection<T>(
-	Nullable<IEnumerable<T>> source
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


[NotNullIfNotNullAttribute]
+public static Nullable<IReadOnlyCollection<T>> AsReadOnlyCollection<T>(
+	Nullable<IEnumerable<T>> source
 )
-
<NotNullIfNotNullAttribute> _
 Public Shared Function AsReadOnlyCollection(Of T) ( _
-	source As Nullable(Of IEnumerable(Of T)) _
-) As Nullable(Of IReadOnlyCollection(Of T))

Type Parameters

T

Parameters

source
Type: Nullable<(Of <(<'IEnumerable<(Of <(<'T>)>)>>)>)>
The source. If the source is null, the result will be null.

Return Value

IReadOnlyList<T>.

Remarks


This is meant to be used for legacy codebases that predate IReadOnlyCollection<T>.
+ source As Nullable(Of IEnumerable(Of T)) _ +) As Nullable(Of IReadOnlyCollection(Of T))

Type Parameters

T

Parameters

source
Type: Nullable<(Of <(<'IEnumerable<(Of <(<'T>)>)>>)>)>
The source. If the source is null, the result will be null.

Return Value

IReadOnlyList<T>.

Remarks


This is meant to be used for legacy codebases that predate IReadOnlyCollection<T>.
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyList--1.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyList--1.htm index e464eca8..bc734eb9 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyList--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.AsReadOnlyList--1.htm @@ -510,14 +510,14 @@

CollectionUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


[NotNullIfNotNullAttribute]
-public static Nullable<IReadOnlyList<T>> AsReadOnlyList<T>(
-	Nullable<IEnumerable<T>> source
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


[NotNullIfNotNullAttribute]
+public static Nullable<IReadOnlyList<T>> AsReadOnlyList<T>(
+	Nullable<IEnumerable<T>> source
 )
-
<NotNullIfNotNullAttribute> _
 Public Shared Function AsReadOnlyList(Of T) ( _
-	source As Nullable(Of IEnumerable(Of T)) _
-) As Nullable(Of IReadOnlyList(Of T))

Type Parameters

T

Parameters

source
Type: Nullable<(Of <(<'IEnumerable<(Of <(<'T>)>)>>)>)>
The source. If the source is null, the result will be null.

Return Value

IReadOnlyList<T>.

Remarks


This is meant to be used for legacy codebases that predate IReadOnlyList<T>.
+ source As Nullable(Of IEnumerable(Of T)) _ +) As Nullable(Of IReadOnlyList(Of T))

Type Parameters

T

Parameters

source
Type: Nullable<(Of <(<'IEnumerable<(Of <(<'T>)>)>>)>)>
The source. If the source is null, the result will be null.

Return Value

IReadOnlyList<T>.

Remarks


This is meant to be used for legacy codebases that predate IReadOnlyList<T>.
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.BatchAsLists--1.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.BatchAsLists--1.htm index 5e7bf3a2..7a7b152a 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.BatchAsLists--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.BatchAsLists--1.htm @@ -511,12 +511,12 @@

CollectionUtilitiesAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static IEnumerable<List<T>> BatchAsLists<T>(
 	IEnumerable<T> source,
-	int batchSize
+	int batchSize
 )
 
Public Shared Function BatchAsLists(Of T) ( _
 	source As IEnumerable(Of T), _
-	batchSize As Integer _
-) As IEnumerable(Of List(Of T))

Type Parameters

T

Parameters

source
Type: IEnumerable<(Of <(<'T>)>)>
The source.
batchSize
Type: Int32
Size of the batch.

Return Value

IEnumerable<List<T>>.

Exceptions


ExceptionCondition
[ArgumentNullException]source
[ArgumentOutOfRangeException]batchSize
+ batchSize As Integer _ +) As IEnumerable(Of List(Of T))

Type Parameters

T

Parameters

source
Type: IEnumerable<(Of <(<'T>)>)>
The source.
batchSize
Type: Int32
Size of the batch.

Return Value

IEnumerable<List<T>>.

Exceptions


ExceptionCondition
[ArgumentNullException]source
[ArgumentOutOfRangeException]batchSize
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.BatchAsSegments--1.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.BatchAsSegments--1.htm index 47d52e18..04eb337d 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.BatchAsSegments--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.BatchAsSegments--1.htm @@ -511,12 +511,12 @@

CollectionUtilitiesAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static IEnumerable<ReadOnlyListSegment<T>> BatchAsSegments<T>(
 	IReadOnlyList<T> source,
-	int batchSize
+	int batchSize
 )
 
Public Shared Function BatchAsSegments(Of T) ( _
 	source As IReadOnlyList(Of T), _
-	batchSize As Integer _
-) As IEnumerable(Of ReadOnlyListSegment(Of T))

Type Parameters

T

Parameters

source
Type: IReadOnlyList<(Of <(<'T>)>)>
The source.
batchSize
Type: Int32
Size of the batch.

Return Value

IEnumerable<List<T>>.

Exceptions


ExceptionCondition
[ArgumentNullException]source
[ArgumentOutOfRangeException]batchSize
+ batchSize As Integer _ +) As IEnumerable(Of ReadOnlyListSegment(Of T))

Type Parameters

T

Parameters

source
Type: IReadOnlyList<(Of <(<'T>)>)>
The source.
batchSize
Type: Int32
Size of the batch.

Return Value

IEnumerable<List<T>>.

Exceptions


ExceptionCondition
[ArgumentNullException]source
[ArgumentOutOfRangeException]batchSize
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.IndexOf--1.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.IndexOf--1.htm index 1720f3a9..4d881131 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.IndexOf--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.IndexOf--1.htm @@ -509,14 +509,14 @@

CollectionUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static int IndexOf<T>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static int IndexOf<T>(
 	IReadOnlyList<T> list,
 	T item
 )
 
Public Shared Function IndexOf(Of T) ( _
 	list As IReadOnlyList(Of T), _
 	item As T _
-) As Integer

Type Parameters

T

Parameters

list
Type: IReadOnlyList<(Of <(<'T>)>)>
The list.
item
Type: T
The item.

Return Value

System.Int32.

Exceptions


ExceptionCondition
[ArgumentNullException]list
+) As Integer

Type Parameters

T

Parameters

list
Type: IReadOnlyList<(Of <(<'T>)>)>
The list.
item
Type: T
The item.

Return Value

System.Int32.

Exceptions


ExceptionCondition
[ArgumentNullException]list
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.InsertRange--1.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.InsertRange--1.htm index 7ff5d93d..04408358 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.InsertRange--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.InsertRange--1.htm @@ -511,14 +511,14 @@

CollectionUtilitiesAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static void InsertRange<T>(
 	IList<T> target,
-	int startingIndex,
+	int startingIndex,
 	IEnumerable<T> list
 )
 
Public Shared Sub InsertRange(Of T) ( _
 	target As IList(Of T), _
-	startingIndex As Integer, _
+	startingIndex As Integer, _
 	list As IEnumerable(Of T) _
-)

Type Parameters

T

Parameters

target
Type: IList<(Of <(<'T>)>)>
startingIndex
Type: Int32
list
Type: IEnumerable<(Of <(<'T>)>)>

Remarks


This isn't as fast as a real InsertRange, it just adds one item at a time.
+)

Type Parameters

T

Parameters

target
Type: IList<(Of <(<'T>)>)>
startingIndex
Type: Int32
list
Type: IEnumerable<(Of <(<'T>)>)>

Remarks


This isn't as fast as a real InsertRange, it just adds one item at a time.
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.RemoveRange--1.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.RemoveRange--1.htm index efed0d0f..a53e5b91 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.RemoveRange--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.RemoveRange--1.htm @@ -511,14 +511,14 @@

CollectionUtilitiesAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static void RemoveRange<T>(
 	IList<T> list,
-	int startingIndex,
-	int count
+	int startingIndex,
+	int count
 )
 
Public Shared Sub RemoveRange(Of T) ( _
 	list As IList(Of T), _
-	startingIndex As Integer, _
-	count As Integer _
-)

Type Parameters

T

Parameters

list
Type: IList<(Of <(<'T>)>)>
startingIndex
Type: Int32
count
Type: Int32

Remarks


+ startingIndex As Integer, _ + count As Integer _ +)

Type Parameters

T

Parameters

list
Type: IList<(Of <(<'T>)>)>
startingIndex
Type: Int32
count
Type: Int32

Remarks


This isn't as fast as a real RemoveRange, it just removes one item at a time.
diff --git a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.Sort--1_2.htm b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.Sort--1_2.htm index e29808aa..40ba5e2c 100644 --- a/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.Sort--1_2.htm +++ b/docs/API/html/M-Tortuga.Anchor.CollectionUtilities.Sort--1_2.htm @@ -517,17 +517,17 @@

CollectionUtilitiesAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static void Sort<T>(
 	IList<T> list,
-	int startIndex,
-	int count,
+	int startIndex,
+	int count,
 	IComparer<T> comparer
 )
 where T : IComparable<T>
 
Public Shared Sub Sort(Of T As IComparable(Of T)) ( _
 	list As IList(Of T), _
-	startIndex As Integer, _
-	count As Integer, _
+	startIndex As Integer, _
+	count As Integer, _
 	comparer As IComparer(Of T) _
-)

Type Parameters

T
Type of item in the list

Parameters

list
Type: IList<(Of <(<'T>)>)>
The list to sort.
startIndex
Type: Int32
The start index.
count
Type: Int32
The count.
comparer
Type: IComparer<(Of <(<'T>)>)>
The comparer to use when sorting.

Exceptions


ExceptionCondition
[ArgumentNullException]list or comparer
+)

Type Parameters

T
Type of item in the list

Parameters

list
Type: IList<(Of <(<'T>)>)>
The list to sort.
startIndex
Type: Int32
The start index.
count
Type: Int32
The count.
comparer
Type: IComparer<(Of <(<'T>)>)>
The comparer to use when sorting.

Exceptions


ExceptionCondition
[ArgumentNullException]list or comparer
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_4.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_4.htm index 1aba1745..21552a33 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_4.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_4.htm @@ -492,10 +492,10 @@

Dictionary  Tortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Dictionary(
-	int capacity
+	int capacity
 )
Public Sub New ( _
-	capacity As Integer _
-)

Parameters

capacity
Type: Int32
The capacity.

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]
+ capacity As Integer _ +)

Parameters

capacity
Type: Int32
The capacity.

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_6.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_6.htm index 437da148..b29ddcf6 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_6.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.-ctor_6.htm @@ -492,12 +492,12 @@

Dictionary  Tortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Dictionary(
-	int capacity,
+	int capacity,
 	IEqualityComparer<ValueTuple<TKey1, TKey2>> comparer
 )
Public Sub New ( _
-	capacity As Integer, _
+	capacity As Integer, _
 	comparer As IEqualityComparer(Of ValueTuple(Of TKey1, TKey2)) _
-)

Parameters

capacity
Type: Int32
The capacity.
comparer
Type: IEqualityComparer<(Of <(<'ValueTuple<(Of <(<'TKey1, TKey2>)>)>>)>)>
The comparer.

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]
[ArgumentNullException]
+)

Parameters

capacity
Type: Int32
The capacity.
comparer
Type: IEqualityComparer<(Of <(<'ValueTuple<(Of <(<'TKey1, TKey2>)>)>>)>)>
The comparer.

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]
[ArgumentNullException]
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey.htm index a055cf49..09933ee4 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey.htm @@ -505,11 +505,11 @@

Dictionary Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool ContainsKey(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool ContainsKey(
 	ValueTuple<TKey1, TKey2> key
 )
Public Function ContainsKey ( _
 	key As ValueTuple(Of TKey1, TKey2) _
-) As Boolean

Parameters

key
Type: ValueTuple<(Of <(<'TKey1, TKey2>)>)>
The key to locate in the [IDictionary{TKey,TValue}].

Return Value

+) As Boolean

Parameters

key
Type: ValueTuple<(Of <(<'TKey1, TKey2>)>)>
The key to locate in the [IDictionary{TKey,TValue}].

Return Value

true if the [IDictionary{TKey,TValue}] contains an element with the key; otherwise, false.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey_1.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey_1.htm index 63bb4aef..eb30e770 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.ContainsKey_1.htm @@ -505,13 +505,13 @@

Dictionary Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool ContainsKey(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool ContainsKey(
 	TKey1 key1,
 	TKey2 key2
 )
Public Function ContainsKey ( _
 	key1 As TKey1, _
 	key2 As TKey2 _
-) As Boolean

Parameters

key1
Type: TKey1
The first key.
key2
Type: TKey2
The second key.

Return Value

+) As Boolean

Parameters

key1
Type: TKey1
The first key.
key2
Type: TKey2
The second key.

Return Value

true if the [IDictionary{TKey,TValue}] contains an element with the key; otherwise, false.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.CopyTo.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.CopyTo.htm index 29f462a0..432066cd 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.CopyTo.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.CopyTo.htm @@ -504,11 +504,11 @@

Dictionary Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void CopyTo(
 	KeyValuePair<ValueTuple<TKey1, TKey2>, TValue>[] array,
-	int arrayIndex
+	int arrayIndex
 )
Public Sub CopyTo ( _
 	array As KeyValuePair(Of ValueTuple(Of TKey1, TKey2), TValue)(), _
-	arrayIndex As Integer _
-)

Parameters

array
Type: array<KeyValuePair<(Of <(<'ValueTuple<(Of <(<'TKey1, TKey2>)>)>, TValue>)>)>>[]()[][]
The one-dimensional [Array] that is the destination of the elements copied from [ICollection{T}]. The [Array] must have zero-based indexing.
arrayIndex
Type: Int32
The zero-based index in array at which copying begins.

Exceptions


ExceptionCondition
[ArgumentNullException]array is nullNothingnullptra null reference (Nothing in Visual Basic).
[ArgumentOutOfRangeException]arrayIndex is less than 0.
[ArgumentException]The number of elements in the source [ICollection{T}] is greater than the available space from arrayIndex to the end of the destination array.
+ arrayIndex As Integer _ +)

Parameters

array
Type: array<KeyValuePair<(Of <(<'ValueTuple<(Of <(<'TKey1, TKey2>)>)>, TValue>)>)>>[]()[][]
The one-dimensional [Array] that is the destination of the elements copied from [ICollection{T}]. The [Array] must have zero-based indexing.
arrayIndex
Type: Int32
The zero-based index in array at which copying begins.

Exceptions


ExceptionCondition
[ArgumentNullException]array is nullNothingnullptra null reference (Nothing in Visual Basic).
[ArgumentOutOfRangeException]arrayIndex is less than 0.
[ArgumentException]The number of elements in the source [ICollection{T}] is greater than the available space from arrayIndex to the end of the destination array.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove.htm index bd40c706..71b89250 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove.htm @@ -508,11 +508,11 @@

Dictionary Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Remove(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Remove(
 	ValueTuple<TKey1, TKey2> key
 )
Public Function Remove ( _
 	key As ValueTuple(Of TKey1, TKey2) _
-) As Boolean

Parameters

key
Type: ValueTuple<(Of <(<'TKey1, TKey2>)>)>
+) As Boolean

Parameters

key
Type: ValueTuple<(Of <(<'TKey1, TKey2>)>)>
The key of the element to remove.

Return Value

true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original [IDictionary{TKey,TValue}]. diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove_1.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove_1.htm index fe9b22cc..939553c9 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove_1.htm @@ -508,13 +508,13 @@

Dictionary Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Remove(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Remove(
 	TKey1 key1,
 	TKey2 key2
 )
Public Function Remove ( _
 	key1 As TKey1, _
 	key2 As TKey2 _
-) As Boolean

Parameters

key1
Type: TKey1
The first key.
key2
Type: TKey2
The second key.

Return Value

+) As Boolean

Parameters

key1
Type: TKey1
The first key.
key2
Type: TKey2
The second key.

Return Value

true if the element is successfully removed; otherwise, false. This method also returns false if key1+key2 was not found in the original [IDictionary{TKey,TValue}]

diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove_2.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove_2.htm index 0008aa33..cdc2a87b 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove_2.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.Remove_2.htm @@ -508,11 +508,11 @@

Dictionary Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Remove(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Remove(
 	KeyValuePair<ValueTuple<TKey1, TKey2>, TValue> item
 )
Public Function Remove ( _
 	item As KeyValuePair(Of ValueTuple(Of TKey1, TKey2), TValue) _
-) As Boolean

Parameters

item
Type: KeyValuePair<(Of <(<'ValueTuple<(Of <(<'TKey1, TKey2>)>)>, TValue>)>)>
+) As Boolean

Parameters

item
Type: KeyValuePair<(Of <(<'ValueTuple<(Of <(<'TKey1, TKey2>)>)>, TValue>)>)>
The object to remove from the [ICollection{T}].

Return Value

true if item was successfully removed from the [ICollection{T}]; otherwise, false. This method also returns false if item is not found in the original [ICollection{T}]. diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue.htm index d3e61130..f53da797 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue.htm @@ -505,13 +505,13 @@

Dictionary Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool TryGetValue(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool TryGetValue(
 	ValueTuple<TKey1, TKey2> key,
-	out Nullable<TValue> value
+	out Nullable<TValue> value
 )
Public Function TryGetValue ( _
 	key As ValueTuple(Of TKey1, TKey2), _
-	<OutAttribute> ByRef value As Nullable(Of TValue) _
-) As Boolean

Parameters

key
Type: ValueTuple<(Of <(<'TKey1, TKey2>)>)>
The key whose value to get.
value
Type: Nullable<(Of <(<'TValue>)>)>%
When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

+ <OutAttribute> ByRef value As Nullable(Of TValue) _ +) As Boolean

Parameters

key
Type: ValueTuple<(Of <(<'TKey1, TKey2>)>)>
The key whose value to get.
value
Type: Nullable<(Of <(<'TValue>)>)>%
When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

true if the object that implements [IDictionary{TKey,TValue}] contains an element with the specified key; otherwise, false.

diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue_1.htm b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue_1.htm index 1b9b0215..a11ce6d0 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.Dictionary-3.TryGetValue_1.htm @@ -505,15 +505,15 @@

Dictionary Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool TryGetValue(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool TryGetValue(
 	TKey1 key1,
 	TKey2 key2,
-	out Nullable<TValue> value
+	out Nullable<TValue> value
 )
Public Function TryGetValue ( _
 	key1 As TKey1, _
 	key2 As TKey2, _
-	<OutAttribute> ByRef value As Nullable(Of TValue) _
-) As Boolean

Parameters

key1
Type: TKey1
The first key.
key2
Type: TKey2
The second key.
value
Type: Nullable<(Of <(<'TValue>)>)>%
When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

true if the object that implements [IDictionary{TKey,TValue}] contains an element with the specified key; otherwise, false.
+ <OutAttribute> ByRef value As Nullable(Of TValue) _ +) As Boolean

Parameters

key1
Type: TKey1
The first key.
key2
Type: TKey2
The second key.
value
Type: Nullable<(Of <(<'TValue>)>)>%
When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

true if the object that implements [IDictionary{TKey,TValue}] contains an element with the specified key; otherwise, false.

diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.InsertItem.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.InsertItem.htm index fe7cf889..ab67dbee 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.InsertItem.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.InsertItem.htm @@ -518,12 +518,12 @@

ObservableCollectionExtendedTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void InsertItem(
-	int index,
+	int index,
 	T item
 )
Protected Sub InsertItem ( _
-	index As Integer, _
+	index As Integer, _
 	item As T _
-)

Parameters

index
Type: Int32
The zero-based index at which item should be inserted.
item
Type: T
The object to insert.

Remarks


Do NOT invoke this method directly. This may be overridden to provide additional validation before an item is added to the collection.
+)

Parameters

index
Type: Int32
The zero-based index at which item should be inserted.
item
Type: T
The object to insert.

Remarks


Do NOT invoke this method directly. This may be overridden to provide additional validation before an item is added to the collection.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnPropertyChanged.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnPropertyChanged.htm index 72784aa9..9dc2e599 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnPropertyChanged.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.OnPropertyChanged.htm @@ -518,10 +518,10 @@

ObservableCollectionExtendedTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void OnPropertyChanged(
-	string propertyName
+	string propertyName
 )
Protected Sub OnPropertyChanged ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String
+ propertyName As String _ +)

Parameters

propertyName
Type: String
Property that is being changed.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveAll.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveAll.htm index 9eaec4ce..ffff01ee 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveAll.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveAll.htm @@ -517,11 +517,11 @@

ObservableCollectionExtendedNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int RemoveAll(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int RemoveAll(
 	Predicate<T> match
 )
Public Function RemoveAll ( _
 	match As Predicate(Of T) _
-) As Integer

Parameters

match
Type: Predicate<(Of <(<'T>)>)>
The System.Predicate`1 delegate that defines the conditions of the elements to remove.

Return Value

The number of elements removed.
+) As Integer

Parameters

match
Type: Predicate<(Of <(<'T>)>)>
The System.Predicate`1 delegate that defines the conditions of the elements to remove.

Return Value

The number of elements removed.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveItem.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveItem.htm index 96c30ae4..5becd32b 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveItem.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.RemoveItem.htm @@ -518,10 +518,10 @@

ObservableCollectionExtendedTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void RemoveItem(
-	int index
+	int index
 )
Protected Sub RemoveItem ( _
-	index As Integer _
-)

Parameters

index
Type: Int32
+ index As Integer _ +)

Parameters

index
Type: Int32
The zero-based index of the element to remove.

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]index is less than zero -or-index is equal to or greater than [Collection{T}.Count].

Remarks


Do NOT invoke this method directly. This may be overridden to provide additional validation before an item is removed to the collection.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.SetItem.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.SetItem.htm index e96fae7d..cbf1a1d3 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.SetItem.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.SetItem.htm @@ -518,12 +518,12 @@

ObservableCollectionExtendedTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void SetItem(
-	int index,
+	int index,
 	T item
 )
Protected Sub SetItem ( _
-	index As Integer, _
+	index As Integer, _
 	item As T _
-)

Parameters

index
Type: Int32
The zero-based index of the element to replace.
item
Type: T
The new value for the element at the specified index.

Remarks


Do NOT invoke this method directly. This may be overridden to provide additional validation before an item is added to the collection.
+)

Parameters

index
Type: Int32
The zero-based index of the element to replace.
item
Type: T
The new value for the element at the specified index.

Remarks


Do NOT invoke this method directly. This may be overridden to provide additional validation before an item is added to the collection.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor_1.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor_1.htm index ec73795e..4de116aa 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.-ctor_1.htm @@ -483,13 +483,13 @@

ReadOnlyListSegmentAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyListSegment(
 	IReadOnlyList<T> list,
-	int offset,
-	int count
+	int offset,
+	int count
 )
Public Sub New ( _
 	list As IReadOnlyList(Of T), _
-	offset As Integer, _
-	count As Integer _
-)

Parameters

list
Type: IReadOnlyList<(Of <(<'T>)>)>
The list.
offset
Type: Int32
The offset.
count
Type: Int32
The count.

Exceptions


ExceptionCondition
[ArgumentNullException]list
[ArgumentOutOfRangeException] + offset As Integer, _ + count As Integer _ +)

Parameters

list
Type: IReadOnlyList<(Of <(<'T>)>)>
The list.
offset
Type: Int32
The offset.
count
Type: Int32
The count.

Exceptions


ExceptionCondition
[ArgumentNullException]list
[ArgumentOutOfRangeException] offset or count diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Contains.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Contains.htm index 8fe500f1..db03dc07 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Contains.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Contains.htm @@ -504,11 +504,11 @@

ReadOnlyListSegmentNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
 	T item
 )
Public Function Contains ( _
 	item As T _
-) As Boolean

Parameters

item
Type: T
The object to locate in the list segment.
+) As Boolean

Parameters

item
Type: T
The object to locate in the list segment.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo_1.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo_1.htm index c5646cc5..d83b8d64 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.CopyTo_1.htm @@ -507,11 +507,11 @@

ReadOnlyListSegmentAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void CopyTo(
 	T[] array,
-	int arrayIndex
+	int arrayIndex
 )
Public Sub CopyTo ( _
 	array As T(), _
-	arrayIndex As Integer _
-)

Parameters

array
Type: array<T>[]()[][]
The destination.
arrayIndex
Type: Int32
Index of the destination.
+ arrayIndex As Integer _ +)

Parameters

array
Type: array<T>[]()[][]
The destination.
arrayIndex
Type: Int32
Index of the destination.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.MoveNext.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.MoveNext.htm index f9b32a54..d95b5cb4 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.MoveNext.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Enumerator.MoveNext.htm @@ -475,7 +475,7 @@

Enumerator Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool MoveNext()
Public Function MoveNext As Boolean

Return Value

trueTruetruetrue (True in Visual Basic) if the enumerator was successfully advanced to the next element; falseFalsefalsefalse (False in Visual Basic) if the enumerator has passed the end of the collection.
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool MoveNext()
Public Function MoveNext As Boolean

Return Value

trueTruetruetrue (True in Visual Basic) if the enumerator was successfully advanced to the next element; falseFalsefalsefalse (False in Visual Basic) if the enumerator has passed the end of the collection.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals.htm index b65311ab..2b655e2a 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals.htm @@ -505,11 +505,11 @@

ReadOnlyListSegmentNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
-	Nullable<Object> obj
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
+	Nullable<Object> obj
 )
Public Function Equals ( _
-	obj As Nullable(Of Object) _
-) As Boolean

Parameters

obj
Type: Nullable<(Of <(<'Object>)>)>
The object to compare with the current instance.

Return Value

true if the specified [System.Object] is equal to this instance; otherwise, false.
+ obj As Nullable(Of Object) _ +) As Boolean

Parameters

obj
Type: Nullable<(Of <(<'Object>)>)>
The object to compare with the current instance.

Return Value

true if the specified [System.Object] is equal to this instance; otherwise, false.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals_1.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals_1.htm index f2062933..98c5cf29 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Equals_1.htm @@ -505,11 +505,11 @@

ReadOnlyListSegmentNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
 	ReadOnlyListSegment<T> other
 )
Public Function Equals ( _
 	other As ReadOnlyListSegment(Of T) _
-) As Boolean

Parameters

other
Type: Tortuga.Anchor.Collections..::..ReadOnlyListSegment<(Of <(<'T>)>)>
The other segment.

Return Value

System.Boolean.
+) As Boolean

Parameters

other
Type: Tortuga.Anchor.Collections..::..ReadOnlyListSegment<(Of <(<'T>)>)>
The other segment.

Return Value

System.Boolean.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.GetHashCode.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.GetHashCode.htm index 3473106d..14a47446 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.GetHashCode.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.GetHashCode.htm @@ -504,7 +504,7 @@

ReadOnlyListSegmentNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int GetHashCode()
Public Function GetHashCode As Integer

Return Value

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int GetHashCode()
Public Function GetHashCode As Integer

Return Value

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice.htm index 779c89fe..e261d117 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice.htm @@ -506,10 +506,10 @@

ReadOnlyListSegmentTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyListSegment<T> Slice(
-	int index
+	int index
 )
Public Function Slice ( _
-	index As Integer _
-) As ReadOnlyListSegment(Of T)

Parameters

index
Type: Int32
The index.

Return Value

ReadOnlyListSegment<T>.
+ index As Integer _ +) As ReadOnlyListSegment(Of T)

Parameters

index
Type: Int32
The index.

Return Value

ReadOnlyListSegment<T>. diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice_1.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice_1.htm index c69b30ca..d8648722 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Slice_1.htm @@ -506,12 +506,12 @@

ReadOnlyListSegmentTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyListSegment<T> Slice(
-	int index,
-	int count
+	int index,
+	int count
 )
Public Function Slice ( _
-	index As Integer, _
-	count As Integer _
-) As ReadOnlyListSegment(Of T)

Parameters

index
Type: Int32
The index.
count
Type: Int32
The count.

Return Value

ReadOnlyListSegment<T>.
+ index As Integer, _ + count As Integer _ +) As ReadOnlyListSegment(Of T)

Parameters

index
Type: Int32
The index.
count
Type: Int32
The count.

Return Value

ReadOnlyListSegment<T>. diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Equality.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Equality.htm index 6e1a3c37..b8d22628 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Equality.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Equality.htm @@ -492,13 +492,13 @@

ReadOnlyListSegmentNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool operator ==(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool operator ==(
 	ReadOnlyListSegment<T> a,
 	ReadOnlyListSegment<T> b
 )
Public Shared Operator = ( _
 	a As ReadOnlyListSegment(Of T), _
 	b As ReadOnlyListSegment(Of T) _
-) As Boolean

Return Value

The result of the operator.
+) As Boolean

Return Value

The result of the operator.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Inequality.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Inequality.htm index 371edd02..8e17cfd9 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Inequality.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.op_Inequality.htm @@ -492,13 +492,13 @@

ReadOnlyListSegmentNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool operator !=(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool operator !=(
 	ReadOnlyListSegment<T> a,
 	ReadOnlyListSegment<T> b
 )
Public Shared Operator <> ( _
 	a As ReadOnlyListSegment(Of T), _
 	b As ReadOnlyListSegment(Of T) _
-) As Boolean

Return Value

The result of the operator.
+) As Boolean

Return Value

The result of the operator.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged.htm index 943374a1..4c4cf886 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnPropertyChanged.htm @@ -502,10 +502,10 @@

ReadOnlyObservableCollectionExtendedTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void OnPropertyChanged(
-	string propertyName
+	string propertyName
 )
Protected Sub OnPropertyChanged ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String
Arguments of the event being raised.
+ propertyName As String _ +)

Parameters

propertyName
Type: String
Arguments of the event being raised.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnSourcePropertyChanged.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnSourcePropertyChanged.htm index 54234756..b3aa71fb 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnSourcePropertyChanged.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReadOnlyObservableCollectionExtended-1.OnSourcePropertyChanged.htm @@ -495,10 +495,10 @@

ReadOnlyObservableCollectionExtendedTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected virtual void OnSourcePropertyChanged(
-	string propertyName
+	string propertyName
 )
Protected Overridable Sub OnSourcePropertyChanged ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String

Remarks


+ propertyName As String _ +)

Parameters

propertyName
Type: String

Remarks


This will not forward the properties "Count" and "Item[]".
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.Equals.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.Equals.htm index 5977623c..91aec26b 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.Equals.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.Equals.htm @@ -471,13 +471,13 @@

ReversibleEqualityComparer< Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
 	ValueTuple<T, T> x,
 	ValueTuple<T, T> y
 )
Public Function Equals ( _
 	x As ValueTuple(Of T, T), _
 	y As ValueTuple(Of T, T) _
-) As Boolean

Parameters

x
Type: ValueTuple<(Of <(<'T, T>)>)>
The first object of type to compare.
y
Type: ValueTuple<(Of <(<'T, T>)>)>
The second object of type to compare.

Return Value

trueTruetruetrue (True in Visual Basic) if the specified objects are equal; otherwise, falseFalsefalsefalse (False in Visual Basic).
+) As Boolean

Parameters

x
Type: ValueTuple<(Of <(<'T, T>)>)>
The first object of type to compare.
y
Type: ValueTuple<(Of <(<'T, T>)>)>
The second object of type to compare.

Return Value

trueTruetruetrue (True in Visual Basic) if the specified objects are equal; otherwise, falseFalsefalsefalse (False in Visual Basic).
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.GetHashCode.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.GetHashCode.htm index 79d2f289..b59772b1 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.GetHashCode.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleEqualityComparer-1.GetHashCode.htm @@ -471,11 +471,11 @@

ReversibleEqualityComparer< Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int GetHashCode(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int GetHashCode(
 	ValueTuple<T, T> obj
 )
Public Function GetHashCode ( _
 	obj As ValueTuple(Of T, T) _
-) As Integer

Parameters

obj
Type: ValueTuple<(Of <(<'T, T>)>)>
The value for which a hash code is to be returned.

Return Value

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+) As Integer

Parameters

obj
Type: ValueTuple<(Of <(<'T, T>)>)>
The value for which a hash code is to be returned.

Return Value

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.Equals.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.Equals.htm index 4cdbc089..2bb9011f 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.Equals.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.Equals.htm @@ -478,13 +478,13 @@

ReversibleStringEqualityComparerTortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
-	ValueTuple<string, string> x,
-	ValueTuple<string, string> y
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
+	ValueTuple<string, string> x,
+	ValueTuple<string, string> y
 )
Public Function Equals ( _
-	x As ValueTuple(Of String, String), _
-	y As ValueTuple(Of String, String) _
-) As Boolean

Parameters

x
Type: ValueTuple<(Of <(<'String, String>)>)>
The first object of type to compare.
y
Type: ValueTuple<(Of <(<'String, String>)>)>
The second object of type to compare.

Return Value

trueTruetruetrue (True in Visual Basic) if the specified objects are equal; otherwise, falseFalsefalsefalse (False in Visual Basic).
+ x As ValueTuple(Of String, String), _ + y As ValueTuple(Of String, String) _ +) As Boolean

Parameters

x
Type: ValueTuple<(Of <(<'String, String>)>)>
The first object of type to compare.
y
Type: ValueTuple<(Of <(<'String, String>)>)>
The second object of type to compare.

Return Value

trueTruetruetrue (True in Visual Basic) if the specified objects are equal; otherwise, falseFalsefalsefalse (False in Visual Basic).
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.GetHashCode.htm b/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.GetHashCode.htm index e2ad0a08..db593261 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.GetHashCode.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.ReversibleStringEqualityComparer.GetHashCode.htm @@ -478,11 +478,11 @@

ReversibleStringEqualityComparerTortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int GetHashCode(
-	ValueTuple<string, string> obj
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int GetHashCode(
+	ValueTuple<string, string> obj
 )
Public Function GetHashCode ( _
-	obj As ValueTuple(Of String, String) _
-) As Integer

Parameters

obj
Type: ValueTuple<(Of <(<'String, String>)>)>
The value for which a hash code is to be returned.

Return Value

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+ obj As ValueTuple(Of String, String) _ +) As Integer

Parameters

obj
Type: ValueTuple<(Of <(<'String, String>)>)>
The value for which a hash code is to be returned.

Return Value

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Contains.htm b/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Contains.htm index e3f6aec6..7fa5284f 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Contains.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Contains.htm @@ -494,11 +494,11 @@

WeakReferenceCollectionNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
 	T item
 )
Public Function Contains ( _
 	item As T _
-) As Boolean

Parameters

item
Type: T

Return Value

+) As Boolean

Parameters

item
Type: T

Return Value

diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.CopyTo.htm b/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.CopyTo.htm index f6313316..43f52d19 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.CopyTo.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.CopyTo.htm @@ -496,11 +496,11 @@

WeakReferenceCollectionAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void CopyTo(
 	T[] array,
-	int arrayIndex
+	int arrayIndex
 )
Public Sub CopyTo ( _
 	array As T(), _
-	arrayIndex As Integer _
-)

Parameters

array
Type: array<T>[]()[][]
The one-dimensional [Array] that is the destination of the elements copied from [ICollection{T}]. The [Array] must have zero-based indexing.
arrayIndex
Type: Int32
The zero-based index in array at which copying begins.

Exceptions


ExceptionCondition
[ArgumentNullException]array - array is null
[ArgumentOutOfRangeException] + arrayIndex As Integer _ +)

Parameters

array
Type: array<T>[]()[][]
The one-dimensional [Array] that is the destination of the elements copied from [ICollection{T}]. The [Array] must have zero-based indexing.
arrayIndex
Type: Int32
The zero-based index in array at which copying begins.

Exceptions


ExceptionCondition
[ArgumentNullException]array - array is null
[ArgumentOutOfRangeException] arrayIndex or arrayIndex diff --git a/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Remove.htm b/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Remove.htm index 915c0d8f..bcbe6703 100644 --- a/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Remove.htm +++ b/docs/API/html/M-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Remove.htm @@ -494,11 +494,11 @@

WeakReferenceCollectionNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Remove(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Remove(
 	T item
 )
Public Function Remove ( _
 	item As T _
-) As Boolean

Parameters

item
Type: T
The object to remove from the [ICollection{T}].

Return Value

Returns true if the collection previously contained the item

Exceptions


ExceptionCondition
[ArgumentNullException]item

Remarks


If an item appears more than once only the first instance will be removed.
+) As Boolean

Parameters

item
Type: T
The object to remove from the [ICollection{T}].

Return Value

Returns true if the collection previously contained the item

Exceptions


ExceptionCondition
[ArgumentNullException]item

Remarks


If an item appears more than once only the first instance will be removed.
diff --git a/docs/API/html/M-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.GetPreviousValue.htm b/docs/API/html/M-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.GetPreviousValue.htm index ec2794c7..acf49661 100644 --- a/docs/API/html/M-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.GetPreviousValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.ComponentModel.IDetailedPropertyChangeTracking.GetPreviousValue.htm @@ -467,11 +467,11 @@

IDetailedPropertyChangeTrackingTortuga.Anchor.ComponentModel
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


Nullable<Object> GetPreviousValue(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


Nullable<Object> GetPreviousValue(
+	string propertyName
 )
Function GetPreviousValue ( _
-	propertyName As String _
-) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property.

Return Value

System.Object.
+ propertyName As String _ +) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property.

Return Value

System.Object.
diff --git a/docs/API/html/M-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.ChangedProperties.htm b/docs/API/html/M-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.ChangedProperties.htm index 2c3db8d6..4c6124f3 100644 --- a/docs/API/html/M-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.ChangedProperties.htm +++ b/docs/API/html/M-Tortuga.Anchor.ComponentModel.IPropertyChangeTracking.ChangedProperties.htm @@ -467,7 +467,7 @@

IPropertyChangeTrackingNamespace:  Tortuga.Anchor.ComponentModel
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


IReadOnlyList<string> ChangedProperties()
Function ChangedProperties As IReadOnlyList(Of String)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


IReadOnlyList<string> ChangedProperties()
Function ChangedProperties As IReadOnlyList(Of String)
diff --git a/docs/API/html/M-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors_1.htm b/docs/API/html/M-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors_1.htm index 213bb1ac..a9277538 100644 --- a/docs/API/html/M-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.ComponentModel.IValidatable.GetErrors_1.htm @@ -491,10 +491,10 @@

IValidatableTortuga.Anchor.ComponentModel
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


ReadOnlyCollection<ValidationResult> GetErrors(
-	string propertyName
+	string propertyName
 )
Function GetErrors ( _
-	propertyName As String _
-) As ReadOnlyCollection(Of ValidationResult)

Parameters

propertyName
Type: String
Null or String.Empty will return the object-level errors

Return Value

Remarks


+ propertyName As String _ +) As ReadOnlyCollection(Of ValidationResult)

Parameters

propertyName
Type: String
Null or String.Empty will return the object-level errors

Return Value

Remarks


Call Validate() to refresh this property.
diff --git a/docs/API/html/M-Tortuga.Anchor.ComponentModel.IValidatable.Validate.htm b/docs/API/html/M-Tortuga.Anchor.ComponentModel.IValidatable.Validate.htm index 59250a9e..503c6257 100644 --- a/docs/API/html/M-Tortuga.Anchor.ComponentModel.IValidatable.Validate.htm +++ b/docs/API/html/M-Tortuga.Anchor.ComponentModel.IValidatable.Validate.htm @@ -488,7 +488,7 @@

IValidatableTortuga.Anchor.ComponentModel
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


bool Validate()
Function Validate As Boolean

Return Value

+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


bool Validate()
Function Validate As Boolean

Return Value

True if the object has no errors
diff --git a/docs/API/html/M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.Add.htm b/docs/API/html/M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.Add.htm index 8d17469a..6c5e4769 100644 --- a/docs/API/html/M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.Add.htm +++ b/docs/API/html/M-Tortuga.Anchor.DataAnnotations.ValidationResultCollection.Add.htm @@ -473,12 +473,12 @@

ValidationResultCollection<  Tortuga.Anchor.DataAnnotations
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ValidationResult Add(
-	string errorMessage,
-	params Nullable<string>[] memberNames
+	string errorMessage,
+	params Nullable<string>[] memberNames
 )
Public Function Add ( _
-	errorMessage As String, _
-	ParamArray memberNames As Nullable(Of String)() _
-) As ValidationResult

Parameters

errorMessage
Type: String
The error message.
memberNames
Type: array<Nullable<(Of <(<'String>)>)>>[]()[][]
The member names.

Return Value

ValidationResult.

Exceptions


ExceptionCondition
[ArgumentException]errorMessage
+ errorMessage As String, _ + ParamArray memberNames As Nullable(Of String)() _ +) As ValidationResult

Parameters

errorMessage
Type: String
The error message.
memberNames
Type: array<Nullable<(Of <(<'String>)>)>>[]()[][]
The member names.

Return Value

ValidationResult.

Exceptions


ExceptionCondition
[ArgumentException]errorMessage
diff --git a/docs/API/html/M-Tortuga.Anchor.Eventing.EventManager-1.EventFired.htm b/docs/API/html/M-Tortuga.Anchor.Eventing.EventManager-1.EventFired.htm index 73a7fd03..0e80cb56 100644 --- a/docs/API/html/M-Tortuga.Anchor.Eventing.EventManager-1.EventFired.htm +++ b/docs/API/html/M-Tortuga.Anchor.Eventing.EventManager-1.EventFired.htm @@ -481,12 +481,12 @@

EventManagerTortuga.Anchor.Eventing
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void EventFired(
-	Nullable<Object> sender,
+	Nullable<Object> sender,
 	T e
 )
Protected Sub EventFired ( _
-	sender As Nullable(Of Object), _
+	sender As Nullable(Of Object), _
 	e As T _
-)

Parameters

sender
Type: Nullable<(Of <(<'Object>)>)>
e
Type: T
+)

Parameters

sender
Type: Nullable<(Of <(<'Object>)>)>
e
Type: T
diff --git a/docs/API/html/M-Tortuga.Anchor.Eventing.IListener-1.Invoke.htm b/docs/API/html/M-Tortuga.Anchor.Eventing.IListener-1.Invoke.htm index 010c10d7..591f4fc3 100644 --- a/docs/API/html/M-Tortuga.Anchor.Eventing.IListener-1.Invoke.htm +++ b/docs/API/html/M-Tortuga.Anchor.Eventing.IListener-1.Invoke.htm @@ -469,12 +469,12 @@

IListener&  Tortuga.Anchor.Eventing
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


void Invoke(
-	Nullable<Object> sender,
+	Nullable<Object> sender,
 	T e
 )
Sub Invoke ( _
-	sender As Nullable(Of Object), _
+	sender As Nullable(Of Object), _
 	e As T _
-)

Parameters

sender
Type: Nullable<(Of <(<'Object>)>)>
e
Type: T
+)

Parameters

sender
Type: Nullable<(Of <(<'Object>)>)>
e
Type: T
diff --git a/docs/API/html/M-Tortuga.Anchor.Eventing.Listener-1.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Eventing.Listener-1.-ctor.htm index b97cb6cf..1d2b474a 100644 --- a/docs/API/html/M-Tortuga.Anchor.Eventing.Listener-1.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Eventing.Listener-1.-ctor.htm @@ -470,10 +470,10 @@

Listener&l  Tortuga.Anchor.Eventing
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Listener(
-	Action<Nullable<Object>, T> eventHandler
+	Action<Nullable<Object>, T> eventHandler
 )
Public Sub New ( _
-	eventHandler As Action(Of Nullable(Of Object), T) _
-)

Parameters

eventHandler
Type: Action<(Of <(<'Nullable<(Of <(<'Object>)>)>, T>)>)>
The event handler.

Exceptions


ExceptionCondition
[ArgumentNullException]eventHandler
+ eventHandler As Action(Of Nullable(Of Object), T) _ +)

Parameters

eventHandler
Type: Action<(Of <(<'Nullable<(Of <(<'Object>)>)>, T>)>)>
The event handler.

Exceptions


ExceptionCondition
[ArgumentNullException]eventHandler
diff --git a/docs/API/html/M-Tortuga.Anchor.Eventing.Listener-1.Invoke.htm b/docs/API/html/M-Tortuga.Anchor.Eventing.Listener-1.Invoke.htm index 56b9f1e3..693a7dc0 100644 --- a/docs/API/html/M-Tortuga.Anchor.Eventing.Listener-1.Invoke.htm +++ b/docs/API/html/M-Tortuga.Anchor.Eventing.Listener-1.Invoke.htm @@ -472,12 +472,12 @@

Listener&l  Tortuga.Anchor.Eventing
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void Invoke(
-	Nullable<Object> sender,
+	Nullable<Object> sender,
 	T e
 )
Public Sub Invoke ( _
-	sender As Nullable(Of Object), _
+	sender As Nullable(Of Object), _
 	e As T _
-)

Parameters

sender
Type: Nullable<(Of <(<'Object>)>)>
e
Type: T
+)

Parameters

sender
Type: Nullable<(Of <(<'Object>)>)>
e
Type: T
diff --git a/docs/API/html/M-Tortuga.Anchor.Eventing.RelayedEventArgs-1.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Eventing.RelayedEventArgs-1.-ctor.htm index 21ae56b0..5f5807eb 100644 --- a/docs/API/html/M-Tortuga.Anchor.Eventing.RelayedEventArgs-1.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Eventing.RelayedEventArgs-1.-ctor.htm @@ -470,12 +470,12 @@

RelayedEventArgsTortuga.Anchor.Eventing
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public RelayedEventArgs(
-	Nullable<Object> originalSender,
+	Nullable<Object> originalSender,
 	T eventArgs
 )
Public Sub New ( _
-	originalSender As Nullable(Of Object), _
+	originalSender As Nullable(Of Object), _
 	eventArgs As T _
-)

Parameters

originalSender
Type: Nullable<(Of <(<'Object>)>)>
The original sender.
eventArgs
Type: T
The event arguments.

Exceptions


ExceptionCondition
[ArgumentNullException]eventArgs
+)

Parameters

originalSender
Type: Nullable<(Of <(<'Object>)>)>
The original sender.
eventArgs
Type: T
The event arguments.

Exceptions


ExceptionCondition
[ArgumentNullException]eventArgs
diff --git a/docs/API/html/M-Tortuga.Anchor.Eventing.RelayedEventArgs.Create--1.htm b/docs/API/html/M-Tortuga.Anchor.Eventing.RelayedEventArgs.Create--1.htm index 8c408601..7902cffd 100644 --- a/docs/API/html/M-Tortuga.Anchor.Eventing.RelayedEventArgs.Create--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Eventing.RelayedEventArgs.Create--1.htm @@ -470,14 +470,14 @@

RelayedEventArgsTortuga.Anchor.Eventing
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static RelayedEventArgs<T> Create<T>(
-	Nullable<Object> originalSender,
+	Nullable<Object> originalSender,
 	T eventArgs
 )
 where T : EventArgs
 
Public Shared Function Create(Of T As EventArgs) ( _
-	originalSender As Nullable(Of Object), _
+	originalSender As Nullable(Of Object), _
 	eventArgs As T _
-) As RelayedEventArgs(Of T)

Type Parameters

T

Parameters

originalSender
Type: Nullable<(Of <(<'Object>)>)>
The original sender.
eventArgs
Type: T
The event arguments.

Return Value

RelayedEventArgs<T>.

Exceptions


ExceptionCondition
[ArgumentNullException]eventArgs
+) As RelayedEventArgs(Of T)

Type Parameters

T

Parameters

originalSender
Type: Nullable<(Of <(<'Object>)>)>
The original sender.
eventArgs
Type: T
The event arguments.

Return Value

RelayedEventArgs<T>.

Exceptions


ExceptionCondition
[ArgumentNullException]eventArgs
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ClassMetadata.ToString.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ClassMetadata.ToString.htm index 6eb766f0..12fe6623 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.ClassMetadata.ToString.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ClassMetadata.ToString.htm @@ -478,7 +478,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string ToString()
Public Function ToString As String

Return Value

+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string ToString()
Public Function ToString As String

Return Value

A string that represents the current object.
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm index 44299b70..0e30a78d 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm @@ -319,6 +319,9 @@ +
@@ -490,11 +493,11 @@

ConstructorMetadataCollectionTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
 	ConstructorMetadata item
 )
Public Function Contains ( _
 	item As ConstructorMetadata _
-) As Boolean

Parameters

item
Type: Tortuga.Anchor.Metadata..::..ConstructorMetadata
The object to locate in the [System.Collections.Generic.ICollection{T}].

Return Value

true if item is found in the [ICollection{T}]; otherwise, false.
+) As Boolean

Parameters

item
Type: Tortuga.Anchor.Metadata..::..ConstructorMetadata
The object to locate in the [System.Collections.Generic.ICollection{T}].

Return Value

true if item is found in the [ICollection{T}]; otherwise, false.

diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_1.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_1.htm index a9780cdb..14091ae1 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_1.htm @@ -319,6 +319,9 @@ +
@@ -490,11 +493,11 @@

ConstructorMetadataCollectionTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
 	IReadOnlyList<Type> signature
 )
Public Function Contains ( _
 	signature As IReadOnlyList(Of Type) _
-) As Boolean

Parameters

signature
Type: IReadOnlyList<(Of <(<'Type>)>)>
The signature.

Return Value

true if [contains] [the specified signature]; otherwise, false.
+) As Boolean

Parameters

signature
Type: IReadOnlyList<(Of <(<'Type>)>)>
The signature.

Return Value

true if [contains] [the specified signature]; otherwise, false.

diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_2.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_2.htm index cecb3591..e756462d 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_2.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains_2.htm @@ -319,6 +319,9 @@ +
@@ -490,11 +493,11 @@

ConstructorMetadataCollectionTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
 	params Type[] signature
 )
Public Function Contains ( _
 	ParamArray signature As Type() _
-) As Boolean

Parameters

signature
Type: array<Type>[]()[][]
The signature.

Return Value

true if [contains] [the specified signature]; otherwise, false.
+) As Boolean

Parameters

signature
Type: array<Type>[]()[][]
The signature.

Return Value

true if [contains] [the specified signature]; otherwise, false.

diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.CopyTo.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.CopyTo.htm index 99a699cd..24c1c1ef 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.CopyTo.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.CopyTo.htm @@ -314,6 +314,9 @@ +
@@ -487,11 +490,11 @@

ConstructorMetadataCollectionTortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void CopyTo(
 	ConstructorMetadata[] array,
-	int arrayIndex
+	int arrayIndex
 )
Public Sub CopyTo ( _
 	array As ConstructorMetadata(), _
-	arrayIndex As Integer _
-)

Parameters

array
Type: array<ConstructorMetadata>[]()[][]
The one-dimensional [Array] that is the destination of the elements copied from [ICollection{T}]. The [Array] must have zero-based indexing.
arrayIndex
Type: Int32
The zero-based index in array at which copying begins.
+ arrayIndex As Integer _ +)

Parameters

array
Type: array<ConstructorMetadata>[]()[][]
The one-dimensional [Array] that is the destination of the elements copied from [ICollection{T}]. The [Array] must have zero-based indexing.
arrayIndex
Type: Int32
The zero-based index in array at which copying begins.
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm index e65faa8a..0f7dc531 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm @@ -316,6 +316,9 @@ +
@@ -487,11 +490,11 @@

ConstructorMetadataCollectionTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<ConstructorMetadata> Find(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<ConstructorMetadata> Find(
 	IReadOnlyList<Type> signature
 )
Public Function Find ( _
 	signature As IReadOnlyList(Of Type) _
-) As Nullable(Of ConstructorMetadata)

Parameters

signature
Type: IReadOnlyList<(Of <(<'Type>)>)>
The signature.

Return Value

true if XXXX, false otherwise.
+) As Nullable(Of ConstructorMetadata)

Parameters

signature
Type: IReadOnlyList<(Of <(<'Type>)>)>
The signature.

Return Value

true if XXXX, false otherwise.

diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find_1.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find_1.htm index 29371131..9ecee4e1 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find_1.htm @@ -316,6 +316,9 @@ +
@@ -487,11 +490,11 @@

ConstructorMetadataCollectionTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<ConstructorMetadata> Find(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<ConstructorMetadata> Find(
 	params Type[] signature
 )
Public Function Find ( _
 	ParamArray signature As Type() _
-) As Nullable(Of ConstructorMetadata)

Parameters

signature
Type: array<Type>[]()[][]
The signature.
+) As Nullable(Of ConstructorMetadata)

Parameters

signature
Type: array<Type>[]()[][]
The signature.

diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.GetEnumerator.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.GetEnumerator.htm index fc2c87af..26a8c440 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.GetEnumerator.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.GetEnumerator.htm @@ -314,6 +314,9 @@ +
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IndexOf.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IndexOf.htm new file mode 100644 index 00000000..de82c52f --- /dev/null +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IndexOf.htm @@ -0,0 +1,517 @@ + + + + + + IndexOf Method + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + +
+ +
+ +
+ +
+ + +
+
+
+
+

+

ConstructorMetadataCollection..::..IndexOf Method

+
+
+
+ Determines the index of a specific item in the collection. />. +
+

+ Namespace: +  Tortuga.Anchor.Metadata
+ Assembly: +  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int IndexOf(
+	ConstructorMetadata item
+)
Public Function IndexOf ( _
+	item As ConstructorMetadata _
+) As Integer

Parameters

item
Type: Tortuga.Anchor.Metadata..::..ConstructorMetadata
The object to locate in the collection />.

Return Value

The index of item if found in the list; otherwise, -1.
+
+
+
+
+ +
+ +
+ + + + \ No newline at end of file diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.MetadataCache.Clone--1.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.MetadataCache.Clone--1.htm index 257ccaf5..f0b5d121 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.MetadataCache.Clone--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.MetadataCache.Clone--1.htm @@ -480,13 +480,13 @@

MetadataCacheTortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static T Clone<T>(
 	T source,
 	CloneOptions options,
-	Nullable<int> maxRecursion
+	Nullable<int> maxRecursion
 )
 
Public Shared Function Clone(Of T) ( _
 	source As T, _
 	options As CloneOptions, _
-	maxRecursion As Nullable(Of Integer) _
-) As T

Type Parameters

T

Parameters

source
Type: T
The source object to copy.
options
Type: Tortuga.Anchor.Metadata..::..CloneOptions
The clone options.
maxRecursion
Type: Nullable<(Of <(<'Int32>)>)>
The maximum recursion. Only applicable when CloneOptions.DeepClone is used.

Return Value

T.

Remarks


This should be used to help create a class's Clone method. It is not intended as a general purpose method and does not cover all possible scenarios.
+ maxRecursion As Nullable(Of Integer) _ +) As T

Type Parameters

T

Parameters

source
Type: T
The source object to copy.
options
Type: Tortuga.Anchor.Metadata..::..CloneOptions
The clone options.
maxRecursion
Type: Nullable<(Of <(<'Int32>)>)>
The maximum recursion. Only applicable when CloneOptions.DeepClone is used.

Return Value

T.

Remarks


This should be used to help create a class's Clone method. It is not intended as a general purpose method and does not cover all possible scenarios.
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.MetadataCache.CloneInto--1.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.MetadataCache.CloneInto--1.htm index 466d82d2..68dead60 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.MetadataCache.CloneInto--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.MetadataCache.CloneInto--1.htm @@ -481,14 +481,14 @@

MetadataCachesource, T target, CloneOptions options, - Nullable<int> maxRecursion + Nullable<int> maxRecursion )
Public Shared Sub CloneInto(Of T) ( _
 	source As T, _
 	target As T, _
 	options As CloneOptions, _
-	maxRecursion As Nullable(Of Integer) _
-)

Type Parameters

T

Parameters

source
Type: T
The source object to copy.
target
Type: T
The target.
options
Type: Tortuga.Anchor.Metadata..::..CloneOptions
The clone options.
maxRecursion
Type: Nullable<(Of <(<'Int32>)>)>
The maximum recursion. Only applicable when CloneOptions.DeepClone is used.

Return Value

T.

Remarks


This should be used to help create a class's Clone method. It is not intended as a general purpose method and does not cover all possible scenarios.
+ maxRecursion As Nullable(Of Integer) _ +)

Type Parameters

T

Parameters

source
Type: T
The source object to copy.
target
Type: T
The target.
options
Type: Tortuga.Anchor.Metadata..::..CloneOptions
The clone options.
maxRecursion
Type: Nullable<(Of <(<'Int32>)>)>
The maximum recursion. Only applicable when CloneOptions.DeepClone is used.

Return Value

T.

Remarks


This should be used to help create a class's Clone method. It is not intended as a general purpose method and does not cover all possible scenarios.
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet.htm index 5519401a..94ffc6c8 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet.htm @@ -491,11 +491,11 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> InvokeGet(
-	Object target
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> InvokeGet(
+	Object target
 )
Public Function InvokeGet ( _
-	target As Object _
-) As Nullable(Of Object)

Parameters

target
Type: Object
The target.

Return Value

System.Object.

Exceptions


ExceptionCondition
[ArgumentException]Error getting property " + Name
[InvalidOperationException]CanRead and CanReadRestricted is false on property {Name}.
+ target As Object _ +) As Nullable(Of Object)

Parameters

target
Type: Object
The target.

Return Value

System.Object.

Exceptions


ExceptionCondition
[ArgumentException]Error getting property " + Name
[InvalidOperationException]CanRead and CanReadRestricted is false on property {Name}.
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet_1.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet_1.htm index dbfe8eeb..53eed160 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeGet_1.htm @@ -491,13 +491,13 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> InvokeGet(
-	Object target,
-	Nullable<Object> index
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> InvokeGet(
+	Object target,
+	Nullable<Object> index
 )
Public Function InvokeGet ( _
-	target As Object, _
-	index As Nullable(Of Object) _
-) As Nullable(Of Object)

Parameters

target
Type: Object
The target.
index
Type: Nullable<(Of <(<'Object>)>)>
The index.

Return Value

System.Object.

Exceptions


ExceptionCondition
[System.ArgumentException]Error getting property " + Name
[System.InvalidOperationException]CanReadIndexed and CanReadIndexedRestrictedis false on property {Name}.
+ target As Object, _ + index As Nullable(Of Object) _ +) As Nullable(Of Object)

Parameters

target
Type: Object
The target.
index
Type: Nullable<(Of <(<'Object>)>)>
The index.

Return Value

System.Object.

Exceptions


ExceptionCondition
[System.ArgumentException]Error getting property " + Name
[System.InvalidOperationException]CanReadIndexed and CanReadIndexedRestrictedis false on property {Name}.
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet.htm index ef7b1fa5..0c935689 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet.htm @@ -492,12 +492,12 @@

PropertyMetadataTortuga.Anchor.Metadata
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void InvokeSet(
-	Object target,
-	Nullable<Object> value
+	Object target,
+	Nullable<Object> value
 )
Public Sub InvokeSet ( _
-	target As Object, _
-	value As Nullable(Of Object) _
-)

Parameters

target
Type: Object
The target.
value
Type: Nullable<(Of <(<'Object>)>)>
The value.

Return Value

System.Object.

Exceptions


ExceptionCondition
[ArgumentException]Error setting property " + Name
[InvalidOperationException]CanWrite and CanWriteRestricted is false for property {Name}
+ target As Object, _ + value As Nullable(Of Object) _ +)

Parameters

target
Type: Object
The target.
value
Type: Nullable<(Of <(<'Object>)>)>
The value.

Return Value

System.Object.

Exceptions


ExceptionCondition
[ArgumentException]Error setting property " + Name
[InvalidOperationException]CanWrite and CanWriteRestricted is false for property {Name}
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet_1.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet_1.htm index 792ff3df..d26814b8 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadata.InvokeSet_1.htm @@ -492,14 +492,14 @@

PropertyMetadataTortuga.Anchor.Metadata
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void InvokeSet(
-	Object target,
-	Nullable<Object> index,
-	Nullable<Object> value
+	Object target,
+	Nullable<Object> index,
+	Nullable<Object> value
 )
Public Sub InvokeSet ( _
-	target As Object, _
-	index As Nullable(Of Object), _
-	value As Nullable(Of Object) _
-)

Parameters

target
Type: Object
The target.
index
Type: Nullable<(Of <(<'Object>)>)>
The index.
value
Type: Nullable<(Of <(<'Object>)>)>
The value.

Return Value

System.Object.

Exceptions


ExceptionCondition
[System.ArgumentException]Error setting property " + Name
[System.InvalidOperationException]CanWriteIndexed and CanWriteIndexedRestricted is false for property {Name}
+ target As Object, _ + index As Nullable(Of Object), _ + value As Nullable(Of Object) _ +)

Parameters

target
Type: Object
The target.
index
Type: Nullable<(Of <(<'Object>)>)>
The index.
value
Type: Nullable<(Of <(<'Object>)>)>
The value.

Return Value

System.Object.

Exceptions


ExceptionCondition
[System.ArgumentException]Error setting property " + Name
[System.InvalidOperationException]CanWriteIndexed and CanWriteIndexedRestricted is false for property {Name}
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains.htm index e64423d7..aaa8fb49 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains.htm @@ -485,11 +485,11 @@

PropertyMetadataCollection< Namespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
 	PropertyMetadata item
 )
Public Function Contains ( _
 	item As PropertyMetadata _
-) As Boolean

Parameters

item
Type: Tortuga.Anchor.Metadata..::..PropertyMetadata
item to look for

Return Value

trueTruetruetrue (True in Visual Basic) if item is found in the [ICollection{T}]; otherwise, falseFalsefalsefalse (False in Visual Basic). +) As Boolean

Parameters

item
Type: Tortuga.Anchor.Metadata..::..PropertyMetadata
item to look for

Return Value

trueTruetruetrue (True in Visual Basic) if item is found in the [ICollection{T}]; otherwise, falseFalsefalsefalse (False in Visual Basic).

Exceptions


ExceptionCondition
[ArgumentNullException]item
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains_1.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains_1.htm index ae1c3bea..a798ea0f 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Contains_1.htm @@ -485,11 +485,11 @@

PropertyMetadataCollection< Namespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Contains(
+	string propertyName
 )
Public Function Contains ( _
-	propertyName As String _
-) As Boolean

Parameters

propertyName
Type: String
case insensitive property name

Return Value

true if contains the specified property name; otherwise, false.

Exceptions


ExceptionCondition
[ArgumentException]propertyName
+ propertyName As String _ +) As Boolean

Parameters

propertyName
Type: String
case insensitive property name

Return Value

true if contains the specified property name; otherwise, false.

Exceptions


ExceptionCondition
[ArgumentException]propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.CopyTo.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.CopyTo.htm index 1acf5881..584f1d39 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.CopyTo.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.CopyTo.htm @@ -485,13 +485,13 @@

PropertyMetadataCollection< Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void CopyTo(
 	PropertyMetadata[] array,
-	int arrayIndex
+	int arrayIndex
 )
Public Sub CopyTo ( _
 	array As PropertyMetadata(), _
-	arrayIndex As Integer _
+	arrayIndex As Integer _
 )

Parameters

array
Type: array<PropertyMetadata>[]()[][]
The one-dimensional System.Array that is the destination of the elements -
arrayIndex
Type: Int32
The zero-based index in array at which copying begins.

Exceptions


ExceptionCondition
[ArgumentNullException]array
[ArgumentOutOfRangeException]arrayIndex
+
arrayIndex
Type: Int32
The zero-based index in array at which copying begins.

Exceptions


ExceptionCondition
[ArgumentNullException]array
[ArgumentOutOfRangeException]arrayIndex
diff --git a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.TryGetValue.htm b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.TryGetValue.htm index 56c4387f..fa782d3c 100644 --- a/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.TryGetValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.Metadata.PropertyMetadataCollection.TryGetValue.htm @@ -484,13 +484,13 @@

PropertyMetadataCollection< Namespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool TryGetValue(
-	string propertyName,
-	out Nullable<PropertyMetadata> value
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool TryGetValue(
+	string propertyName,
+	out Nullable<PropertyMetadata> value
 )
Public Function TryGetValue ( _
-	propertyName As String, _
-	<OutAttribute> ByRef value As Nullable(Of PropertyMetadata) _
-) As Boolean

Parameters

propertyName
Type: String
case insensitive property name
value
Type: Nullable<(Of <(<'PropertyMetadata>)>)>%
The value.

Exceptions


ExceptionCondition
[ArgumentException]propertyName
+ propertyName As String, _ + <OutAttribute> ByRef value As Nullable(Of PropertyMetadata) _ +) As Boolean

Parameters

propertyName
Type: String
case insensitive property name
value
Type: Nullable<(Of <(<'PropertyMetadata>)>)>%
The value.

Exceptions


ExceptionCondition
[ArgumentException]propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.-ctor.htm index 3432eafa..b36690bd 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.-ctor.htm @@ -469,10 +469,10 @@

CalculatedFieldAttribute Constructor

 Tortuga.Anchor.Modeling
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public CalculatedFieldAttribute(
-	string sources
+	string sources
 )
Public Sub New ( _
-	sources As String _
-)

Parameters

sources
Type: String
Comma separated list of properties that, when changed, invalidate this property. Whitespace will be trimmed.

Exceptions


ExceptionCondition
[ArgumentException]sources
+ sources As String _ +)

Parameters

sources
Type: String
Comma separated list of properties that, when changed, invalidate this property. Whitespace will be trimmed.

Exceptions


ExceptionCondition
[ArgumentException]sources
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.ChangedProperties.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.ChangedProperties.htm index 306bf2d6..71c5cfc7 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.ChangedProperties.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.ChangedProperties.htm @@ -490,7 +490,7 @@

ChangeTrackingModelBaseNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public IReadOnlyList<string> ChangedProperties()
Public Function ChangedProperties As IReadOnlyList(Of String)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public IReadOnlyList<string> ChangedProperties()
Public Function ChangedProperties As IReadOnlyList(Of String)
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.GetPreviousValue.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.GetPreviousValue.htm index a9649ca0..89facc8b 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.GetPreviousValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.GetPreviousValue.htm @@ -490,11 +490,11 @@

ChangeTrackingModelBaseNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetPreviousValue(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetPreviousValue(
+	string propertyName
 )
Public Function GetPreviousValue ( _
-	propertyName As String _
-) As Nullable(Of Object)

Parameters

propertyName
Type: String
+ propertyName As String _ +) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor_1.htm index 522b1441..b0ef6e4d 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.DecomposeAttribute.-ctor_1.htm @@ -472,10 +472,10 @@

DecomposeAttribute Constructor (NullableTortuga.Anchor.Modeling
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public DecomposeAttribute(
-	Nullable<string> prefix
+	Nullable<string> prefix
 )
Public Sub New ( _
-	prefix As Nullable(Of String) _
-)

Parameters

prefix
Type: Nullable<(Of <(<'String>)>)>
The prefix.
+ prefix As Nullable(Of String) _ +)

Parameters

prefix
Type: Nullable<(Of <(<'String>)>)>
The prefix.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.EditableObjectModelBase.ChangedProperties.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.EditableObjectModelBase.ChangedProperties.htm index bf46d725..b948e153 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.EditableObjectModelBase.ChangedProperties.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.EditableObjectModelBase.ChangedProperties.htm @@ -496,7 +496,7 @@

EditableObjectModelBaseNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public IReadOnlyList<string> ChangedProperties()
Public Function ChangedProperties As IReadOnlyList(Of String)
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public IReadOnlyList<string> ChangedProperties()
Public Function ChangedProperties As IReadOnlyList(Of String)
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.EditableObjectModelBase.GetPreviousValue.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.EditableObjectModelBase.GetPreviousValue.htm index 9615a691..032a4812 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.EditableObjectModelBase.GetPreviousValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.EditableObjectModelBase.GetPreviousValue.htm @@ -496,11 +496,11 @@

EditableObjectModelBaseNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetPreviousValue(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetPreviousValue(
+	string propertyName
 )
Public Function GetPreviousValue ( _
-	propertyName As String _
-) As Nullable(Of Object)

Parameters

propertyName
Type: String
+ propertyName As String _ +) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Get--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Get--1.htm index d12e04df..2319d545 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Get--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Get--1.htm @@ -503,11 +503,11 @@

AbstractModelBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected T Get<T>(
-	string propertyName
+	string propertyName
 )
 
Protected Function Get(Of T) ( _
-	propertyName As String _
-) As T

Type Parameters

T
Expected type

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


+ propertyName As String _ +) As T

Type Parameters

T
Expected type

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


Storing the default value will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetDefault--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetDefault--1.htm index 8c71308f..e3315e61 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetDefault--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetDefault--1.htm @@ -504,12 +504,12 @@

AbstractModelBaseAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected T GetDefault<T>(
 	T defaultValue,
-	string propertyName
+	string propertyName
 )
 
Protected Function GetDefault(Of T) ( _
 	defaultValue As T, _
-	propertyName As String _
-) As T

Type Parameters

T
Expected type

Parameters

defaultValue
Type: T
Default value to use
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


+ propertyName As String _ +) As T

Type Parameters

T
Expected type

Parameters

defaultValue
Type: T
Default value to use
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


Storing the default value will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1.htm index 112bad1d..a286f87d 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1.htm @@ -506,11 +506,11 @@

AbstractModelBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected T GetNew<T>(
-	string propertyName
+	string propertyName
 )
 
Protected Function GetNew(Of T) ( _
-	propertyName As String _
-) As T

Type Parameters

T
Expected type that has a parameterless constructor

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


+ propertyName As String _ +) As T

Type Parameters

T
Expected type that has a parameterless constructor

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


Executing the constructor will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1_1.htm index 6a55d45e..81878e48 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew--1_1.htm @@ -507,12 +507,12 @@

AbstractModelBaseAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected T GetNew<T>(
 	Func<T> creationFunction,
-	string propertyName
+	string propertyName
 )
 
Protected Function GetNew(Of T) ( _
 	creationFunction As Func(Of T), _
-	propertyName As String _
-) As T

Type Parameters

T
Expected type

Parameters

creationFunction
Type: Func<(Of <(<'T>)>)>
Function to execute if the property doesn't already exist.
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] + propertyName As String _ +) As T

Type Parameters

T
Expected type

Parameters

creationFunction
Type: Func<(Of <(<'T>)>)>
Function to execute if the property doesn't already exist.
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] creationFunction;creationFunction is null. or propertyName;propertyName is null. diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew.htm index 7177fadc..d01f6be0 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.GetNew.htm @@ -505,11 +505,11 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected string GetNew(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected string GetNew(
+	string propertyName
 )
Protected Function GetNew ( _
-	propertyName As String _
-) As String

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


+ propertyName As String _ +) As String

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


This is a special care for strings, as we usually don't want them to default to null. This is the equivalent of calling GetDefault("", propertyName)
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanged.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanged.htm index bbea6fc5..605beabd 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanged.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanged.htm @@ -502,10 +502,10 @@

AbstractModelBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void OnPropertyChanged(
-	string propertyName
+	string propertyName
 )
Protected Sub OnPropertyChanged ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String
Name of the property.
+ propertyName As String _ +)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanging.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanging.htm index 09202d55..257aa901 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanging.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.OnPropertyChanging.htm @@ -502,10 +502,10 @@

AbstractModelBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void OnPropertyChanging(
-	string propertyName
+	string propertyName
 )
Protected Sub OnPropertyChanging ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String
Name of the property.
+ propertyName As String _ +)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1.htm index 79bce14d..6936c5de 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1.htm @@ -509,17 +509,17 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<T>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<T>(
 	T value,
 	PropertyChangedEventHandler propertyChanged,
-	string propertyName
+	string propertyName
 )
 where T : INotifyPropertyChanged, INotifyCollectionChanged
 
Public Function Set(Of T As {INotifyPropertyChanged, INotifyCollectionChanged}) ( _
 	value As T, _
 	propertyChanged As PropertyChangedEventHandler, _
-	propertyName As String _
-) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
propertyChanged
Type: PropertyChangedEventHandler
A property changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] + propertyName As String _ +) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
propertyChanged
Type: PropertyChangedEventHandler
A property changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] propertyName;propertyName is null or propertyChanged;propertyChanged is null. diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_1.htm index 37973203..0b87c35b 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_1.htm @@ -509,17 +509,17 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set<T>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set<T>(
 	T value,
 	ValueChanged<T> valueChanged,
-	string propertyName
+	string propertyName
 )
 where T : INotifyPropertyChanged, INotifyCollectionChanged
 
Protected Function Set(Of T As {INotifyPropertyChanged, INotifyCollectionChanged}) ( _
 	value As T, _
 	valueChanged As ValueChanged(Of T), _
-	propertyName As String _
-) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
valueChanged
Type: Tortuga.Anchor.Modeling..::..ValueChanged<(Of <(<'T>)>)>
Delegate that will be invoked if the value of this property changes.
propertyName
Type: String
Name of property to be created/updated

Return Value

+ propertyName As String _ +) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
valueChanged
Type: Tortuga.Anchor.Modeling..::..ValueChanged<(Of <(<'T>)>)>
Delegate that will be invoked if the value of this property changes.
propertyName
Type: String
Name of property to be created/updated

Return Value

True is the value actually changed.

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is null or empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_2.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_2.htm index bf72b713..80184973 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_2.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set--1_2.htm @@ -509,17 +509,17 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set<T>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set<T>(
 	T value,
 	NotifyCollectionChangedEventHandler collectionChanged,
-	string propertyName
+	string propertyName
 )
 where T : INotifyPropertyChanged, INotifyCollectionChanged
 
Protected Function Set(Of T As {INotifyPropertyChanged, INotifyCollectionChanged}) ( _
 	value As T, _
 	collectionChanged As NotifyCollectionChangedEventHandler, _
-	propertyName As String _
-) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
collectionChanged
Type: NotifyCollectionChangedEventHandler
A collection changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null + propertyName As String _ +) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
collectionChanged
Type: NotifyCollectionChangedEventHandler
A collection changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null or collectionChanged;collectionChanged is null.
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set.htm index b413c9f7..97983714 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Set.htm @@ -509,13 +509,13 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set(
-	Nullable<Object> value,
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set(
+	Nullable<Object> value,
+	string propertyName
 )
Protected Function Set ( _
-	value As Nullable(Of Object), _
-	propertyName As String _
-) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
Value to be saved.
propertyName
Type: String
Name of property to be created/updated

Return Value

+ value As Nullable(Of Object), _ + propertyName As String _ +) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
Value to be saved.
propertyName
Type: String
Name of property to be created/updated

Return Value

True is the value actually changed.

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is null or empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Validate.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Validate.htm index baac5409..b0d399c3 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Validate.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.Validate.htm @@ -501,7 +501,7 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Validate()
Public Function Validate As Boolean

Return Value

+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Validate()
Public Function Validate As Boolean

Return Value

True if the object has no errors
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors_1.htm index ea8cdc81..6a66c526 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.GetErrors_1.htm @@ -509,10 +509,10 @@

AbstractModelBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyCollection<ValidationResult> GetErrors(
-	Nullable<string> propertyName
+	Nullable<string> propertyName
 )
Public Function GetErrors ( _
-	propertyName As Nullable(Of String) _
-) As ReadOnlyCollection(Of ValidationResult)

Parameters

propertyName
Type: Nullable<(Of <(<'String>)>)>
Null or String.Empty will return the object-level errors

Return Value

Remarks


+ propertyName As Nullable(Of String) _ +) As ReadOnlyCollection(Of ValidationResult)

Parameters

propertyName
Type: Nullable<(Of <(<'String>)>)>
Null or String.Empty will return the object-level errors

Return Value

Remarks


Call Validate() to refresh this property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnErrorsChanged.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnErrorsChanged.htm index ae6d68a5..0cc8acc4 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnErrorsChanged.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnErrorsChanged.htm @@ -503,10 +503,10 @@

AbstractModelBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void OnErrorsChanged(
-	string propertyName
+	string propertyName
 )
Protected Sub OnErrorsChanged ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String
Name of the property.
+ propertyName As String _ +)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnValidateProperty.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnValidateProperty.htm index 360dd095..73e70e64 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnValidateProperty.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.OnValidateProperty.htm @@ -507,12 +507,12 @@

AbstractModelBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected virtual void OnValidateProperty(
-	string propertyName,
+	string propertyName,
 	ValidationResultCollection results
 )
Protected Overridable Sub OnValidateProperty ( _
-	propertyName As String, _
+	propertyName As String, _
 	results As ValidationResultCollection _
-)

Parameters

propertyName
Type: String
The name of the property being validated.
results
Type: Tortuga.Anchor.DataAnnotations..::..ValidationResultCollection
A collection of the declarative validation errors. You may add and remove errors from this collection.
+)

Parameters

propertyName
Type: String
The name of the property being validated.
results
Type: Tortuga.Anchor.DataAnnotations..::..ValidationResultCollection
A collection of the declarative validation errors. You may add and remove errors from this collection.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.Validate.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.Validate.htm index ad50bdf4..45602cb0 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.Validate.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.Validate.htm @@ -506,7 +506,7 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Validate()
Public Function Validate As Boolean

Return Value

+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Validate()
Public Function Validate As Boolean

Return Value

True if the object has no errors
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Get--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Get--1.htm index c98eb59d..7605b61c 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Get--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Get--1.htm @@ -521,11 +521,11 @@

AbstractModelCollectionTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected TValue Get<TValue>(
-	string propertyName
+	string propertyName
 )
 
Protected Function Get(Of TValue) ( _
-	propertyName As String _
-) As TValue

Type Parameters

TValue
Expected type

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


+ propertyName As String _ +) As TValue

Type Parameters

TValue
Expected type

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


Storing the default value will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetDefault--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetDefault--1.htm index 69ad02c1..550a7183 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetDefault--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetDefault--1.htm @@ -522,12 +522,12 @@

AbstractModelCollectionAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected TValue GetDefault<TValue>(
 	TValue defaultValue,
-	string propertyName
+	string propertyName
 )
 
Protected Function GetDefault(Of TValue) ( _
 	defaultValue As TValue, _
-	propertyName As String _
-) As TValue

Type Parameters

TValue
Expected type

Parameters

defaultValue
Type: TValue
Default value to use
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


+ propertyName As String _ +) As TValue

Type Parameters

TValue
Expected type

Parameters

defaultValue
Type: TValue
Default value to use
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


Storing the default value will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors_1.htm index 226884e2..006e4bf4 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetErrors_1.htm @@ -521,10 +521,10 @@

AbstractModelCollectionTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyCollection<ValidationResult> GetErrors(
-	Nullable<string> propertyName
+	Nullable<string> propertyName
 )
Public Function GetErrors ( _
-	propertyName As Nullable(Of String) _
-) As ReadOnlyCollection(Of ValidationResult)

Parameters

propertyName
Type: Nullable<(Of <(<'String>)>)>
Null or String.Empty will return the object-level errors

Return Value

Remarks


+ propertyName As Nullable(Of String) _ +) As ReadOnlyCollection(Of ValidationResult)

Parameters

propertyName
Type: Nullable<(Of <(<'String>)>)>
Null or String.Empty will return the object-level errors

Return Value

Remarks


Call Validate() to refresh this property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1.htm index 9cfee7b7..9608ad8a 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1.htm @@ -524,11 +524,11 @@

AbstractModelCollectionTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected TValue GetNew<TValue>(
-	string propertyName
+	string propertyName
 )
 
Protected Function GetNew(Of TValue) ( _
-	propertyName As String _
-) As TValue

Type Parameters

TValue
Expected type that has a parameterless constructor

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


+ propertyName As String _ +) As TValue

Type Parameters

TValue
Expected type that has a parameterless constructor

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


Executing the constructor will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1_1.htm index 326c0146..3ee5be15 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew--1_1.htm @@ -525,12 +525,12 @@

AbstractModelCollectionAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected TValue GetNew<TValue>(
 	Func<TValue> creationFunction,
-	string propertyName
+	string propertyName
 )
 
Protected Function GetNew(Of TValue) ( _
 	creationFunction As Func(Of TValue), _
-	propertyName As String _
-) As TValue

Type Parameters

TValue
Expected type

Parameters

creationFunction
Type: Func<(Of <(<'TValue>)>)>
Function to execute if the property doesn't already exist.
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] + propertyName As String _ +) As TValue

Type Parameters

TValue
Expected type

Parameters

creationFunction
Type: Func<(Of <(<'TValue>)>)>
Function to execute if the property doesn't already exist.
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] creationFunction;creationFunction is null. or propertyName;propertyName is null. diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew.htm index e8979a3a..c407dd16 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.GetNew.htm @@ -523,11 +523,11 @@

AbstractModelCollectionNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected string GetNew(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected string GetNew(
+	string propertyName
 )
Protected Function GetNew ( _
-	propertyName As String _
-) As String

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


+ propertyName As String _ +) As String

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null.
[ArgumentException]propertyName is empty.;propertyName

Remarks


This is a special care for strings, as we usually don't want them to default to null. This is the equivalent of calling GetDefault("", propertyName)
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnErrorsChanged.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnErrorsChanged.htm index 5dbf4e90..854bd37a 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnErrorsChanged.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnErrorsChanged.htm @@ -515,10 +515,10 @@

AbstractModelCollectionTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected void OnErrorsChanged(
-	string propertyName
+	string propertyName
 )
Protected Sub OnErrorsChanged ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String
Name of the property.
+ propertyName As String _ +)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnValidateProperty.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnValidateProperty.htm index 06474a2f..010f5bff 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnValidateProperty.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.OnValidateProperty.htm @@ -520,12 +520,12 @@

AbstractModelCollectionTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected virtual void OnValidateProperty(
-	string propertyName,
+	string propertyName,
 	ValidationResultCollection results
 )
Protected Overridable Sub OnValidateProperty ( _
-	propertyName As String, _
+	propertyName As String, _
 	results As ValidationResultCollection _
-)

Parameters

propertyName
Type: String
The name of the property being validated.
results
Type: Tortuga.Anchor.DataAnnotations..::..ValidationResultCollection
A collection of the declarative validation errors. You may add and remove errors from this collection.
+)

Parameters

propertyName
Type: String
The name of the property being validated.
results
Type: Tortuga.Anchor.DataAnnotations..::..ValidationResultCollection
A collection of the declarative validation errors. You may add and remove errors from this collection.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1.htm index 4dabbb59..28fcac47 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1.htm @@ -524,17 +524,17 @@

AbstractModelCollectionNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<TValue>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<TValue>(
 	TValue value,
 	PropertyChangedEventHandler propertyChanged,
-	string propertyName
+	string propertyName
 )
 where TValue : INotifyPropertyChanged, INotifyCollectionChanged
 
Public Function Set(Of TValue As {INotifyPropertyChanged, INotifyCollectionChanged}) ( _
 	value As TValue, _
 	propertyChanged As PropertyChangedEventHandler, _
-	propertyName As String _
-) As Boolean

Type Parameters

TValue

Parameters

value
Type: TValue
Value to be saved.
propertyChanged
Type: PropertyChangedEventHandler
A property changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] + propertyName As String _ +) As Boolean

Type Parameters

TValue

Parameters

value
Type: TValue
Value to be saved.
propertyChanged
Type: PropertyChangedEventHandler
A property changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] propertyName;propertyName is null or propertyChanged;propertyChanged is null. diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1_1.htm index 616ff501..9932b474 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set--1_1.htm @@ -524,17 +524,17 @@

AbstractModelCollectionNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set<TValue>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set<TValue>(
 	TValue value,
 	NotifyCollectionChangedEventHandler collectionChanged,
-	string propertyName
+	string propertyName
 )
 where TValue : INotifyPropertyChanged, INotifyCollectionChanged
 
Protected Function Set(Of TValue As {INotifyPropertyChanged, INotifyCollectionChanged}) ( _
 	value As TValue, _
 	collectionChanged As NotifyCollectionChangedEventHandler, _
-	propertyName As String _
-) As Boolean

Type Parameters

TValue

Parameters

value
Type: TValue
Value to be saved.
collectionChanged
Type: NotifyCollectionChangedEventHandler
A collection changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null + propertyName As String _ +) As Boolean

Type Parameters

TValue

Parameters

value
Type: TValue
Value to be saved.
collectionChanged
Type: NotifyCollectionChangedEventHandler
A collection changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null or collectionChanged;collectionChanged is null.
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set.htm index 813a7557..1dad3e0b 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Set.htm @@ -524,13 +524,13 @@

AbstractModelCollectionNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set(
-	Object value,
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected bool Set(
+	Object value,
+	string propertyName
 )
Protected Function Set ( _
-	value As Object, _
-	propertyName As String _
-) As Boolean

Parameters

value
Type: Object
Value to be saved.
propertyName
Type: String
Name of property to be created/updated

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is null or empty.;propertyName
+ value As Object, _ + propertyName As String _ +) As Boolean

Parameters

value
Type: Object
Value to be saved.
propertyName
Type: String
Name of property to be created/updated

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is null or empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Validate.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Validate.htm index 8f193fa1..ccfb340e 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Validate.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.Validate.htm @@ -519,7 +519,7 @@

AbstractModelCollectionNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Validate()
Public Function Validate As Boolean

Return Value

+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Validate()
Public Function Validate As Boolean

Return Value

True if the object has no errors
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.-ctor.htm index 42da1c61..664b4dd1 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.-ctor.htm @@ -476,10 +476,10 @@

ChangeTrackingPropertyBag Constructor

 Tortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ChangeTrackingPropertyBag(
-	Object owner
+	Object owner
 )
Public Sub New ( _
-	owner As Object _
-)

Parameters

owner
Type: Object
Owning model, used to fetch metadata
+ owner As Object _ +)

Parameters

owner
Type: Object
Owning model, used to fetch metadata
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.AcceptChanges.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.AcceptChanges.htm index 49ed678b..6b63c098 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.AcceptChanges.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.AcceptChanges.htm @@ -511,10 +511,10 @@

ChangeTrackingPropertyBagTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public virtual void AcceptChanges(
-	bool recursive
+	bool recursive
 )
Public Overridable Sub AcceptChanges ( _
-	recursive As Boolean _
-)

Parameters

recursive
Type: Boolean
if set to true [recursive].
+ recursive As Boolean _ +)

Parameters

recursive
Type: Boolean
if set to true [recursive].
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.ChangedProperties.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.ChangedProperties.htm index 9e8044e6..880b8414 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.ChangedProperties.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.ChangedProperties.htm @@ -508,7 +508,7 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public IReadOnlyList<string> ChangedProperties()
Public Function ChangedProperties As IReadOnlyList(Of String)

Return Value

The indicated value or System.Reflection.Missing if the value isn't defined.

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public IReadOnlyList<string> ChangedProperties()
Public Function ChangedProperties As IReadOnlyList(Of String)

Return Value

The indicated value or System.Reflection.Missing if the value isn't defined.

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetInternalValues.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetInternalValues.htm index c6a491af..9f93f453 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetInternalValues.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetInternalValues.htm @@ -506,7 +506,7 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal Nullable<Object>[] GetInternalValues()
Protected Friend Function GetInternalValues As Nullable(Of Object)()
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal Nullable<Object>[] GetInternalValues()
Protected Friend Function GetInternalValues As Nullable(Of Object)()
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetPreviousValue.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetPreviousValue.htm index 43c6dcf8..ab60528f 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetPreviousValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetPreviousValue.htm @@ -510,11 +510,11 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetPreviousValue(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetPreviousValue(
+	string propertyName
 )
Public Function GetPreviousValue ( _
-	propertyName As String _
-) As Nullable(Of Object)

Parameters

propertyName
Type: String
+ propertyName As String _ +) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetValue.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetValue.htm index 76a181eb..11971629 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.GetValue.htm @@ -508,11 +508,11 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetValue(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetValue(
+	string propertyName
 )
Public Function GetValue ( _
-	propertyName As String _
-) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property to fetch.

Return Value

The indicated value or NotSet.Value if the value isn't defined.

Exceptions


ExceptionCondition
[ArgumentException]propertyName
+ propertyName As String _ +) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property to fetch.

Return Value

The indicated value or NotSet.Value if the value isn't defined.

Exceptions


ExceptionCondition
[ArgumentException]propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedGraph.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedGraph.htm index 202ae1f0..e06f9430 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedGraph.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedGraph.htm @@ -510,7 +510,7 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedGraph()
Public Function IsChangedGraph As Boolean

Return Value

+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedGraph()
Public Function IsChangedGraph As Boolean

Return Value

diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsDefined.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsDefined.htm index 37c81ead..13db6d24 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsDefined.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsDefined.htm @@ -510,11 +510,11 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsDefined(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsDefined(
+	string propertyName
 )
Public Function IsDefined ( _
-	propertyName As String _
-) As Boolean

Parameters

propertyName
Type: String

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
+ propertyName As String _ +) As Boolean

Parameters

propertyName
Type: String

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.RejectChanges.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.RejectChanges.htm index b5b8cd7d..2beb9978 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.RejectChanges.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.RejectChanges.htm @@ -511,10 +511,10 @@

ChangeTrackingPropertyBagTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public virtual void RejectChanges(
-	bool recursive
+	bool recursive
 )
Public Overridable Sub RejectChanges ( _
-	recursive As Boolean _
-)

Parameters

recursive
Type: Boolean
if set to true [recursive].
+ recursive As Boolean _ +)

Parameters

recursive
Type: Boolean
if set to true [recursive].
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Set.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Set.htm index 64159a68..7c086e06 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Set.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Set.htm @@ -513,17 +513,17 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
-	Nullable<Object> value,
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
+	Nullable<Object> value,
 	PropertySetModes mode,
-	string propertyName,
-	out Nullable<Object> oldValue
+	string propertyName,
+	out Nullable<Object> oldValue
 )
Public Function Set ( _
-	value As Nullable(Of Object), _
+	value As Nullable(Of Object), _
 	mode As PropertySetModes, _
-	propertyName As String, _
-	<OutAttribute> ByRef oldValue As Nullable(Of Object) _
-) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
The value to be saved. A null will set the value to null.
mode
Type: Tortuga.Anchor.Modeling.Internals..::..PropertySetModes
Indicates special handling for the action.
propertyName
Type: String
Name of property to update
oldValue
Type: Nullable<(Of <(<'Object>)>)>%
The previously stored value. If the property was uninitialized, this will return NotSet.Value

Return Value

+ propertyName As String, _ + <OutAttribute> ByRef oldValue As Nullable(Of Object) _ +) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
The value to be saved. A null will set the value to null.
mode
Type: Tortuga.Anchor.Modeling.Internals..::..PropertySetModes
Indicates special handling for the action.
propertyName
Type: String
Name of property to update
oldValue
Type: Nullable<(Of <(<'Object>)>)>%
The previously stored value. If the property was uninitialized, this will return NotSet.Value

Return Value

True if the value actually changed

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName

Remarks


This will create the property if it doesn't already exist diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.SetInternalValues.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.SetInternalValues.htm index 8a5a4776..d64456af 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.SetInternalValues.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.SetInternalValues.htm @@ -27,6 +27,7 @@ + @@ -502,15 +503,18 @@

ChangeTrackingPropertyBag..::..SetInternalValues Method

+
+Replaces the internal values array. +

Namespace:  Tortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal void SetInternalValues(
-	Nullable<Object>[] valuesArray
+	Nullable<Object>[] valuesArray
 )
Protected Friend Sub SetInternalValues ( _
-	valuesArray As Nullable(Of Object)() _
-)

Parameters

valuesArray
Type: array<Nullable<(Of <(<'Object>)>)>>[]()[][]
+ valuesArray As Nullable(Of Object)() _ +)

Parameters

valuesArray
Type: array<Nullable<(Of <(<'Object>)>)>>[]()[][]
Array to be copied into this property bag.

Remarks


Be extremely careful with this. Changes to this arrary will not trigger events.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.-ctor.htm index 81fa4ade..17105dac 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.-ctor.htm @@ -476,10 +476,10 @@

EditableObjectPropertyBag Constructor

 Tortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public EditableObjectPropertyBag(
-	Object owner
+	Object owner
 )
Public Sub New ( _
-	owner As Object _
-)

Parameters

owner
Type: Object
Owning model, used to fetch metadata
+ owner As Object _ +)

Parameters

owner
Type: Object
Owning model, used to fetch metadata
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.AcceptChanges.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.AcceptChanges.htm index f9c12a8c..122145b8 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.AcceptChanges.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.AcceptChanges.htm @@ -491,10 +491,10 @@

EditableObjectPropertyBagTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void AcceptChanges(
-	bool recursive
+	bool recursive
 )
Public Sub AcceptChanges ( _
-	recursive As Boolean _
-)

Parameters

recursive
Type: Boolean
if set to true [recursive].

Remarks


+ recursive As Boolean _ +)

Parameters

recursive
Type: Boolean
if set to true [recursive].

Remarks


Calling this ends all pending edits.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.RejectChanges.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.RejectChanges.htm index d7f6188c..4fc319a8 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.RejectChanges.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.RejectChanges.htm @@ -491,10 +491,10 @@

EditableObjectPropertyBagTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public void RejectChanges(
-	bool recursive
+	bool recursive
 )
Public Sub RejectChanges ( _
-	recursive As Boolean _
-)

Parameters

recursive
Type: Boolean
if set to true [recursive].

Remarks


+ recursive As Boolean _ +)

Parameters

recursive
Type: Boolean
if set to true [recursive].

Remarks


Calling this cancels all pending edits.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.-ctor.htm index 3cc14114..3b447884 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.-ctor.htm @@ -474,10 +474,10 @@

PropertyBag Constructor

 Tortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public PropertyBag(
-	Object owner
+	Object owner
 )
Public Sub New ( _
-	owner As Object _
-)

Parameters

owner
Type: Object
Pass-through to PropertyBagBase
+ owner As Object _ +)

Parameters

owner
Type: Object
Pass-through to PropertyBagBase
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetInternalValues.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetInternalValues.htm index 17372f9b..9ad923ab 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetInternalValues.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetInternalValues.htm @@ -27,7 +27,6 @@ - @@ -483,14 +482,11 @@

PropertyBag..::..GetInternalValues Method

-
-Returns the internal values array. -

Namespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal Nullable<Object>[] GetInternalValues()
Protected Friend Function GetInternalValues As Nullable(Of Object)()

Return Value

Remarks


Be extremely careful with this. Changes to this arrary will not trigger events.
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal Nullable<Object>[] GetInternalValues()
Protected Friend Function GetInternalValues As Nullable(Of Object)()
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetValue.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetValue.htm index 2e4af5d5..64d24f84 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.GetValue.htm @@ -490,11 +490,11 @@

PropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetValue(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetValue(
+	string propertyName
 )
Public Function GetValue ( _
-	propertyName As String _
-) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property to fetch.

Return Value

+ propertyName As String _ +) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property to fetch.

Return Value

The indicated value or System.Reflection.Missing if the value isn't defined.

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.IsDefined.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.IsDefined.htm index 349951d7..5d04e59a 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.IsDefined.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.IsDefined.htm @@ -490,11 +490,11 @@

PropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsDefined(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsDefined(
+	string propertyName
 )
Public Function IsDefined ( _
-	propertyName As String _
-) As Boolean

Parameters

propertyName
Type: String

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
+ propertyName As String _ +) As Boolean

Parameters

propertyName
Type: String

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.Set.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.Set.htm index b1b765ab..03be6f14 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.Set.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.Set.htm @@ -493,17 +493,17 @@

PropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
-	Nullable<Object> value,
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
+	Nullable<Object> value,
 	PropertySetModes mode,
-	string propertyName,
-	out Nullable<Object> oldValue
+	string propertyName,
+	out Nullable<Object> oldValue
 )
Public Function Set ( _
-	value As Nullable(Of Object), _
+	value As Nullable(Of Object), _
 	mode As PropertySetModes, _
-	propertyName As String, _
-	<OutAttribute> ByRef oldValue As Nullable(Of Object) _
-) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
The value to be saved. A null will set the value to null.
mode
Type: Tortuga.Anchor.Modeling.Internals..::..PropertySetModes
Indicates special handling for the action. Ignores SetAsOriginal.
propertyName
Type: String
Name of property to update
oldValue
Type: Nullable<(Of <(<'Object>)>)>%
The previously stored value. If the property was uninitialized, this will return NotSet.Value

Return Value

+ propertyName As String, _ + <OutAttribute> ByRef oldValue As Nullable(Of Object) _ +) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
The value to be saved. A null will set the value to null.
mode
Type: Tortuga.Anchor.Modeling.Internals..::..PropertySetModes
Indicates special handling for the action. Ignores SetAsOriginal.
propertyName
Type: String
Name of property to update
oldValue
Type: Nullable<(Of <(<'Object>)>)>%
The previously stored value. If the property was uninitialized, this will return NotSet.Value

Return Value

True if the value actually changed

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName

Remarks


This will create the property if it doesn't already exist diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.SetInternalValues.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.SetInternalValues.htm index e4268231..7db458ae 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.SetInternalValues.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBag.SetInternalValues.htm @@ -491,10 +491,10 @@

PropertyBagTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal void SetInternalValues(
-	Nullable<Object>[] valuesArray
+	Nullable<Object>[] valuesArray
 )
Protected Friend Sub SetInternalValues ( _
-	valuesArray As Nullable(Of Object)() _
-)

Parameters

valuesArray
Type: array<Nullable<(Of <(<'Object>)>)>>[]()[][]
Array to be copied into this property bag.

Remarks


Be extremely careful with this. Changes to this arrary will not trigger events.
+ valuesArray As Nullable(Of Object)() _ +)

Parameters

valuesArray
Type: array<Nullable<(Of <(<'Object>)>)>>[]()[][]
Array to be copied into this property bag.

Remarks


Be extremely careful with this. Changes to this arrary will not trigger events.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.-ctor.htm index ad6a485c..28adc7de 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.-ctor.htm @@ -478,10 +478,10 @@

PropertyBagBase Constructor

 Tortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected PropertyBagBase(
-	Object owner
+	Object owner
 )
Protected Sub New ( _
-	owner As Object _
-)

Parameters

owner
Type: Object
Owning model, used to fetch metadata

Exceptions


ExceptionCondition
[ArgumentNullException]owner;owner is null.
+ owner As Object _ +)

Parameters

owner
Type: Object
Owning model, used to fetch metadata

Exceptions


ExceptionCondition
[ArgumentNullException]owner;owner is null.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Get--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Get--1.htm index 3bc35b49..69c0d793 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Get--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Get--1.htm @@ -530,11 +530,11 @@

PropertyBagBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public T Get<T>(
-	string propertyName
+	string propertyName
 )
 
Public Function Get(Of T) ( _
-	propertyName As String _
-) As T

Type Parameters

T
Expected type

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty;propertyName
[InvalidOperationException]Property + propertyName + contains a null

Remarks


+ propertyName As String _ +) As T

Type Parameters

T
Expected type

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty;propertyName
[InvalidOperationException]Property + propertyName + contains a null

Remarks


Storing the default value will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetDefault--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetDefault--1.htm index 2567b105..99719f3f 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetDefault--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetDefault--1.htm @@ -531,12 +531,12 @@

PropertyBagBaseAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public T GetDefault<T>(
 	T defaultValue,
-	string propertyName
+	string propertyName
 )
 
Public Function GetDefault(Of T) ( _
 	defaultValue As T, _
-	propertyName As String _
-) As T

Type Parameters

T
Expected type

Parameters

defaultValue
Type: T
Default value to use
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty;propertyName
[InvalidOperationException]Property + propertyName + contains a null

Remarks


+ propertyName As String _ +) As T

Type Parameters

T
Expected type

Parameters

defaultValue
Type: T
Default value to use
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty;propertyName
[InvalidOperationException]Property + propertyName + contains a null

Remarks


Storing the default value will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetInternalValues.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetInternalValues.htm index 8b893f4b..ec387dc3 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetInternalValues.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetInternalValues.htm @@ -527,7 +527,7 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal Nullable<Object>[] GetInternalValues()
Protected Friend Function GetInternalValues As Nullable(Of Object)()

Return Value

Remarks


Be extremely careful with this. Changes to this arrary will not trigger events.
+  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal Nullable<Object>[] GetInternalValues()
Protected Friend Function GetInternalValues As Nullable(Of Object)()

Return Value

Remarks


Be extremely careful with this. Changes to this arrary will not trigger events.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1.htm index 0a64b7cd..e29419d0 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1.htm @@ -531,12 +531,12 @@

PropertyBagBaseAssembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public T GetNew<T>(
 	Func<T> creationFunction,
-	string propertyName
+	string propertyName
 )
 
Public Function GetNew(Of T) ( _
 	creationFunction As Func(Of T), _
-	propertyName As String _
-) As T

Type Parameters

T
Expected type

Parameters

creationFunction
Type: Func<(Of <(<'T>)>)>
Function to execute if the property doesn't already exist.
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] + propertyName As String _ +) As T

Type Parameters

T
Expected type

Parameters

creationFunction
Type: Func<(Of <(<'T>)>)>
Function to execute if the property doesn't already exist.
propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] creationFunction;creationFunction is null. or propertyName;propertyName is null diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1_1.htm index f392c46c..5dbf3b1a 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetNew--1_1.htm @@ -530,11 +530,11 @@

PropertyBagBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public T GetNew<T>(
-	string propertyName
+	string propertyName
 )
 
Public Function GetNew(Of T) ( _
-	propertyName As String _
-) As T

Type Parameters

T
Expected type that has a parameterless constructor

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty;propertyName
[InvalidOperationException]Property + propertyName + contains a null

Remarks


+ propertyName As String _ +) As T

Type Parameters

T
Expected type that has a parameterless constructor

Parameters

propertyName
Type: String
Case-sensitive property name

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty;propertyName
[InvalidOperationException]Property + propertyName + contains a null

Remarks


Executing the constructor will trigger validation but not a property-changed event.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetPropertyIndex.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetPropertyIndex.htm index 2b07e191..ed235bee 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetPropertyIndex.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetPropertyIndex.htm @@ -527,11 +527,11 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected int GetPropertyIndex(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected int GetPropertyIndex(
+	string propertyName
 )
Protected Function GetPropertyIndex ( _
-	propertyName As String _
-) As Integer

Parameters

propertyName
Type: String
Name of the property.
+ propertyName As String _ +) As Integer

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetValue.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetValue.htm index a139e1c0..f628c760 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetValue.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.GetValue.htm @@ -527,11 +527,11 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetValue(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> GetValue(
+	string propertyName
 )
Public Function GetValue ( _
-	propertyName As String _
-) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property to fetch.

Return Value

+ propertyName As String _ +) As Nullable(Of Object)

Parameters

propertyName
Type: String
Name of the property to fetch.

Return Value

The indicated value or System.Reflection.Missing if the value isn't defined.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.IsDefined.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.IsDefined.htm index 5347b5db..ba479d60 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.IsDefined.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.IsDefined.htm @@ -527,11 +527,11 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsDefined(
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsDefined(
+	string propertyName
 )
Public Function IsDefined ( _
-	propertyName As String _
-) As Boolean

Parameters

propertyName
Type: String
Name of the property.

Return Value

+ propertyName As String _ +) As Boolean

Parameters

propertyName
Type: String
Name of the property.

Return Value

diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged_1.htm index 22959842..c1655c93 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanged_1.htm @@ -530,10 +530,10 @@

PropertyBagBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal void OnPropertyChanged(
-	string propertyName
+	string propertyName
 )
Protected Friend Sub OnPropertyChanged ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String
Name of the property.
+ propertyName As String _ +)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging_1.htm index 05b9fcab..1781a9f9 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.OnPropertyChanging_1.htm @@ -530,10 +530,10 @@

PropertyBagBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal void OnPropertyChanging(
-	string propertyName
+	string propertyName
 )
Protected Friend Sub OnPropertyChanging ( _
-	propertyName As String _
-)

Parameters

propertyName
Type: String
Name of the property.
+ propertyName As String _ +)

Parameters

propertyName
Type: String
Name of the property.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1.htm index 489ace47..a42d30e6 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1.htm @@ -542,17 +542,17 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<T>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<T>(
 	T value,
 	ValueChanged<T> valueChanged,
-	string propertyName
+	string propertyName
 )
 where T : INotifyPropertyChanged, INotifyCollectionChanged
 
Public Function Set(Of T As {INotifyPropertyChanged, INotifyCollectionChanged}) ( _
 	value As T, _
 	valueChanged As ValueChanged(Of T), _
-	propertyName As String _
-) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
valueChanged
Type: Tortuga.Anchor.Modeling..::..ValueChanged<(Of <(<'T>)>)>
Delegate that will be invoked if the value of this property changes.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]valueChanged is empty.;valueChanged
[ArgumentException]propertyName is empty.;propertyName
+ propertyName As String _ +) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
valueChanged
Type: Tortuga.Anchor.Modeling..::..ValueChanged<(Of <(<'T>)>)>
Delegate that will be invoked if the value of this property changes.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]valueChanged is empty.;valueChanged
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_1.htm index c3d34f13..c773a12a 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_1.htm @@ -542,17 +542,17 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<T>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<T>(
 	T value,
 	PropertyChangedEventHandler propertyChanged,
-	string propertyName
+	string propertyName
 )
 where T : INotifyPropertyChanged, INotifyCollectionChanged
 
Public Function Set(Of T As {INotifyPropertyChanged, INotifyCollectionChanged}) ( _
 	value As T, _
 	propertyChanged As PropertyChangedEventHandler, _
-	propertyName As String _
-) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
propertyChanged
Type: PropertyChangedEventHandler
A property changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] + propertyName As String _ +) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
propertyChanged
Type: PropertyChangedEventHandler
A property changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] propertyName;propertyName is null or propertyChanged;propertyChanged is null. diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_2.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_2.htm index 150e82e8..6b9f77d4 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_2.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set--1_2.htm @@ -542,17 +542,17 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<T>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set<T>(
 	T value,
 	NotifyCollectionChangedEventHandler collectionChanged,
-	string propertyName
+	string propertyName
 )
 where T : INotifyPropertyChanged, INotifyCollectionChanged
 
Public Function Set(Of T As {INotifyPropertyChanged, INotifyCollectionChanged}) ( _
 	value As T, _
 	collectionChanged As NotifyCollectionChangedEventHandler, _
-	propertyName As String _
-) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
collectionChanged
Type: NotifyCollectionChangedEventHandler
A collection changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] + propertyName As String _ +) As Boolean

Type Parameters

T

Parameters

value
Type: T
Value to be saved.
collectionChanged
Type: NotifyCollectionChangedEventHandler
A collection changed event handler to be attached to the new value. If an old value exists, the event handler will be removed from it.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException] propertyName;propertyName is null or collectionChanged;collectionChanged is null. diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set.htm index c0b26940..a06e3836 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set.htm @@ -541,17 +541,17 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
-	Nullable<Object> value,
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
+	Nullable<Object> value,
 	PropertySetModes mode,
-	string propertyName,
-	out Nullable<Object> oldValue
+	string propertyName,
+	out Nullable<Object> oldValue
 )
Public Function Set ( _
-	value As Nullable(Of Object), _
+	value As Nullable(Of Object), _
 	mode As PropertySetModes, _
-	propertyName As String, _
-	<OutAttribute> ByRef oldValue As Nullable(Of Object) _
-) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
The value to be saved. A null will set the value to null.
mode
Type: Tortuga.Anchor.Modeling.Internals..::..PropertySetModes
Indicates special handling for the action.
propertyName
Type: String
Name of property to update
oldValue
Type: Nullable<(Of <(<'Object>)>)>%
The previously stored value. If the property was uninitialized, this will return NotSet.Value

Return Value

+ propertyName As String, _ + <OutAttribute> ByRef oldValue As Nullable(Of Object) _ +) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
The value to be saved. A null will set the value to null.
mode
Type: Tortuga.Anchor.Modeling.Internals..::..PropertySetModes
Indicates special handling for the action.
propertyName
Type: String
Name of property to update
oldValue
Type: Nullable<(Of <(<'Object>)>)>%
The previously stored value. If the property was uninitialized, this will return NotSet.Value

Return Value

True if the value actually changed

Remarks


This will create the property if it doesn't already exist diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.SetInternalValues.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.SetInternalValues.htm index 5a298d8f..ca5a634b 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.SetInternalValues.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.SetInternalValues.htm @@ -528,10 +528,10 @@

PropertyBagBaseTortuga.Anchor.Modeling.Internals
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected internal void SetInternalValues(
-	Nullable<Object>[] valuesArray
+	Nullable<Object>[] valuesArray
 )
Protected Friend Sub SetInternalValues ( _
-	valuesArray As Nullable(Of Object)() _
-)

Parameters

valuesArray
Type: array<Nullable<(Of <(<'Object>)>)>>[]()[][]
Array to be copied into this property bag.

Remarks


Be extremely careful with this. Changes to this arrary will not trigger events.
+ valuesArray As Nullable(Of Object)() _ +)

Parameters

valuesArray
Type: array<Nullable<(Of <(<'Object>)>)>>[]()[][]
Array to be copied into this property bag.

Remarks


Be extremely careful with this. Changes to this arrary will not trigger events.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_1.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_1.htm index cd79da5c..ee45f0d1 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_1.htm @@ -542,15 +542,15 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
-	Nullable<Object> value,
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
+	Nullable<Object> value,
 	PropertySetModes mode,
-	string propertyName
+	string propertyName
 )
Public Function Set ( _
-	value As Nullable(Of Object), _
+	value As Nullable(Of Object), _
 	mode As PropertySetModes, _
-	propertyName As String _
-) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
Value to be saved.
mode
Type: Tortuga.Anchor.Modeling.Internals..::..PropertySetModes
Indicates special handling for the action.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
+ propertyName As String _ +) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
Value to be saved.
mode
Type: Tortuga.Anchor.Modeling.Internals..::..PropertySetModes
Indicates special handling for the action.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_2.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_2.htm index 1eb0db42..8d8ea5f0 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_2.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.PropertyBagBase.Set_2.htm @@ -542,13 +542,13 @@

PropertyBagBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
-	Nullable<Object> value,
-	string propertyName
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Set(
+	Nullable<Object> value,
+	string propertyName
 )
Public Function Set ( _
-	value As Nullable(Of Object), _
-	propertyName As String _
-) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
Value to be saved.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
+ value As Nullable(Of Object), _ + propertyName As String _ +) As Boolean

Parameters

value
Type: Nullable<(Of <(<'Object>)>)>
Value to be saved.
propertyName
Type: String
Name of property to be created/updated

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]propertyName;propertyName is null
[ArgumentException]propertyName is empty.;propertyName
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.Equals.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.Equals.htm index 8b27a8a7..ccfc9e38 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.Equals.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.Equals.htm @@ -475,13 +475,13 @@

ValidationResultEqualityComparerTortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
-	Nullable<ValidationResult> x,
-	Nullable<ValidationResult> y
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Equals(
+	Nullable<ValidationResult> x,
+	Nullable<ValidationResult> y
 )
Public Function Equals ( _
-	x As Nullable(Of ValidationResult), _
-	y As Nullable(Of ValidationResult) _
-) As Boolean

Parameters

x
Type: Nullable<(Of <(<'ValidationResult>)>)>
The first object of to compare.
y
Type: Nullable<(Of <(<'ValidationResult>)>)>
The second object of to compare.

Return Value

+ x As Nullable(Of ValidationResult), _ + y As Nullable(Of ValidationResult) _ +) As Boolean

Parameters

x
Type: Nullable<(Of <(<'ValidationResult>)>)>
The first object of to compare.
y
Type: Nullable<(Of <(<'ValidationResult>)>)>
The second object of to compare.

Return Value

true if the specified objects are equal; otherwise, false.

Remarks


WARNING: The result of Equals can change! It is based on ValidationResult, which unfortunately isn't immutable. diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.GetHashCode.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.GetHashCode.htm index 4526139f..90992740 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.GetHashCode.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.Internals.ValidationResultEqualityComparer.GetHashCode.htm @@ -475,11 +475,11 @@

ValidationResultEqualityComparerTortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int GetHashCode(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int GetHashCode(
 	ValidationResult obj
 )
Public Function GetHashCode ( _
 	obj As ValidationResult _
-) As Integer

Parameters

obj
Type: ValidationResult
The object.

Return Value

+) As Integer

Parameters

obj
Type: ValidationResult
The object.

Return Value

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.

Remarks


WARNING: The result of GetHashCode can change! It is based on ValidationResult, which unfortunately isn't immutable. diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.TableAndViewAttribute.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.TableAndViewAttribute.-ctor.htm index c14cd892..2dbdfbb7 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.TableAndViewAttribute.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.TableAndViewAttribute.-ctor.htm @@ -466,10 +466,10 @@

TableAndViewAttribute Constructor

 Tortuga.Anchor.Modeling
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public TableAndViewAttribute(
-	string name
+	string name
 )
Public Sub New ( _
-	name As String _
-)

Parameters

name
Type: String
The name of the table the class is mapped to.
+ name As String _ +)

Parameters

name
Type: String
The name of the table the class is mapped to.
diff --git a/docs/API/html/M-Tortuga.Anchor.Modeling.ViewAttribute.-ctor.htm b/docs/API/html/M-Tortuga.Anchor.Modeling.ViewAttribute.-ctor.htm index ebf21aeb..3c7cdaa1 100644 --- a/docs/API/html/M-Tortuga.Anchor.Modeling.ViewAttribute.-ctor.htm +++ b/docs/API/html/M-Tortuga.Anchor.Modeling.ViewAttribute.-ctor.htm @@ -466,10 +466,10 @@

ViewAttribute Constructor

 Tortuga.Anchor.Modeling
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ViewAttribute(
-	string name
+	string name
 )
Public Sub New ( _
-	name As String _
-)

Parameters

name
Type: String
The name of the table the class is mapped to.
+ name As String _ +)

Parameters

name
Type: String
The name of the table the class is mapped to.
diff --git a/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.-ctor_2.htm b/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.-ctor_2.htm index f62dba12..fcd00873 100644 --- a/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.-ctor_2.htm +++ b/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.-ctor_2.htm @@ -478,10 +478,10 @@

NaturalSortComparer Constructor (Boolean)

 Tortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public NaturalSortComparer(
-	bool ignoreCase
+	bool ignoreCase
 )
Public Sub New ( _
-	ignoreCase As Boolean _
-)

Parameters

ignoreCase
Type: Boolean
True if case should be ignored.
+ ignoreCase As Boolean _ +)

Parameters

ignoreCase
Type: Boolean
True if case should be ignored.
diff --git a/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.-ctor_3.htm b/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.-ctor_3.htm index 08d3e68a..b6812fa8 100644 --- a/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.-ctor_3.htm +++ b/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.-ctor_3.htm @@ -478,12 +478,12 @@

NaturalSortComparer Constructor (Boolean, CultureInfo)

 Tortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public NaturalSortComparer(
-	bool ignoreCase,
+	bool ignoreCase,
 	CultureInfo culture
 )
Public Sub New ( _
-	ignoreCase As Boolean, _
+	ignoreCase As Boolean, _
 	culture As CultureInfo _
-)

Parameters

ignoreCase
Type: Boolean
True if case should be ignored.
culture
Type: CultureInfo
The culture used for number parsing and comparisons.
+)

Parameters

ignoreCase
Type: Boolean
True if case should be ignored.
culture
Type: CultureInfo
The culture used for number parsing and comparisons.
diff --git a/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.Compare.htm b/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.Compare.htm index fb16e80b..2cfc4f74 100644 --- a/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.Compare.htm +++ b/docs/API/html/M-Tortuga.Anchor.NaturalSortComparer.Compare.htm @@ -472,13 +472,13 @@

NaturalSortComparerNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Compare(
-	Nullable<string> x,
-	Nullable<string> y
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Compare(
+	Nullable<string> x,
+	Nullable<string> y
 )
Public Function Compare ( _
-	x As Nullable(Of String), _
-	y As Nullable(Of String) _
-) As Integer

Parameters

x
Type: Nullable<(Of <(<'String>)>)>
The first object to compare.
y
Type: Nullable<(Of <(<'String>)>)>
The second object to compare.

Return Value

A signed integer that indicates the relative values of x and y, as shown in the following table. + x As Nullable(Of String), _ + y As Nullable(Of String) _ +) As Integer

Parameters

x
Type: Nullable<(Of <(<'String>)>)>
The first object to compare.
y
Type: Nullable<(Of <(<'String>)>)>
The second object to compare.

Return Value

A signed integer that indicates the relative values of x and y, as shown in the following table. Value Meaning Less than zero diff --git a/docs/API/html/M-Tortuga.Anchor.RandomExtended.-ctor_1.htm b/docs/API/html/M-Tortuga.Anchor.RandomExtended.-ctor_1.htm index 77fc0cf0..94e7bc39 100644 --- a/docs/API/html/M-Tortuga.Anchor.RandomExtended.-ctor_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.RandomExtended.-ctor_1.htm @@ -472,10 +472,10 @@

RandomExtended Constructor (Int32)

 Tortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public RandomExtended(
-	int seed
+	int seed
 )
Public Sub New ( _
-	seed As Integer _
-)

Parameters

seed
Type: Int32
A number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used.
+ seed As Integer _ +)

Parameters

seed
Type: Int32
A number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used.
diff --git a/docs/API/html/M-Tortuga.Anchor.RandomExtended.Choose--1_1.htm b/docs/API/html/M-Tortuga.Anchor.RandomExtended.Choose--1_1.htm index 1712bebb..0d5c39ac 100644 --- a/docs/API/html/M-Tortuga.Anchor.RandomExtended.Choose--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.RandomExtended.Choose--1_1.htm @@ -503,14 +503,14 @@

RandomExtendedTortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public List<T> Choose<T>(
 	IReadOnlyList<T> list,
-	int count,
-	bool allowDuplicates
+	int count,
+	bool allowDuplicates
 )
 
Public Function Choose(Of T) ( _
 	list As IReadOnlyList(Of T), _
-	count As Integer, _
-	allowDuplicates As Boolean _
-) As List(Of T)

Type Parameters

T

Parameters

list
Type: IReadOnlyList<(Of <(<'T>)>)>
The list.
count
Type: Int32
The count.
allowDuplicates
Type: Boolean
if set to true is the same item can be picked multiple times.

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]list;list is null.
[ArgumentOutOfRangeException] + count As Integer, _ + allowDuplicates As Boolean _ +) As List(Of T)

Type Parameters

T

Parameters

list
Type: IReadOnlyList<(Of <(<'T>)>)>
The list.
count
Type: Int32
The count.
allowDuplicates
Type: Boolean
if set to true is the same item can be picked multiple times.

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]list;list is null.
[ArgumentOutOfRangeException] count;count must be greater than or equal to zero or count;count must be less than or equal to list.Count if allowDuplicates is false diff --git a/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextDecimal.htm b/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextDecimal.htm index 5182818a..3188b409 100644 --- a/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextDecimal.htm +++ b/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextDecimal.htm @@ -501,11 +501,11 @@

RandomExtendedTortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public decimal NextDecimal(
-	decimal maxValue
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public decimal NextDecimal(
+	decimal maxValue
 )
Public Function NextDecimal ( _
-	maxValue As Decimal _
-) As Decimal

Parameters

maxValue
Type: Decimal
The exclusive maximum value.

Return Value

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]maxValue;maxValue must be greater than or equal to 0.
+ maxValue As Decimal _ +) As Decimal

Parameters

maxValue
Type: Decimal
The exclusive maximum value.

Return Value

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]maxValue;maxValue must be greater than or equal to 0.
diff --git a/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextDecimal_1.htm b/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextDecimal_1.htm index 6a9da96f..7386c9ba 100644 --- a/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextDecimal_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextDecimal_1.htm @@ -501,13 +501,13 @@

RandomExtendedTortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public decimal NextDecimal(
-	decimal minValue,
-	decimal maxValue
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public decimal NextDecimal(
+	decimal minValue,
+	decimal maxValue
 )
Public Function NextDecimal ( _
-	minValue As Decimal, _
-	maxValue As Decimal _
-) As Decimal

Parameters

minValue
Type: Decimal
The inclusive minimum value.
maxValue
Type: Decimal
The exclusive maximum value.

Return Value

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]maxValue;maxValue must be greater than or equal to minValue.
+ minValue As Decimal, _ + maxValue As Decimal _ +) As Decimal

Parameters

minValue
Type: Decimal
The inclusive minimum value.
maxValue
Type: Decimal
The exclusive maximum value.

Return Value

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]maxValue;maxValue must be greater than or equal to minValue.
diff --git a/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextInt64.htm b/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextInt64.htm index 2139ae4a..263928bc 100644 --- a/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextInt64.htm +++ b/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextInt64.htm @@ -501,13 +501,13 @@

RandomExtendedTortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public long NextInt64(
-	long minValue,
-	long maxValue
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public long NextInt64(
+	long minValue,
+	long maxValue
 )
Public Function NextInt64 ( _
-	minValue As Long, _
-	maxValue As Long _
-) As Long

Parameters

minValue
Type: Int64
The inclusive minimum value.
maxValue
Type: Int64
The exclusive maximum value.

Return Value

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]maxValue;maxValue must be greater than or equal to minValue.
+ minValue As Long, _ + maxValue As Long _ +) As Long

Parameters

minValue
Type: Int64
The inclusive minimum value.
maxValue
Type: Int64
The exclusive maximum value.

Return Value

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]maxValue;maxValue must be greater than or equal to minValue.
diff --git a/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextInt64_1.htm b/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextInt64_1.htm index df7ffc32..39ef16d3 100644 --- a/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextInt64_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.RandomExtended.NextInt64_1.htm @@ -501,11 +501,11 @@

RandomExtendedTortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public long NextInt64(
-	long maxValue
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public long NextInt64(
+	long maxValue
 )
Public Function NextInt64 ( _
-	maxValue As Long _
-) As Long

Parameters

maxValue
Type: Int64
The exclusive maximum value.

Return Value

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]maxValue;maxValue must be greater than or equal to 0.
+ maxValue As Long _ +) As Long

Parameters

maxValue
Type: Int64
The exclusive maximum value.

Return Value

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]maxValue;maxValue must be greater than or equal to 0.
diff --git a/docs/API/html/M-Tortuga.Anchor.RandomExtended.Pick--1_1.htm b/docs/API/html/M-Tortuga.Anchor.RandomExtended.Pick--1_1.htm index c2eddf63..d512df17 100644 --- a/docs/API/html/M-Tortuga.Anchor.RandomExtended.Pick--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.RandomExtended.Pick--1_1.htm @@ -503,12 +503,12 @@

RandomExtendedTortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public List<T> Pick<T>(
 	IList<T> list,
-	int count
+	int count
 )
 
Public Function Pick(Of T) ( _
 	list As IList(Of T), _
-	count As Integer _
-) As List(Of T)

Type Parameters

T

Parameters

list
Type: IList<(Of <(<'T>)>)>
The list.
count
Type: Int32
The count.

Return Value

Exceptions


ExceptionCondition
[ArgumentNullException]list;list is null.
[ArgumentException]List cannot be read-only;list
[ArgumentOutOfRangeException] + count As Integer _ +) As List(Of T)

Type Parameters

T

Parameters

list
Type: IList<(Of <(<'T>)>)>
The list.
count
Type: Int32
The count.

Return Value

Exceptions


+ + + + + diff --git a/docs/API/html/Methods.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm b/docs/API/html/Methods.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm index 86784dce..e61a16f1 100644 --- a/docs/API/html/Methods.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm +++ b/docs/API/html/Methods.T-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.htm @@ -793,7 +793,11 @@

Methods

- - + diff --git a/docs/API/html/N-Tortuga.Anchor.Metadata.htm b/docs/API/html/N-Tortuga.Anchor.Metadata.htm index 769da90e..781d59fa 100644 --- a/docs/API/html/N-Tortuga.Anchor.Metadata.htm +++ b/docs/API/html/N-Tortuga.Anchor.Metadata.htm @@ -522,9 +522,7 @@

Classes

PropertyMetadata diff --git a/docs/API/html/N-Tortuga.Anchor.Modeling.Internals.htm b/docs/API/html/N-Tortuga.Anchor.Modeling.Internals.htm index f10dea63..0cabb349 100644 --- a/docs/API/html/N-Tortuga.Anchor.Modeling.Internals.htm +++ b/docs/API/html/N-Tortuga.Anchor.Modeling.Internals.htm @@ -470,9 +470,7 @@

Classes

AbstractModelBase @@ -483,9 +481,7 @@

Classes

AbstractModelBase<(Of <(<'TPropertyTracking>)>)> @@ -496,9 +492,7 @@

Classes

AbstractModelCollection<(Of <(<'T, TPropertyTracking>)>)> diff --git a/docs/API/html/N-Tortuga.Anchor.htm b/docs/API/html/N-Tortuga.Anchor.htm index 844a4a37..bf346fcd 100644 --- a/docs/API/html/N-Tortuga.Anchor.htm +++ b/docs/API/html/N-Tortuga.Anchor.htm @@ -470,9 +470,7 @@

Classes

CollectionUtilities diff --git a/docs/API/html/Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm b/docs/API/html/Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm index c9283b8e..cfe38a2e 100644 --- a/docs/API/html/Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm +++ b/docs/API/html/Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Contains.htm @@ -319,6 +319,9 @@ +
diff --git a/docs/API/html/Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm b/docs/API/html/Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm index 0cbcaa79..3db9f266 100644 --- a/docs/API/html/Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm +++ b/docs/API/html/Overload-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Find.htm @@ -316,6 +316,9 @@ +
diff --git a/docs/API/html/P-Tortuga.Anchor.Collections.Dictionary-3.Count.htm b/docs/API/html/P-Tortuga.Anchor.Collections.Dictionary-3.Count.htm index d9a1ca51..61e47635 100644 --- a/docs/API/html/P-Tortuga.Anchor.Collections.Dictionary-3.Count.htm +++ b/docs/API/html/P-Tortuga.Anchor.Collections.Dictionary-3.Count.htm @@ -488,7 +488,7 @@

Dictionary Namespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
 	Get

Return Value

The number of elements contained in the [ICollection{T}].
diff --git a/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Count.htm b/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Count.htm index e78ecdc8..7f836645 100644 --- a/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Count.htm +++ b/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Count.htm @@ -493,7 +493,7 @@

ReadOnlyListSegmentNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
 	Get

Field Value

The count.
diff --git a/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Item-System.Int32-.htm b/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Item-System.Int32-.htm index cbb2ee8e..5674a903 100644 --- a/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Item-System.Int32-.htm +++ b/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Item-System.Int32-.htm @@ -494,11 +494,11 @@

ReadOnlyListSegmentTortuga.Anchor.Collections
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public T this[
-	int index
+	int index
 ] { get; }
Public ReadOnly Default Property Item ( _
-	index As Integer _
+	index As Integer _
 ) As T
-	Get

Parameters

index
Type: Int32
The index.

Return Value

T.

Exceptions


ExceptionCondition
[ArgumentNullException]list;list is null.
[ArgumentException]List cannot be read-only;list
[ArgumentOutOfRangeException] count;count must be greater than or equal to zero or count;count must be less than or equal to list.Count diff --git a/docs/API/html/M-Tortuga.Anchor.StringUtilities.AcquireStringBuilder.htm b/docs/API/html/M-Tortuga.Anchor.StringUtilities.AcquireStringBuilder.htm index 92b9a1c8..7df550e9 100644 --- a/docs/API/html/M-Tortuga.Anchor.StringUtilities.AcquireStringBuilder.htm +++ b/docs/API/html/M-Tortuga.Anchor.StringUtilities.AcquireStringBuilder.htm @@ -487,10 +487,10 @@

StringUtilitiesTortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static StringBuilder AcquireStringBuilder(
-	Nullable<int> capacity
+	Nullable<int> capacity
 )
Public Shared Function AcquireStringBuilder ( _
-	capacity As Nullable(Of Integer) _
-) As StringBuilder

Parameters

capacity
Type: Nullable<(Of <(<'Int32>)>)>
The desired capacity. If larger than MaxSize, a new instance of StringBuilder will be returned.

Return Value

StringBuilder.

Remarks


Caching is performed on a per-thread basis.
+ capacity As Nullable(Of Integer) _ +) As StringBuilder

Parameters

capacity
Type: Nullable<(Of <(<'Int32>)>)>
The desired capacity. If larger than MaxSize, a new instance of StringBuilder will be returned.

Return Value

StringBuilder.

Remarks


Caching is performed on a per-thread basis.
diff --git a/docs/API/html/M-Tortuga.Anchor.StringUtilities.IsNullOrEmpty.htm b/docs/API/html/M-Tortuga.Anchor.StringUtilities.IsNullOrEmpty.htm index f4c6d819..efb9f7b2 100644 --- a/docs/API/html/M-Tortuga.Anchor.StringUtilities.IsNullOrEmpty.htm +++ b/docs/API/html/M-Tortuga.Anchor.StringUtilities.IsNullOrEmpty.htm @@ -486,11 +486,11 @@

StringUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool IsNullOrEmpty(
-	Nullable<string> value
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool IsNullOrEmpty(
+	Nullable<string> value
 )
Public Shared Function IsNullOrEmpty ( _
-	value As Nullable(Of String) _
-) As Boolean

Parameters

value
Type: Nullable<(Of <(<'String>)>)>
The string to test
+ value As Nullable(Of String) _ +) As Boolean

Parameters

value
Type: Nullable<(Of <(<'String>)>)>
The string to test
diff --git a/docs/API/html/M-Tortuga.Anchor.StringUtilities.IsNullOrWhiteSpace.htm b/docs/API/html/M-Tortuga.Anchor.StringUtilities.IsNullOrWhiteSpace.htm index f197f559..242bfdc9 100644 --- a/docs/API/html/M-Tortuga.Anchor.StringUtilities.IsNullOrWhiteSpace.htm +++ b/docs/API/html/M-Tortuga.Anchor.StringUtilities.IsNullOrWhiteSpace.htm @@ -486,11 +486,11 @@

StringUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool IsNullOrWhiteSpace(
-	Nullable<string> value
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool IsNullOrWhiteSpace(
+	Nullable<string> value
 )
Public Shared Function IsNullOrWhiteSpace ( _
-	value As Nullable(Of String) _
-) As Boolean

Parameters

value
Type: Nullable<(Of <(<'String>)>)>
The string to test
+ value As Nullable(Of String) _ +) As Boolean

Parameters

value
Type: Nullable<(Of <(<'String>)>)>
The string to test
diff --git a/docs/API/html/M-Tortuga.Anchor.StringUtilities.Join--1.htm b/docs/API/html/M-Tortuga.Anchor.StringUtilities.Join--1.htm index 964d7616..6927a129 100644 --- a/docs/API/html/M-Tortuga.Anchor.StringUtilities.Join--1.htm +++ b/docs/API/html/M-Tortuga.Anchor.StringUtilities.Join--1.htm @@ -482,16 +482,16 @@

StringUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static string Join<T>(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static string Join<T>(
 	IEnumerable<T> values,
-	string separator,
+	string separator,
 	StringJoinOption option
 )
 
Public Shared Function Join(Of T) ( _
 	values As IEnumerable(Of T), _
-	separator As String, _
+	separator As String, _
 	option As StringJoinOption _
-) As String

Type Parameters

T

Parameters

values
Type: IEnumerable<(Of <(<'T>)>)>
The values.
separator
Type: String
The separator.
option
Type: Tortuga.Anchor..::..StringJoinOption
The option.

Return Value

System.String.

Exceptions


ExceptionCondition
[ArgumentNullException]values
+) As String

Type Parameters

T

Parameters

values
Type: IEnumerable<(Of <(<'T>)>)>
The values.
separator
Type: String
The separator.
option
Type: Tortuga.Anchor..::..StringJoinOption
The option.

Return Value

System.String.

Exceptions


ExceptionCondition
[ArgumentNullException]values
diff --git a/docs/API/html/M-Tortuga.Anchor.StringUtilities.Join.htm b/docs/API/html/M-Tortuga.Anchor.StringUtilities.Join.htm index 6711f398..6104ea9a 100644 --- a/docs/API/html/M-Tortuga.Anchor.StringUtilities.Join.htm +++ b/docs/API/html/M-Tortuga.Anchor.StringUtilities.Join.htm @@ -482,15 +482,15 @@

StringUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static string Join(
-	IEnumerable<string> values,
-	string separator,
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static string Join(
+	IEnumerable<string> values,
+	string separator,
 	StringJoinOption option
 )
Public Shared Function Join ( _
-	values As IEnumerable(Of String), _
-	separator As String, _
+	values As IEnumerable(Of String), _
+	separator As String, _
 	option As StringJoinOption _
-) As String

Parameters

values
Type: IEnumerable<(Of <(<'String>)>)>
The values.
separator
Type: String
The separator.
option
Type: Tortuga.Anchor..::..StringJoinOption
The option.

Return Value

System.String.

Exceptions


ExceptionCondition
[ArgumentNullException]values
+) As String

Parameters

values
Type: IEnumerable<(Of <(<'String>)>)>
The values.
separator
Type: String
The separator.
option
Type: Tortuga.Anchor..::..StringJoinOption
The option.

Return Value

System.String.

Exceptions


ExceptionCondition
[ArgumentNullException]values
diff --git a/docs/API/html/M-Tortuga.Anchor.StringUtilities.Release.htm b/docs/API/html/M-Tortuga.Anchor.StringUtilities.Release.htm index 95d5acc8..5f1cdf6c 100644 --- a/docs/API/html/M-Tortuga.Anchor.StringUtilities.Release.htm +++ b/docs/API/html/M-Tortuga.Anchor.StringUtilities.Release.htm @@ -486,11 +486,11 @@

StringUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static string Release(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static string Release(
 	StringBuilder stringBuilder
 )
Public Shared Function Release ( _
 	stringBuilder As StringBuilder _
-) As String

Parameters

stringBuilder
Type: StringBuilder
The string builder to release. Once released, it can no longer be used until re-acquired.

Return Value

Contents of the string builder.

Remarks


Though not strictly required, it is preferable to release a string builder onto the same thread that acquired it.
+) As String

Parameters

stringBuilder
Type: StringBuilder
The string builder to release. Once released, it can no longer be used until re-acquired.

Return Value

Contents of the string builder.

Remarks


Though not strictly required, it is preferable to release a string builder onto the same thread that acquired it.
diff --git a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask--1_1.htm b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask--1_1.htm index 877780a2..7b946438 100644 --- a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask--1_1.htm @@ -519,11 +519,11 @@

TaskUtilitiesTortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static Task<T> AutoCancelingTask<T>(
-	int delay
+	int delay
 )
 
Public Shared Function AutoCancelingTask(Of T) ( _
-	delay As Integer _
-) As Task(Of T)

Type Parameters

T
Task type

Parameters

delay
Type: Int32
The delay, in milliseconds, before the task is canceled.

Return Value

Task that will be canceled.

Remarks


Use Task.Delay if a result isn't needed.
+ delay As Integer _ +) As Task(Of T)

Type Parameters

T
Task type

Parameters

delay
Type: Int32
The delay, in milliseconds, before the task is canceled.

Return Value

Task that will be canceled.

Remarks


Use Task.Delay if a result isn't needed.
diff --git a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask_1.htm b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask_1.htm index c7be968c..903c6225 100644 --- a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingTask_1.htm @@ -519,10 +519,10 @@

TaskUtilitiesTortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static Task AutoCancelingTask(
-	int delay
+	int delay
 )
Public Shared Function AutoCancelingTask ( _
-	delay As Integer _
-) As Task

Parameters

delay
Type: Int32
The delay, in milliseconds, before the task is canceled.

Return Value

Task that will be canceled.
+ delay As Integer _ +) As Task

Parameters

delay
Type: Int32
The delay, in milliseconds, before the task is canceled.

Return Value

Task that will be canceled. diff --git a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingToken_1.htm b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingToken_1.htm index bc30c75c..3c7df6a2 100644 --- a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingToken_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCancelingToken_1.htm @@ -513,10 +513,10 @@

TaskUtilitiesTortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static CancellationToken AutoCancelingToken(
-	int millisecondsDelay
+	int millisecondsDelay
 )
Public Shared Function AutoCancelingToken ( _
-	millisecondsDelay As Integer _
-) As CancellationToken

Parameters

millisecondsDelay
Type: Int32
The delay in milliseconds before the token is canceled.

Return Value

CancellationToken.

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]delay
+ millisecondsDelay As Integer _ +) As CancellationToken

Parameters

millisecondsDelay
Type: Int32
The delay in milliseconds before the token is canceled.

Return Value

CancellationToken.

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]delay
diff --git a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCompletingTask--1_1.htm b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCompletingTask--1_1.htm index 43ec835e..b6faf347 100644 --- a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCompletingTask--1_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.AutoCompletingTask--1_1.htm @@ -514,12 +514,12 @@

TaskUtilitiesTortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static Task<T> AutoCompletingTask<T>(
 	T result,
-	int delay
+	int delay
 )
 
Public Shared Function AutoCompletingTask(Of T) ( _
 	result As T, _
-	delay As Integer _
-) As Task(Of T)

Type Parameters

T
Task type

Parameters

result
Type: T
The result to be given to the task.
delay
Type: Int32
The delay, in milliseconds, before the task is completed.

Return Value

Task that will be completed.

Remarks


Use Task.Delay if a result isn't needed.
+ delay As Integer _ +) As Task(Of T)

Type Parameters

T
Task type

Parameters

result
Type: T
The result to be given to the task.
delay
Type: Int32
The delay, in milliseconds, before the task is completed.

Return Value

Task that will be completed.

Remarks


Use Task.Delay if a result isn't needed.
diff --git a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.DelaySafe_1.htm b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.DelaySafe_1.htm index 62f260b4..ab32acea 100644 --- a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.DelaySafe_1.htm +++ b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.DelaySafe_1.htm @@ -513,12 +513,12 @@

TaskUtilitiesTortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static Task DelaySafe(
-	int millisecondsDelay,
+	int millisecondsDelay,
 	CancellationToken cancellationToken
 )
Public Shared Function DelaySafe ( _
-	millisecondsDelay As Integer, _
+	millisecondsDelay As Integer, _
 	cancellationToken As CancellationToken _
-) As Task

Parameters

millisecondsDelay
Type: Int32
The number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely. +) As Task

Parameters

millisecondsDelay
Type: Int32
The number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely.
cancellationToken
Type: CancellationToken
A cancellation token to observe while waiting for the task to complete.

Return Value

A task that represents the time delay.

Exceptions


ExceptionCondition
[ArgumentOutOfRangeException]The millisecondsDelay argument is less than -1.
diff --git a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.WaitForCompleteOrCancel.htm b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.WaitForCompleteOrCancel.htm index ed05acb7..dc686ae6 100644 --- a/docs/API/html/M-Tortuga.Anchor.TaskUtilities.WaitForCompleteOrCancel.htm +++ b/docs/API/html/M-Tortuga.Anchor.TaskUtilities.WaitForCompleteOrCancel.htm @@ -510,11 +510,11 @@

TaskUtilitiesTortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool WaitForCompleteOrCancel(
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static bool WaitForCompleteOrCancel(
 	Task task
 )
Public Shared Function WaitForCompleteOrCancel ( _
 	task As Task _
-) As Boolean

Parameters

task
Type: Task
The task.

Return Value

true if the task ran to completion, false if the task was canceled.

Exceptions


ExceptionCondition
[ArgumentNullException]task;task is null.
+) As Boolean

Parameters

task
Type: Task
The task.

Return Value

true if the task ran to completion, false if the task was canceled.

Exceptions


ExceptionCondition
[ArgumentNullException]task;task is null.
diff --git a/docs/API/html/Methods.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm b/docs/API/html/Methods.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm index 4ebce196..bee816e2 100644 --- a/docs/API/html/Methods.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm +++ b/docs/API/html/Methods.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm @@ -308,6 +308,9 @@ +
@@ -579,6 +582,19 @@

Methods

Returns an enumerator that iterates through the collection. +
+
+ Public method + + IndexOf + +
+ Determines the index of a specific item in the collection. />.
SetInternalValues + +
+Replaces the internal values array. +
+
diff --git a/docs/API/html/Methods.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm b/docs/API/html/Methods.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm index 104a32ea..ad862a07 100644 --- a/docs/API/html/Methods.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm +++ b/docs/API/html/Methods.T-Tortuga.Anchor.Modeling.Internals.PropertyBag.htm @@ -527,11 +527,7 @@

Methods

GetInternalValues -
-Returns the internal values array. -
-
diff --git a/docs/API/html/N-Tortuga.Anchor.Collections.htm b/docs/API/html/N-Tortuga.Anchor.Collections.htm index 03312e0f..25fc77d3 100644 --- a/docs/API/html/N-Tortuga.Anchor.Collections.htm +++ b/docs/API/html/N-Tortuga.Anchor.Collections.htm @@ -483,11 +483,7 @@

Classes

ObservableCollectionExtended<(Of <(<'T>)>)>
-
- This is an ObservableCollection with a read-only wrapper and support for weak events. - This will use weak events to listen to objects implementing INotifyPropertyChangedWeak. - This will use normal events to listen to objects implementing INotifyPropertyChanged. -
+
This is an ObservableCollection with a read-only wrapper and support for weak events. This will use weak events to listen to objects implementing INotifyPropertyChangedWeak. This will use normal events to listen to objects implementing INotifyPropertyChanged.
-
- This is a cache of metadata about a specific property. -
+
This is a cache of metadata about a specific property.
-
- Abstract base class to deal with the limitations of generics. This is not meant to be used directly by client code. -
+
Abstract base class to deal with the limitations of generics. This is not meant to be used directly by client code.
-
- A base class for models and entities. This is not meant to be used directly by client code. -
+
A base class for models and entities. This is not meant to be used directly by client code.
-
- A base class for collections of models and entities. This is not meant to be used directly by client code. -
+
A base class for collections of models and entities. This is not meant to be used directly by client code.
-
- Utility methods for collection classes. -
+
Utility methods for collection classes.
ExceptionCondition
[ArgumentOutOfRangeException] + Get

Parameters

index
Type: Int32
The index.

Return Value

T.

Exceptions


+ + + + + @@ -520,6 +539,19 @@

Properties

+ + + + + diff --git a/docs/API/html/Properties.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm b/docs/API/html/Properties.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm index 1db26d79..064449fa 100644 --- a/docs/API/html/Properties.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm +++ b/docs/API/html/Properties.T-Tortuga.Anchor.Metadata.PropertyMetadata.htm @@ -311,6 +311,9 @@ AffectsCalculatedFields Property +
@@ -377,6 +380,9 @@ PropertyIndex Property
+
@@ -560,6 +566,19 @@

Properties

+ + + + + @@ -846,6 +865,19 @@

Properties

+ + + + + diff --git a/docs/API/html/T-Tortuga.Anchor.CollectionUtilities.htm b/docs/API/html/T-Tortuga.Anchor.CollectionUtilities.htm index 39af58bc..104b5486 100644 --- a/docs/API/html/T-Tortuga.Anchor.CollectionUtilities.htm +++ b/docs/API/html/T-Tortuga.Anchor.CollectionUtilities.htm @@ -459,9 +459,7 @@

CollectionUtilities Class

-
- Utility methods for collection classes. -
+
Utility methods for collection classes.

Namespace:  Tortuga.Anchor
diff --git a/docs/API/html/T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm b/docs/API/html/T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm index c84c6bac..082da2c7 100644 --- a/docs/API/html/T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm +++ b/docs/API/html/T-Tortuga.Anchor.Collections.ObservableCollectionExtended-1.htm @@ -32,7 +32,7 @@ - + @@ -477,11 +477,7 @@

ObservableCollectionExtended<(Of <(<'T>)>)> Class

-
- This is an ObservableCollection with a read-only wrapper and support for weak events. - This will use weak events to listen to objects implementing INotifyPropertyChangedWeak. - This will use normal events to listen to objects implementing INotifyPropertyChanged. -
+
This is an ObservableCollection with a read-only wrapper and support for weak events. This will use weak events to listen to objects implementing INotifyPropertyChangedWeak. This will use normal events to listen to objects implementing INotifyPropertyChanged.

Namespace:  Tortuga.Anchor.Collections
diff --git a/docs/API/html/T-Tortuga.Anchor.Eventing.RelayedEventHandler-1.htm b/docs/API/html/T-Tortuga.Anchor.Eventing.RelayedEventHandler-1.htm index 74c43969..03e2388a 100644 --- a/docs/API/html/T-Tortuga.Anchor.Eventing.RelayedEventHandler-1.htm +++ b/docs/API/html/T-Tortuga.Anchor.Eventing.RelayedEventHandler-1.htm @@ -464,14 +464,14 @@

RelayedEventHandlerTortuga.Anchor.Eventing
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public delegate void RelayedEventHandler<T>(
-	Object sender,
+	Object sender,
 	RelayedEventArgs<T> e
 )
 where T : EventArgs
 
Public Delegate Sub RelayedEventHandler(Of T As EventArgs) ( _
-	sender As Object, _
+	sender As Object, _
 	e As RelayedEventArgs(Of T) _
-)

Type Parameters

T

Parameters

sender
Type: Object
e
Type: Tortuga.Anchor.Eventing..::..RelayedEventArgs<(Of <(<'T>)>)>
+)

Type Parameters

T

Parameters

sender
Type: Object
e
Type: Tortuga.Anchor.Eventing..::..RelayedEventArgs<(Of <(<'T>)>)>
diff --git a/docs/API/html/T-Tortuga.Anchor.Metadata.PropertyMetadata.htm b/docs/API/html/T-Tortuga.Anchor.Metadata.PropertyMetadata.htm index 03a59389..8d3be4b0 100644 --- a/docs/API/html/T-Tortuga.Anchor.Metadata.PropertyMetadata.htm +++ b/docs/API/html/T-Tortuga.Anchor.Metadata.PropertyMetadata.htm @@ -464,9 +464,7 @@

PropertyMetadata Class

-
- This is a cache of metadata about a specific property. -
+
This is a cache of metadata about a specific property.

Namespace:  Tortuga.Anchor.Metadata
diff --git a/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm b/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm index a3d0b886..d9227309 100644 --- a/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm +++ b/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase-1.htm @@ -473,9 +473,7 @@

AbstractModelBase<(Of <(<'TPropertyTracking>)>)> Class

-
- A base class for models and entities. This is not meant to be used directly by client code. -
+
A base class for models and entities. This is not meant to be used directly by client code.

Namespace:  Tortuga.Anchor.Modeling.Internals
diff --git a/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm b/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm index b0755a10..56bd7c0d 100644 --- a/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm +++ b/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.htm @@ -472,9 +472,7 @@

AbstractModelBase Class

-
- Abstract base class to deal with the limitations of generics. This is not meant to be used directly by client code. -
+
Abstract base class to deal with the limitations of generics. This is not meant to be used directly by client code.

Namespace:  Tortuga.Anchor.Modeling.Internals
diff --git a/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm b/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm index 5c614691..baee1f39 100644 --- a/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm +++ b/docs/API/html/T-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.htm @@ -477,9 +477,7 @@

AbstractModelCollection<(Of <(<'T, TPropertyTracking>)>)> Class

-
- A base class for collections of models and entities. This is not meant to be used directly by client code. -
+
A base class for collections of models and entities. This is not meant to be used directly by client code.

Namespace:  Tortuga.Anchor.Modeling.Internals

ExceptionCondition
[ArgumentOutOfRangeException] index or index diff --git a/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Offset.htm b/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Offset.htm index f867d984..36b58bcb 100644 --- a/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Offset.htm +++ b/docs/API/html/P-Tortuga.Anchor.Collections.ReadOnlyListSegment-1.Offset.htm @@ -493,7 +493,7 @@

ReadOnlyListSegmentNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Offset { get; }
Public ReadOnly Property Offset As Integer
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Offset { get; }
Public ReadOnly Property Offset As Integer
 	Get

Field Value

The offset.
diff --git a/docs/API/html/P-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Count.htm b/docs/API/html/P-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Count.htm index adff2418..03ce255d 100644 --- a/docs/API/html/P-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Count.htm +++ b/docs/API/html/P-Tortuga.Anchor.Collections.WeakReferenceCollection-1.Count.htm @@ -474,7 +474,7 @@

WeakReferenceCollectionNamespace:  Tortuga.Anchor.Collections
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
 	Get

Remarks


For a more accurate count call CleanUp before reading this property.
diff --git a/docs/API/html/P-Tortuga.Anchor.ComponentModel.IValidatable.HasErrors.htm b/docs/API/html/P-Tortuga.Anchor.ComponentModel.IValidatable.HasErrors.htm index acb29b7a..408b75c4 100644 --- a/docs/API/html/P-Tortuga.Anchor.ComponentModel.IValidatable.HasErrors.htm +++ b/docs/API/html/P-Tortuga.Anchor.ComponentModel.IValidatable.HasErrors.htm @@ -478,7 +478,7 @@

IValidatableTortuga.Anchor.ComponentModel
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


bool HasErrors { get; }
ReadOnly Property HasErrors As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


bool HasErrors { get; }
ReadOnly Property HasErrors As Boolean
 	Get

Field Value

true if there are errors; otherwise, false.

Remarks


Call Validate() to refresh this property diff --git a/docs/API/html/P-Tortuga.Anchor.Eventing.RelayedEventArgs-1.OriginalSender.htm b/docs/API/html/P-Tortuga.Anchor.Eventing.RelayedEventArgs-1.OriginalSender.htm index 34c111d8..219209a0 100644 --- a/docs/API/html/P-Tortuga.Anchor.Eventing.RelayedEventArgs-1.OriginalSender.htm +++ b/docs/API/html/P-Tortuga.Anchor.Eventing.RelayedEventArgs-1.OriginalSender.htm @@ -475,7 +475,7 @@

RelayedEventArgsNamespace:  Tortuga.Anchor.Eventing
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> OriginalSender { get; }
Public ReadOnly Property OriginalSender As Nullable(Of Object)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<Object> OriginalSender { get; }
Public ReadOnly Property OriginalSender As Nullable(Of Object)
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.CSharpFullName.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.CSharpFullName.htm index ab5b4e27..47f28636 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.CSharpFullName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.CSharpFullName.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string CSharpFullName { get; }
Public ReadOnly Property CSharpFullName As String
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string CSharpFullName { get; }
Public ReadOnly Property CSharpFullName As String
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.ColumnsFor.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.ColumnsFor.htm index 826253fa..a841d0ee 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.ColumnsFor.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.ColumnsFor.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ImmutableArray<string> ColumnsFor { get; }
Public ReadOnly Property ColumnsFor As ImmutableArray(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ImmutableArray<string> ColumnsFor { get; }
Public ReadOnly Property ColumnsFor As ImmutableArray(Of String)
 	Get

Remarks


This honors the Column, NotMapped, and Decompose attributes.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.FSharpFullName.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.FSharpFullName.htm index dd19c1c5..afb265d2 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.FSharpFullName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.FSharpFullName.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string FSharpFullName { get; }
Public ReadOnly Property FSharpFullName As String
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string FSharpFullName { get; }
Public ReadOnly Property FSharpFullName As String
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.IsNullable.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.IsNullable.htm index a5be40a4..96ae5bc5 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.IsNullable.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.IsNullable.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsNullable { get; }
Public ReadOnly Property IsNullable As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsNullable { get; }
Public ReadOnly Property IsNullable As Boolean
 	Get

Field Value

True is the type is a reference type, interface, or a nullable value type.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedSchemaName.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedSchemaName.htm index 7baf87a3..a5f41082 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedSchemaName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedSchemaName.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedSchemaName { get; }
Public ReadOnly Property MappedSchemaName As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedSchemaName { get; }
Public ReadOnly Property MappedSchemaName As Nullable(Of String)
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedTableName.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedTableName.htm index 5ae0b8ac..1d0843a4 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedTableName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedTableName.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedTableName { get; }
Public ReadOnly Property MappedTableName As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedTableName { get; }
Public ReadOnly Property MappedTableName As Nullable(Of String)
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewName.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewName.htm index 63809ebe..12440d6b 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewName.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedViewName { get; }
Public ReadOnly Property MappedViewName As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedViewName { get; }
Public ReadOnly Property MappedViewName As Nullable(Of String)
 	Get

Remarks


This is only used for SELECT operations.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewSchemaName.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewSchemaName.htm index d3993d9a..e040f543 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewSchemaName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.MappedViewSchemaName.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedViewSchemaName { get; }
Public ReadOnly Property MappedViewSchemaName As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedViewSchemaName { get; }
Public ReadOnly Property MappedViewSchemaName As Nullable(Of String)
 	Get

Remarks


This is only used for SELECT operations.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.VisualBasicFullName.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.VisualBasicFullName.htm index 9112dc47..366b882c 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.VisualBasicFullName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ClassMetadata.VisualBasicFullName.htm @@ -506,7 +506,7 @@

ClassMetadataTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string VisualBasicFullName { get; }
Public ReadOnly Property VisualBasicFullName As String
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string VisualBasicFullName { get; }
Public ReadOnly Property VisualBasicFullName As String
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadata.ParameterNames.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadata.ParameterNames.htm index d436a3c5..19d2b056 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadata.ParameterNames.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadata.ParameterNames.htm @@ -474,7 +474,7 @@

ConstructorMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ImmutableArray<string> ParameterNames { get; }
Public ReadOnly Property ParameterNames As ImmutableArray(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ImmutableArray<string> ParameterNames { get; }
Public ReadOnly Property ParameterNames As ImmutableArray(Of String)
 	Get

Field Value

The parameter names.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Count.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Count.htm index f177202b..a2916b45 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Count.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Count.htm @@ -308,11 +308,17 @@ Count Property
+ +

@@ -479,7 +485,7 @@

ConstructorMetadataCollectionTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
 	Get

Field Value

The count.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.DefaultConstructor.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.DefaultConstructor.htm new file mode 100644 index 00000000..01488483 --- /dev/null +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.DefaultConstructor.htm @@ -0,0 +1,511 @@ + + + + + + DefaultConstructor Property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + +
+ +
+ +
+ +
+ + +
+
+
+
+

+

ConstructorMetadataCollection..::..DefaultConstructor Property

+
+
+
+ Gets a the default constructor, if it has one.. +
+

+ Namespace: +  Tortuga.Anchor.Metadata
+ Assembly: +  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<ConstructorMetadata> DefaultConstructor { get; }
Public ReadOnly Property DefaultConstructor As Nullable(Of ConstructorMetadata)
+	Get
+
+
+
+
+ +
+ +
+ + + + \ No newline at end of file diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.HasDefaultConstructor.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.HasDefaultConstructor.htm index 1d23536e..f6b2619f 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.HasDefaultConstructor.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.HasDefaultConstructor.htm @@ -308,11 +308,17 @@ Count Property
+ +
@@ -479,7 +485,7 @@

ConstructorMetadataCollectionTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool HasDefaultConstructor { get; }
Public ReadOnly Property HasDefaultConstructor As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool HasDefaultConstructor { get; }
Public ReadOnly Property HasDefaultConstructor As Boolean
 	Get

Field Value

true if this instance has a default constructor; otherwise, false.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IsReadOnly.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IsReadOnly.htm index 650ca160..bfc6d85b 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IsReadOnly.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.IsReadOnly.htm @@ -308,11 +308,17 @@ Count Property
+ +

@@ -479,7 +485,7 @@

ConstructorMetadataCollectionTortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsReadOnly { get; }
Public ReadOnly Property IsReadOnly As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsReadOnly { get; }
Public ReadOnly Property IsReadOnly As Boolean
 	Get

Field Value

true if this instance is read only; otherwise, false.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Item-System.Int32-.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Item-System.Int32-.htm new file mode 100644 index 00000000..93584a83 --- /dev/null +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.Item-System.Int32-.htm @@ -0,0 +1,515 @@ + + + + + + Item Property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + +
+ +
+ +
+ +
+ + +
+
+
+
+

+

ConstructorMetadataCollection..::..Item Property

+
+
+
+ Gets the ConstructorMetadata at the specified index. +
+

+ Namespace: +  Tortuga.Anchor.Metadata
+ Assembly: +  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ConstructorMetadata this[
+	int index
+] { get; }
Public ReadOnly Default Property Item ( _
+	index As Integer _
+) As ConstructorMetadata
+	Get

Parameters

index
Type: Int32
The index.

Return Value

ConstructorMetadata.
+
+
+
+
+ +
+ +
+ + + + \ No newline at end of file diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.AffectsCalculatedFields.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.AffectsCalculatedFields.htm index 1fd719bd..6707ef12 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.AffectsCalculatedFields.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.AffectsCalculatedFields.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool AffectsCalculatedFields { get; }
Public ReadOnly Property AffectsCalculatedFields As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool AffectsCalculatedFields { get; }
Public ReadOnly Property AffectsCalculatedFields As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Attributes.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Attributes.htm new file mode 100644 index 00000000..e059667a --- /dev/null +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Attributes.htm @@ -0,0 +1,577 @@ + + + + + + Attributes Property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + +
+ +
+ +
+ +
+ + +
+
+
+
+

+

PropertyMetadata..::..Attributes Property

+
+
+
+ Complete list of attributes that apply to the property +
+

+ Namespace: +  Tortuga.Anchor.Metadata
+ Assembly: +  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ImmutableArray<Attribute> Attributes { get; }
Public ReadOnly Property Attributes As ImmutableArray(Of Attribute)
+	Get
+
+
+
+
+ +
+ +
+ + + + \ No newline at end of file diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CalculatedFields.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CalculatedFields.htm index 61fa8aa3..a76b0ff3 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CalculatedFields.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CalculatedFields.htm @@ -319,6 +319,9 @@ AffectsCalculatedFields Property
+
@@ -385,6 +388,9 @@ PropertyIndex Property
+
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanRead.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanRead.htm index b0c21fb4..dbf53180 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanRead.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanRead.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanRead { get; }
Public ReadOnly Property CanRead As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanRead { get; }
Public ReadOnly Property CanRead As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexed.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexed.htm index 445bb44a..abe2de6c 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexed.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexed.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanReadIndexed { get; }
Public ReadOnly Property CanReadIndexed As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanReadIndexed { get; }
Public ReadOnly Property CanReadIndexed As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexedAndRestricted.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexedAndRestricted.htm index ce3a04a8..47db62cd 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexedAndRestricted.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadIndexedAndRestricted.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanReadIndexedAndRestricted { get; }
Public ReadOnly Property CanReadIndexedAndRestricted As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanReadIndexedAndRestricted { get; }
Public ReadOnly Property CanReadIndexedAndRestricted As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadRestricted.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadRestricted.htm index bd5a05e7..e60bf92e 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadRestricted.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanReadRestricted.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanReadRestricted { get; }
Public ReadOnly Property CanReadRestricted As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanReadRestricted { get; }
Public ReadOnly Property CanReadRestricted As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWrite.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWrite.htm index 538b208c..6015a4db 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWrite.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWrite.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanWrite { get; }
Public ReadOnly Property CanWrite As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanWrite { get; }
Public ReadOnly Property CanWrite As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexed.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexed.htm index 7c5f7fa4..81029adc 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexed.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexed.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanWriteIndexed { get; }
Public ReadOnly Property CanWriteIndexed As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanWriteIndexed { get; }
Public ReadOnly Property CanWriteIndexed As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexedAndRestricted.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexedAndRestricted.htm index 7906483e..4eb06473 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexedAndRestricted.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteIndexedAndRestricted.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanWriteIndexedAndRestricted { get; }
Public ReadOnly Property CanWriteIndexedAndRestricted As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanWriteIndexedAndRestricted { get; }
Public ReadOnly Property CanWriteIndexedAndRestricted As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteRestricted.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteRestricted.htm index 933fe5d0..e0252867 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteRestricted.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.CanWriteRestricted.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanWriteRestricted { get; }
Public ReadOnly Property CanWriteRestricted As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool CanWriteRestricted { get; }
Public ReadOnly Property CanWriteRestricted As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Decompose.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Decompose.htm index 6dbdb602..31e867a7 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Decompose.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Decompose.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Decompose { get; }
Public ReadOnly Property Decompose As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool Decompose { get; }
Public ReadOnly Property Decompose As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.DecompositionPrefix.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.DecompositionPrefix.htm index 7ae9a5f4..69625b6a 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.DecompositionPrefix.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.DecompositionPrefix.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> DecompositionPrefix { get; }
Public ReadOnly Property DecompositionPrefix As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> DecompositionPrefix { get; }
Public ReadOnly Property DecompositionPrefix As Nullable(Of String)
 	Get

Field Value

The decomposition prefix.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnInsert.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnInsert.htm index 0be88677..b64a532a 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnInsert.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnInsert.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IgnoreOnInsert { get; }
Public ReadOnly Property IgnoreOnInsert As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IgnoreOnInsert { get; }
Public ReadOnly Property IgnoreOnInsert As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnUpdate.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnUpdate.htm index a1666d99..9b0b792e 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnUpdate.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IgnoreOnUpdate.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IgnoreOnUpdate { get; }
Public ReadOnly Property IgnoreOnUpdate As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IgnoreOnUpdate { get; }
Public ReadOnly Property IgnoreOnUpdate As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsIndexed.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsIndexed.htm index e20da9d4..745bffe7 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsIndexed.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsIndexed.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsIndexed { get; }
Public ReadOnly Property IsIndexed As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsIndexed { get; }
Public ReadOnly Property IsIndexed As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsKey.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsKey.htm index 9577f119..d3d248e0 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsKey.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsKey.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsKey { get; }
Public ReadOnly Property IsKey As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsKey { get; }
Public ReadOnly Property IsKey As Boolean
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsReferenceNullable.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsReferenceNullable.htm index c056df1e..3b708d5f 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsReferenceNullable.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.IsReferenceNullable.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<bool> IsReferenceNullable { get; }
Public ReadOnly Property IsReferenceNullable As Nullable(Of Boolean)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<bool> IsReferenceNullable { get; }
Public ReadOnly Property IsReferenceNullable As Nullable(Of Boolean)
 	Get

Field Value

null if null agnostic, true if nullable; false is non-nullable.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.MappedColumnName.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.MappedColumnName.htm index f0810d2c..6c7a6dec 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.MappedColumnName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.MappedColumnName.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedColumnName { get; }
Public ReadOnly Property MappedColumnName As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> MappedColumnName { get; }
Public ReadOnly Property MappedColumnName As Nullable(Of String)
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Name.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Name.htm index df57177d..d7a06fc5 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Name.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Name.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string Name { get; }
Public ReadOnly Property Name As String
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string Name { get; }
Public ReadOnly Property Name As String
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.NullabilityFlags.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.NullabilityFlags.htm index bbb0d6ef..a6af8a2f 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.NullabilityFlags.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.NullabilityFlags.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ImmutableArray<byte> NullabilityFlags { get; }
Public ReadOnly Property NullabilityFlags As ImmutableArray(Of Byte)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ImmutableArray<byte> NullabilityFlags { get; }
Public ReadOnly Property NullabilityFlags As ImmutableArray(Of Byte)
 	Get

Field Value

The nullability flags.

Remarks


See https://github.com/dotnet/roslyn/blob/master/docs/features/nullable-metadata.md for more information.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangedEventArgs.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangedEventArgs.htm index 4d53a4b6..c37782d9 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangedEventArgs.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangedEventArgs.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangingEventArgs.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangingEventArgs.htm index 211dee50..cfa84a9e 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangingEventArgs.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyChangingEventArgs.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyIndex.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyIndex.htm index cdc35993..94ccfbf4 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyIndex.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyIndex.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
@@ -545,7 +551,7 @@

PropertyMetadataNamespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int PropertyIndex { get; }
Public ReadOnly Property PropertyIndex As Integer
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int PropertyIndex { get; }
Public ReadOnly Property PropertyIndex As Integer
 	Get

Field Value

The index of the property.

Remarks


Used by property bags and other things that need to store property values in arrays.
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyInfo.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyInfo.htm new file mode 100644 index 00000000..dbe208a5 --- /dev/null +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyInfo.htm @@ -0,0 +1,577 @@ + + + + + + PropertyInfo Property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + +
+ +
+ +
+ +
+ + +
+
+
+
+

+

PropertyMetadata..::..PropertyInfo Property

+
+
+
+ Cached PropertyInfo for the property. +
+

+ Namespace: +  Tortuga.Anchor.Metadata
+ Assembly: +  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public PropertyInfo PropertyInfo { get; }
Public ReadOnly Property PropertyInfo As PropertyInfo
+	Get
+
+
+
+
+ +
+ +
+ + + + \ No newline at end of file diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyType.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyType.htm index be79dcd2..724645f6 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyType.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.PropertyType.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Validators.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Validators.htm index 21b1252c..d39a6032 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Validators.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadata.Validators.htm @@ -318,6 +318,9 @@ AffectsCalculatedFields Property
+
@@ -384,6 +387,9 @@ PropertyIndex Property
+
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Count.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Count.htm index 9f5ae17f..e5c0c61f 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Count.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Count.htm @@ -476,7 +476,7 @@

PropertyMetadataCollection< Namespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public int Count { get; }
Public ReadOnly Property Count As Integer
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.Int32-.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.Int32-.htm index 4871a7b1..f9a58e6e 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.Int32-.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.Int32-.htm @@ -458,11 +458,11 @@

PropertyMetadataCollection<  Tortuga.Anchor.Metadata
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public PropertyMetadata this[
-	int index
+	int index
 ] { get; }
Public ReadOnly Default Property Item ( _
-	index As Integer _
+	index As Integer _
 ) As PropertyMetadata
-	Get

Parameters

index
Type: Int32
The index.

Return Value

PropertyMetadata.
+ Get

Parameters

index
Type: Int32
The index.

Return Value

PropertyMetadata.

diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.String-.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.String-.htm index 5925eb85..d3420d1b 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.String-.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.Item-System.String-.htm @@ -459,11 +459,11 @@

PropertyMetadataCollection<  Tortuga.Anchor.Metadata
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public PropertyMetadata this[
-	string propertyName
+	string propertyName
 ] { get; }
Public ReadOnly Default Property Item ( _
-	propertyName As String _
+	propertyName As String _
 ) As PropertyMetadata
-	Get

Parameters

propertyName
Type: String
+ Get

Parameters

propertyName
Type: String
Case insensitive property name. For indexed properties the parameter types should appear inside brackets. For example, "Item [Int32]". Note: "Item[]" will be mapped to "Item [Int32]" diff --git a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.PropertyNames.htm b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.PropertyNames.htm index 22f8f893..786239dc 100644 --- a/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.PropertyNames.htm +++ b/docs/API/html/P-Tortuga.Anchor.Metadata.PropertyMetadataCollection.PropertyNames.htm @@ -476,7 +476,7 @@

PropertyMetadataCollection< Namespace:  Tortuga.Anchor.Metadata
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyCollection<string> PropertyNames { get; }
Public ReadOnly Property PropertyNames As ReadOnlyCollection(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyCollection<string> PropertyNames { get; }
Public ReadOnly Property PropertyNames As ReadOnlyCollection(Of String)
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.SourceProperties.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.SourceProperties.htm index 470c7a39..19980d85 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.SourceProperties.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.SourceProperties.htm @@ -474,7 +474,7 @@

CalculatedFieldAttributeNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyCollection<string> SourceProperties { get; }
Public ReadOnly Property SourceProperties As ReadOnlyCollection(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public ReadOnlyCollection<string> SourceProperties { get; }
Public ReadOnly Property SourceProperties As ReadOnlyCollection(Of String)
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.Sources.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.Sources.htm index da99edc1..b6aeb966 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.Sources.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.CalculatedFieldAttribute.Sources.htm @@ -474,7 +474,7 @@

CalculatedFieldAttributeNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string Sources { get; }
Public ReadOnly Property Sources As String
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string Sources { get; }
Public ReadOnly Property Sources As String
 	Get
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChanged.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChanged.htm index 543ad4b4..f171d2d0 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChanged.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChanged.htm @@ -482,7 +482,7 @@

ChangeTrackingModelBaseNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChanged { get; }
Public ReadOnly Property IsChanged As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChanged { get; }
Public ReadOnly Property IsChanged As Boolean
 	Get

Return Value

diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChangedLocal.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChangedLocal.htm index 8b477741..895b0744 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChangedLocal.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelBase.IsChangedLocal.htm @@ -482,7 +482,7 @@

ChangeTrackingModelBaseNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; }
Public ReadOnly Property IsChangedLocal As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; }
Public ReadOnly Property IsChangedLocal As Boolean
 	Get

Return Value

true if the object’s content has changed since the last call to [System.ComponentModel.IChangeTracking.AcceptChanges]; otherwise, false.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChanged.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChanged.htm index 64df911d..2100b1a3 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChanged.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChanged.htm @@ -485,7 +485,7 @@

ChangeTrackingModelCollectionTortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChanged { get; }
Public ReadOnly Property IsChanged As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChanged { get; }
Public ReadOnly Property IsChanged As Boolean
 	Get

Return Value

diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChangedLocal.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChangedLocal.htm index 128b220e..61b88105 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChangedLocal.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.ChangeTrackingModelCollection-1.IsChangedLocal.htm @@ -485,7 +485,7 @@

ChangeTrackingModelCollectionTortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; }
Public ReadOnly Property IsChangedLocal As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; }
Public ReadOnly Property IsChangedLocal As Boolean
 	Get

Return Value

true if the object’s content has changed since the last call to [System.ComponentModel.IChangeTracking.AcceptChanges]; otherwise, false.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.DecomposeAttribute.Prefix.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.DecomposeAttribute.Prefix.htm index 6dc57a17..3ab21a2d 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.DecomposeAttribute.Prefix.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.DecomposeAttribute.Prefix.htm @@ -473,7 +473,7 @@

DecomposeAttributeNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> Prefix { get; }
Public ReadOnly Property Prefix As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> Prefix { get; }
Public ReadOnly Property Prefix As Nullable(Of String)
 	Get

Field Value

The prefix.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChanged.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChanged.htm index afc4cf24..403ab015 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChanged.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChanged.htm @@ -482,7 +482,7 @@

EditableObjectModelBaseNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChanged { get; }
Public ReadOnly Property IsChanged As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChanged { get; }
Public ReadOnly Property IsChanged As Boolean
 	Get

Return Value

diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChangedLocal.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChangedLocal.htm index 96a039c0..ed6f1eb4 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChangedLocal.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelBase.IsChangedLocal.htm @@ -482,7 +482,7 @@

EditableObjectModelBaseNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; }
Public ReadOnly Property IsChangedLocal As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; }
Public ReadOnly Property IsChangedLocal As Boolean
 	Get

Return Value

true if the object’s content has changed since the last call to [System.ComponentModel.IChangeTracking.AcceptChanges]; otherwise, false.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChanged.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChanged.htm index efb13747..83eb6163 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChanged.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChanged.htm @@ -485,7 +485,7 @@

EditableObjectModelCollectionTortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChanged { get; }
Public ReadOnly Property IsChanged As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChanged { get; }
Public ReadOnly Property IsChanged As Boolean
 	Get

Return Value

diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChangedLocal.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChangedLocal.htm index fea95084..a1f2993a 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChangedLocal.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.EditableObjectModelCollection-1.IsChangedLocal.htm @@ -485,7 +485,7 @@

EditableObjectModelCollectionTortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; }
Public ReadOnly Property IsChangedLocal As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; }
Public ReadOnly Property IsChangedLocal As Boolean
 	Get

Return Value

true if the object’s content has changed since the last call to [System.ComponentModel.IChangeTracking.AcceptChanges]; otherwise, false.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.HasErrors.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.HasErrors.htm index 456f7be6..7f96eefe 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.HasErrors.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.AbstractModelBase.HasErrors.htm @@ -481,7 +481,7 @@

AbstractModelBaseNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool HasErrors { get; }
Public ReadOnly Property HasErrors As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool HasErrors { get; }
Public ReadOnly Property HasErrors As Boolean
 	Get

Field Value

true if there are errors; otherwise, false.

Remarks


Call Validate() to refresh this property diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.HasErrors.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.HasErrors.htm index 52b968f3..11738097 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.HasErrors.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.AbstractModelCollection-2.HasErrors.htm @@ -487,7 +487,7 @@

AbstractModelCollectionNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool HasErrors { get; }
Public ReadOnly Property HasErrors As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool HasErrors { get; }
Public ReadOnly Property HasErrors As Boolean
 	Get

Field Value

true if there are any errors; otherwise, false.

Remarks


Call Validate() to refresh this property diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedLocal.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedLocal.htm index f0f76ad2..3f8ab979 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedLocal.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.IsChangedLocal.htm @@ -483,7 +483,7 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; set; }
Public Property IsChangedLocal As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsChangedLocal { get; set; }
Public Property IsChangedLocal As Boolean
 	Get
 	Set

Return Value

true if the object’s content has changed since the last call to [System.ComponentModel.IChangeTracking.AcceptChanges]; otherwise, false.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Values.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Values.htm index 079d8960..02eb6b6e 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Values.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.ChangeTrackingPropertyBag.Values.htm @@ -482,7 +482,7 @@

ChangeTrackingPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected Nullable<Object>[] Values { get; }
Protected ReadOnly Property Values As Nullable(Of Object)()
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


protected Nullable<Object>[] Values { get; }
Protected ReadOnly Property Values As Nullable(Of Object)()
 	Get

Field Value

The values.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.IsEditing.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.IsEditing.htm index f449249f..a6b740fb 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.IsEditing.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.Internals.EditableObjectPropertyBag.IsEditing.htm @@ -480,7 +480,7 @@

EditableObjectPropertyBagNamespace:  Tortuga.Anchor.Modeling.Internals
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsEditing { get; set; }
Public Property IsEditing As Boolean
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public bool IsEditing { get; set; }
Public Property IsEditing As Boolean
 	Get
 	Set

Field Value

true if the object is in editing mode; otherwise, false.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.TableAndViewAttribute.ViewName.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.TableAndViewAttribute.ViewName.htm index 0d634741..692f1093 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.TableAndViewAttribute.ViewName.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.TableAndViewAttribute.ViewName.htm @@ -472,7 +472,7 @@

TableAndViewAttributeNamespace:  Tortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> ViewName { get; set; }
Public Property ViewName As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> ViewName { get; set; }
Public Property ViewName As Nullable(Of String)
 	Get
 	Set

Field Value

The name of the view.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.ViewAttribute.Name.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.ViewAttribute.Name.htm index 432bc629..00e79ef1 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.ViewAttribute.Name.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.ViewAttribute.Name.htm @@ -474,7 +474,7 @@

ViewAttributeTortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string Name { get; }
Public ReadOnly Property Name As String
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public string Name { get; }
Public ReadOnly Property Name As String
 	Get

Field Value

The name of the view.
diff --git a/docs/API/html/P-Tortuga.Anchor.Modeling.ViewAttribute.Schema.htm b/docs/API/html/P-Tortuga.Anchor.Modeling.ViewAttribute.Schema.htm index 5eaff394..49cdab45 100644 --- a/docs/API/html/P-Tortuga.Anchor.Modeling.ViewAttribute.Schema.htm +++ b/docs/API/html/P-Tortuga.Anchor.Modeling.ViewAttribute.Schema.htm @@ -475,7 +475,7 @@

ViewAttributeTortuga.Anchor.Modeling
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> Schema { get; set; }
Public Property Schema As Nullable(Of String)
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public Nullable<string> Schema { get; set; }
Public Property Schema As Nullable(Of String)
 	Get
 	Set
diff --git a/docs/API/html/P-Tortuga.Anchor.StringUtilities.MaxSize.htm b/docs/API/html/P-Tortuga.Anchor.StringUtilities.MaxSize.htm index 256d8cee..2bca4669 100644 --- a/docs/API/html/P-Tortuga.Anchor.StringUtilities.MaxSize.htm +++ b/docs/API/html/P-Tortuga.Anchor.StringUtilities.MaxSize.htm @@ -474,7 +474,7 @@

StringUtilitiesNamespace:  Tortuga.Anchor
Assembly: -  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static int MaxSize { get; set; }
Public Shared Property MaxSize As Integer
+   Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static int MaxSize { get; set; }
Public Shared Property MaxSize As Integer
 	Get
 	Set

Remarks


The default value is 1000. You may need to modify this based on your usage.
diff --git a/docs/API/html/Properties.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm b/docs/API/html/Properties.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm index a485edf8..387bfa3d 100644 --- a/docs/API/html/Properties.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm +++ b/docs/API/html/Properties.T-Tortuga.Anchor.Metadata.ConstructorMetadataCollection.htm @@ -301,11 +301,17 @@ Count Property
+ +
@@ -494,6 +500,19 @@

Properties

Gets the number of elements contained in the [ICollection{T}]. +
+
+ Public property + + DefaultConstructor + +
+ Gets a the default constructor, if it has one..
Gets a value indicating whether the [ICollection{T}] is read-only. +
+
+ Public property + + Item + +
+ Gets the ConstructorMetadata at the specified index.
Returns true of this property needs to trigger updates to calculated fields +
+
+ Public property + + Attributes + +
+ Complete list of attributes that apply to the property
Gets or sets the index of the property. +
+
+ Public property + + PropertyInfo + +
+ Cached PropertyInfo for the property.